web-dev-qa-db-ja.com

パスワードなしでLinux rootユーザーmysql rootアクセスを許可する

CPanelでrootとしてログインし、ホスト名とパスワードなしで「mysql」と入力すると、mysql rootユーザーに直接アクセスできます。

LinuxのrootユーザーがcPanelで行うのと同じ方法でmysqlのrootユーザーへのパスワードなしのログオンを取得する非cpanelサーバーの1つでこれを実行したいと思います。

これは可能ですか?

31
user1066991

これを行う最も簡単な方法は、〜/ .my.cnfファイルのクライアントセクションを使用して、そこに資格情報を追加することです。

[client]
user=root
password=somepassword
...

rootだけがそのファイルを読めるようにするのも良い考えです。

55
user9517

Mysql 5.7以降の場合、初期設定で空のパスワードを設定すると、mysqlは自動的にauth_socketを戦略として使用します。戦略を変更せずにパスワードを更新しようとしても、結果は得られません。ユーザーがrootであれば、パスワードを使用せずにいつでもログインできます。

Solution次のコマンドを実行して認証戦略を変更し、パスワードを設定します

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY ''

参照: https://www.percona.com/blog/2016/03/16/change-user-password-in-mysql-5-7-with-plugin-auth_socket/

25
chaintng

MySQL 5.6.6以降では、mysql_config_editorを使用して、自動的にログインする暗号化ファイルを作成できます。

mysql_config_editor set --login-path=client --Host=localhost --user=root --password

次に、プロンプトが表示されたらパスワードを入力します。

注:パスワードに「#」が含まれている場合、他の文字が含まれている可能性がある場合は、パスワードを入力するときに一重引用符を使用してください。

7
Brian Deterling

Mysql rootパスワードのみを含むファイルを作成し、rootのみが読み取ることができます。

# ls -l /root/.mysqlpw 
-rw------- 1 root root 7 2013-08-19 13:24 /root/.mysqlpw

データベースをインポートすることができます

# mysql -u root -p`cat /root/.mysqlpw ` yourdatabase < databasedump.sql

またはデータベースに接続してmysqlコマンドを発行する

# mysql -u root -p`cat /root/.mysqlpw ` yourdatabase
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 20460
Server version: 5.1.63-0ubuntu0.10.04.1 (Ubuntu)

Copyright (c) 2000, 2011, 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> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| yourdatabase       |
+--------------------+
3 rows in set (0.00 sec)

mysql> show tables;
...
0
jris198944