Понадобилось мне на днях в ходе тестирования некоторого функционала одного приложения зайти в консоль под административным пользователем root в MySQL, но меня ожидал один неприятный сюрприз, пароль не подходил, но я ведь во всех сервисах стараюсь придерживаться одного пароля, а именно: 712mbddr@ (сервисы только тестовые). Данная заметка применима, как к Ubuntu 12.04.5, так и Ubuntu 14.04.2 которые я использую в своей повседневной работе.
ekzorchik@srv-mon:~$ mysql -u root -p712mbddr@
ERROR 1045 (28000): Access denied for user ‘root’@’localhost’ (using password: YES)
странно, почему-то пароль не подходит, поэтому буду изменять его, как это сделать я покажу ниже:
Останавливаем службу MySQL сервера:
ekzorchik@srv-mon:~$ sudo service mysql stop
mysql stop/waiting
Запускаем mysqld конфигурацию:
ekzorchik@srv-mon:~$ sudo mysqld
150529 14:04:39 [Warning] Using unique option prefix key_buffer instead of key_buffer_size is deprecated and will be removed in a future release. Please use the full name instead.
150529 14:04:39 [Note] mysqld (mysqld 5.5.43-0ubuntu0.14.04.1) starting as process 19797 …
После открываем еще одну консоль на сервере и подключаемся под пользователем root в базу mysql без указания какого бы то нибыло пароля:
ekzorchik@srv-mon:~$ mysql -u root mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.5.43-0ubuntu0.14.04.1 (Ubuntu)
Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the current input statement.
mysql>
После чего заменяем текущий пароль на новый, т. е. Можно сказать сбрасываем:
mysql> update user set password=password('712mbddr@') where user='root';
Query OK, 4 rows affected (0.00 sec)
Rows matched: 4 Changed: 4 Warnings: 0
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql> exit;
Bye
Убиваем процесс mysqld:
ekzorchik@srv-mon:~$ sudo killall mysqld
Запускаем службу MySQL сервера:
ekzorchik@srv-mon:~$ sudo service mysql start
mysql start/running, process 9512
Отлично, теперь пробуем зайти под рутом в консоль.
ekzorchik@srv-mon:~$ mysql -u root -p712mbddr@
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 37
Server version: 5.5.37-0ubuntu0.12.04.1 (Ubuntu)
Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the current input statement.
mysql>
Отлично, пароль сброшен и последующих вход в консоль администрирования успешно произведен. Могу с уверенностью сказать, что задача выполнена.
06.08.2016
А вот на Ubuntu 14.04.4 Server amd64 у меня ни в какую не выходил все что описано выше, пришлось сделать по-другому:
aollo@srv-glpi:~$ sudo /etc/init.d/mysql stop
* Stopping MySQL database server mysqld
aollo@srv-glpi:~$ sudo mysqld_safe –skip-grant-tables &
[1] 23863
aollo@srv-glpi:~$ 160806 13:40:52 mysqld_safe Can’t log to error log and syslog at the same time. Remove all –log-error configuration options for –syslog to take effect.
160806 13:40:52 mysqld_safe Logging to ‘/var/log/mysql/error.log’.
160806 13:40:52 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
Теперь в другой консоли подключенной к данное серверу:
aollo@srv-glpi:~$ sudo dpkg-reconfigure glpi
apache2_invoke glpi: already enabled
* Reloading web server apache2 *
dbconfig-common: writing config to /etc/dbconfig-common/glpi.conf
granting access to database glpi for glpi@localhost: already exists.
creating database glpi: already exists.
populating database via sql… done.
dbconfig-common: flushing administrative password
и все далее по текущей заметке
На этом заметка завершена и до встречи с уважением автор блога — Олло Александр (т. е. Ekzorchik).