ユーザー 'debian-sys-maint'のアクセスが拒否されました-mysqlをインストールしていますか?


12

mysqlをインストールしようとすると、エラーが発生します。

mysql_upgrade: Got error: 1045: Access denied for user 'debian-sys-maint'@'localhost' (using password: YES) while connecting to the MySQL server

いくつかの検索の後、これはおそらくdebian-sys-maintにエースを与えていると思うので、私は:

sudo cat /etc/mysql/debian.cnf

次に、mysqlでdebianパスワードを設定します。

mysql -u root -p <password>
GRANT ALL PRIVILEGES ON *.* TO 'debian-sys-maint'@'localhost' IDENTIFIED BY 'password-here';

その後、再起動します:

sudo /etc/init.d/mysql restart

そして、もう一度設定してみてください:

sudo dpkg --configure -a

同じエラーが発生します。



Rinzwind、その答えは、iveがすでに試したこととまったく同じです。
パントロ

ルートのホームディレクトリに.my.cnfがあり/var/lib/mysqlますか、またはdeb-sys-maintのユーザーデータが含まれている可能性がありますか?
フィリップ-Zyan Kリー

ルートに何もありません
。/var/lib/mysql

回答:


6

少し遅れましたが、ここにあります:最初に私は

Distributor ID: Ubuntu
Description:    Ubuntu 16.10
Release:    16.10
Codename:   yakkety

一部のソフトウェアリポジトリを「チェック解除」する必要がありました。タブのSoftware & UpdatesGUIで簡単に実行できOther Softwareます。私はチェックを外しました:

  • 不安定なリポジトリ
  • ゼニアルレポ
  • 「yakketyへのアップグレード時に無効化」リポジトリ

私のためにチェックされた唯一のリポジトリは次のとおりです。

ソフトウェアと更新ウィンドウ

次に、この方法で問題を解決しました。

sudo su

root@iqbal: mysql -u root -p
Enter password:
mysql> GRANT ALL PRIVILEGES ON *.* TO 'debian-sys-maint'@'localhost' IDENTIFIED BY '<your password>';
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

エラー(1819)が発生した場合、mysqlターミナルでこれを入力します

mysql> uninstall plugin validate_password;

次に、mysqlを再起動します。 systemctl restart mysql

最後に

apt install -f

壊れた依存関係を修正する

エラーが続く場合は、mysqlターミナルに再度入力して、ログインします。これを入力します。

mysql> GRANT ALL PRIVILEGES ON *.* TO 'debian-sys-maint'@'localhost' IDENTIFIED BY '<your password>'

apt -f install 最後に。

Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following package was automatically installed and is no longer required:
  libmecab2
Use 'sudo apt autoremove' to remove it.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
2 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up mysql-server-5.7 (5.7.17-0ubuntu0.16.10.1) ...
Checking if update is needed.
Checking server version.
Running queries to upgrade MySQL server.
Checking system database.
mysql.columns_priv                                 OK
mysql.db                                           OK
mysql.engine_cost                                  OK
mysql.event                                        OK
mysql.func                                         OK
mysql.general_log                                  OK
mysql.gtid_executed                                OK
mysql.help_category                                OK
mysql.help_keyword                                 OK
mysql.help_relation                                OK
mysql.help_topic                                   OK
mysql.innodb_index_stats                           OK
mysql.innodb_table_stats                           OK
mysql.ndb_binlog_index                             OK
mysql.plugin                                       OK
mysql.proc                                         OK
mysql.procs_priv                                   OK
mysql.proxies_priv                                 OK
mysql.server_cost                                  OK
mysql.servers                                      OK
mysql.slave_master_info                            OK
mysql.slave_relay_log_info                         OK
mysql.slave_worker_info                            OK
mysql.slow_log                                     OK
mysql.tables_priv                                  OK
mysql.time_zone                                    OK
mysql.time_zone_leap_second                        OK
mysql.time_zone_name                               OK
mysql.time_zone_transition                         OK
mysql.time_zone_transition_type                    OK
mysql.user                                         OK
The sys schema is already up to date (version 1.5.1).
Checking databases.

(your databases will be shown here...)

Upgrade process completed successfully.
Checking if update is needed.
Setting up mysql-server (5.7.17-0ubuntu0.16.10.1) ...

他の解決方法は次のとおりです。 apt -u dist-upgrade


私はそれが働いたとは信じられない!:-Dどのようにそれを理解しましたか?
スタックアンダーフロー

これはUbuntu 16.04
Stack Underflow
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.