Truy cập bị từ chối cho người dùng 'debian-sys-duy trì' - cài đặt mysql?


12

Tôi đang cố gắng cài đặt mysql và tôi gặp lỗi:

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

Sau một số tìm kiếm, tôi thấy điều này có lẽ mang lại cho aceess cho debian-sys-duy trì, vì vậy tôi:

sudo cat /etc/mysql/debian.cnf

Sau đó đặt mật khẩu debian trong mysql:

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

Sau đó tôi khởi động lại:

sudo /etc/init.d/mysql restart

Và thử và cấu hình lại:

sudo dpkg --configure -a

Tôi nhận được lỗi tương tự.



Rinzwind, câu trả lời đó có chính xác những gì tôi đã thử.
panthro

Có một .my.cnf trong thư mục gốc của root hoặc trong /var/lib/mysqlđó có thể chứa dữ liệu người dùng cho deb-sys-duy trì không?
Phillip -Zyan K Lee- Stockmann

Không có gì trong root, tôi bị từ chối khi cố gắng cd / var / lib / mysql
panthro

Câu trả lời:


6

Hơi muộn một chút nhưng đây là: Đầu tiên tôi vào

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

Tôi đã phải "bỏ chọn" một số kho phần mềm. Nó có thể dễ dàng thực hiện trên Software & UpdatesGUI trên Other Softwaretab. Tôi đã bỏ chọn:

  • repos không ổn định
  • repos xenial
  • Kho lưu trữ "bị vô hiệu hóa khi nâng cấp lên yakkety"

Các kho lưu trữ được kiểm tra duy nhất cho tôi là:

cửa sổ phần mềm & cập nhật

Sau đó, tôi đã giải quyết vấn đề theo cách này:

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

Nếu lỗi (1819) được nêu ra, hãy nhập lỗi này trên thiết bị đầu cuối mysql

mysql> uninstall plugin validate_password;

Sau đó khởi động lại mysql: systemctl restart mysql

Cuối cùng

apt install -f

để sửa chữa các phụ thuộc bị hỏng

Nếu lỗi vẫn tiếp tục, hãy nhập lại vào thiết bị đầu cuối mysql, đăng nhập: gõ này:

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

apt -f install lần cuối cùng.

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) ...

Cách khác để giải quyết là: apt -u dist-upgrade


Tôi không thể tin rằng đã làm việc! :-D Làm thế nào bạn tìm ra điều đó?
Stack Underflow

Điều này làm việc với tôi trên Ubuntu 16.04
Stack Underflow
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.