Если вместо 403 ошибки по умолчанию отображается тестовая страница apache (замечено на CentOS) закомментировать в:
/etc/httpd/conf.d/welcome.conf
следующую строку:
<LocationMatch "^/+$">
Options -Indexes
# ErrorDocument 403 /.noindex.html
</LocationMatch>
Затем конечно перезапуск:
systemctl enable mariadb.service
Для других служб аналогично.
Проверка:
systemctl list-unit-files | grep mariadb
Размер папок в текущей директории (не рекурсивно):
Install php5 on Ubuntu 16.04
add-apt-repository ppa:ondrej/php
apt-get update
apt-get install php5.6
sudo /etc/init.d/mysqld stop
sudo mysqld_safe --skip-grant-tables &
mysql -u root
use mysql;
update user set password=PASSWORD("newrootpassword") where User='root';
flush privileges;
quit
sudo /etc/init.d/mysqld stop
sudo /etc/init.d/mysqld start
http://www.rackspace.com/knowledge_center/article/mysql-resetting-a-lost-mysql-root-password