cPanel で root としてログインし、ホスト名とパスワードなしで「mysql」と入力すると、mysql root ユーザーに直接アクセスできるようになります。
私は、cPanel 以外のサーバーの 1 つでこれを実行したいと考えています。このサーバーでは、cPanel の場合と同じように、Linux ルート ユーザーがパスワードなしで MySQL ルート ユーザーにログオンできるようになります。
これは可能ですか?
答え1
これを行う最も簡単な方法は、~/.my.cnf ファイルのクライアント セクションを使用し、そこに資格情報を追加することです。
[client]
user=root
password=somepassword
...
そのファイルも root のみが読み取り可能にしておくことをお勧めします。
答え2
mysql 5.7+ の場合、初期セットアップで空のパスワードを設定すると、mysql は自動的に をauth_socket
戦略として使用します。戦略を変更せずにパスワードを更新しようとしても、結果は得られません。ユーザーが の場合は、常にパスワードを使用せずにログインできますroot
。
解決 認証戦略を変更し、パスワードを設定するには、次のコマンドを実行します。
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/
答え3
MySQL 5.6.6 以降では、mysql_config_editor を使用して、自動的にログインできる暗号化ファイルを作成できます。
mysql_config_editor set --login-path=client --host=localhost --user=root --password
次に、プロンプトが表示されたらパスワードを入力します。
注意: パスワードに「#」やその他の文字が含まれている場合は、パスワードを入力するときに一重引用符を使用してください。
答え4
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;
...