Система FreeBSD 4.7 , MySQL 3.23.58. Есть root пароль от системы. Нужно или взломать или задать новый пароль для root MySQLДействия ниже описанные пробовал:
- там два варианта, на выбор, например:
- грохнуть mysqld
- запустить mysqld_safe --skip-grant-tables --user=root
- затем используя клиент mysql
#
> mysql -u root
mysql> UPDATE mysql.user SET Password=PASSWORD('newpwd') WHERE User='root';
mysql> FLUSH PRIVILEGES;
или
stop/kill mysqld:
safe_mysqld --user=root --pid-file=/usr/local/mysql/data/mysqld.pid --skip-grant-tables &
mysql -u root mysql
update user set password=password('newpass') where User='root' and host='localhost';
или
- stop/kill mysqld
- mysqld --skip-grant-tables
- mysqladmin -u root password 'mynewpassword' (создать новый пароль)
- перестартовать mysqld обычным образом
[- можно еще загрузить привелегии:
mysqladmin -h hostname flush-privileges]
И вот что получается:
bash-2.05# /usr/local/bin/safe_mysqld --skip-grant-tables &
[1] 19924
bash-2.05# Starting mysqld daemon with databases from /var/db/mysql
bash-2.05# mysql -u root mysql
ERROR 1049: Unknown database 'mysql'
--------------------------------------------------------------------
bash-2.05# mysql -u root
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 8 to server version: 3.23.58
Type 'help;' or '\h' for help. Type '\c' to clear the buffer
mysql> use mysql;
ERROR 1049: Unknown database 'mysql'
mysql> show databases;
Empty set (0.00 sec)
-----------------------------------------------------------------------
bash-2.05# mysql -u root
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 12 to server version: 3.23.58
Type 'help;' or '\h' for help. Type '\c' to clear the buffer
mysql> update user set password=password('newpass') where User='root' and host='localhost';
ERROR 1046: No Database Selected
-----------------------------------------------------------------------
bash-2.05# mysqladmin -u root password 'mynewpassword'
mysqladmin: unable to change password; error: 'You must have privileges to update tables in the mysql database to be able to change passwords for others'
------------------------------------------------------------------------
Может кто сталкивался с подобной сетуевиной.