Persekitaran: Apabila bermain-main dengan versi baharu zabbix, anda perlu mengimport tiga data sql dalam pakej zabbix ke dalam mysql baharu Versi mysql ialah 8.0
#Amaran: Memaparkan kata laluan pada meja kerja adalah tidak selamat----->Ini tidak relevanIdea penyelesaian masalah1 Masukkan pangkalan data untuk melihat:mysql: [Amaran] Menggunakan kata laluan pada antara muka baris arahan boleh menjadi tidak selamat.
#RROR 1044 (42000): Akses dinafikan untuk pengguna 'zabbix'@'localhost' ke pangkalan data 'zabbix'
RALAT 1044 (42000): Akses dinafikan untuk pengguna 'zabbix'@'localhost' ke pangkalan data 'zabbix'
[root@zabbix6 ~]# mysql -uroot -p11111 mysql: [Warning] Using a password on the command line interface can be insecure. Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 57 Server version: 8.0.30 MySQL Community Server - GPL Copyright (c) 2000, 2022, Oracle and/or its affiliates. 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> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | performance_schema | +--------------------+ 2 rows in set (0.03 sec) #可以看到里面没有我们所需要的zabbix库,接下来创建zabbix库 mysql> create databases zabbix; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'databases zabbix' at line #无法创建,接下来就是考虑是否是因为权限问题
[root@zabbix6 ~]# vim /etc/my.cnf 37:skip-grant-tables #跳过表的权限验证,用户可以执行增删改查
[root@zabbix6 ~]# systemctl restart mysql
Atas ialah kandungan terperinci Bagaimana untuk menyelesaikan masalah kebenaran data import MySQL. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!