Change MySQL Password via SSH
3
Jun0
Jun0
login ssh, type mysqladmin. A tip if you can not remember mysql password type
mysql -uadmin -p`cat /etc/psa/.psa.shadow`
mysql> USE mysql;
mysql> SELECT * FROM user;
mysql> SET PASSWORD FOR 'username'@'hostname' = PASSWORD('password_here');
mysql> FLUSH PRIVILEGES;
Forgot WordPress Admin Password
27
May2
May2
Firstly; you need access to your MySQL Server and maybe access to your wp-config.php file in the root of your site.
- Go www.md5-creator.com and type in a password you want to use.Example type “123″ then copy. “123 in MD5 :” ’s result is “202cb962ac59075b964b07152d234b70″
- Than open your MySQL database, and click the wp_users table
- Change “user_pass” value to copied value. In our example “202cb962ac59075b964b07152d234b70″
- Now go to your blogĀ and log in

