MySQL 가져오기 데이터 권한 문제를 해결하는 방법

WBOY
풀어 주다: 2023-05-27 13:01:09
앞으로
1869명이 탐색했습니다.

환경: 새 버전의 zabbix를 사용하려면 zabbix 패키지에 있는 세 개의 sql 데이터를 새 mysql로 ​​가져와야 합니다. mysql 버전은 8.0

오류 로그:

#경고: 워크벤치에 표시 비밀번호 안전하지 않음 -----> 이것은 관련이 없습니다
mysql: [경고] 명령줄 인터페이스에서 비밀번호를 사용하는 것은 안전하지 않을 수 있습니다.
#RROR 1044 (42000): 데이터베이스 "zabbix"의 사용자 "zabbix"@"localhost" 액세스 거부됨
ERROR 1044(42000): 'zabbix'@'localhost' 사용자의 데이터베이스 'zabbix'

문제 해결 아이디어

1를 보려면 데이터베이스에 입력하세요.

[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 

#无法创建,接下来就是考虑是否是因为权限问题
로그인 후 복사

2. 설정:

[root@zabbix6 ~]# vim /etc/my.cnf
37:skip-grant-tables
#跳过表的权限验证,用户可以执行增删改查
로그인 후 복사

3. mysql 서비스를 다시 시작합니다

[root@zabbix6 ~]# systemctl restart mysql
로그인 후 복사

4. 데이터 가져오기

나머지는 zabbix의 세 가지 SQL 데이터를 mysql

으로 가져올 수 있습니다.

위 내용은 MySQL 가져오기 데이터 권한 문제를 해결하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:yisu.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿