Hello,
Today, we will share with you the Navicat MySQL password change process via Putty.
First of all, connect to Putty SSH, after logging in, just follow the commands below.
/usr/local/etc/rc.d/mysql-server stop
mysqld_safe --skip-grant-tables &
mysql -u root
use mysql;
update user set password=PASSWORD("fatihsahin") where User='root';
flush privileges;
quit
/usr/local/etc/rc.d/mysql-server start
If the above command gives an error, please try the below command.
/usr/local/etc/rc.d/mysql-server restart
After executing all the above commands, your new password will be active.
At the end of the process, you do not need to reboot your server.
Your new password; He became "Fatihsahin". (Only in quotation marks.)
See you in another article...