18307 shaares
1707 private links
1707 private links
25 results
tagged
mariadb
MariaDB install :
mysql_secure_installation
mysql -h localhost -u root --password=<PW>
GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY '<PW>';
FLUSH PRIVILEGES;
MariaDB qui demande pas de password à l'install, et du coup, impossibilité d'utiliser PHPMyAdmin par exemple :
sudo mysql -u root
[mysql] use mysql;
[mysql] update user set plugin='' where User='root';
[mysql] flush privileges;
[mysql] \q
Le tout pour supprimer la connexion par plugin pour root.
MySQLTuner is a script written in Perl that will assist you with your MySQL configuration and make recommendations for increased performance and stability.
wget http://mysqltuner.pl/ -O mysqltuner.pl
perl mysqltuner.pl
Script read-only : il ne fera que vous donnez des conseils pour l'optimisation, il ne touche à rien.