반응형
MaxScale을 통한 애플리케이션 접속 실패
3노드 Galera Cluseter와 최대 스케일 노드가 있습니다.문제는 내가 정의한 최대 규모 사용자뿐입니다.maxscale.cnf
는 리스너 서비스를 통해 클러스터에 접속할 수 있습니다.모든 노드가 로컬네트워크에 있으며 서로 확인할 수 있습니다.
maxscale.cnf
[maxscale]
threads=1
[Galera-Monitor]
type=monitor
module=galeramon
servers=server1,server2,server3
user=maxscale
password=qwe123
monitor_interval=1000
[Read-Write-Service]
type=service
router=readwritesplit
servers=server1, server2, server3
user=maxscale
password=qwe123
[Read-Only-Service]
type=service
router=readconnroute
servers=server1, server2, server3
user=maxscale
password=qwe123
router_options=slave
[Read-Write-Listener]
type=listener
service=Read-Write-Service
protocol=MariaDBClient
port=4006
[Read-Only-Listener]
type=listener
service=Read-Only-Service
protocol=MariaDBClient
port=4008
[server1]
type=server
address=192.168.122.93
port=3306
protocol=MariaDBBackend
[server2]
type=server
address=192.168.122.17
port=3306
protocol=MariaDBBackend
[server3]
type=server
address=192.168.122.13
port=3306
protocol=MariaDBBackend
root@maxscale:~# mysql -umaxscale -pqwe123 -h192.168.122.222 -P4006
Welcome to the MariaDB monitor. Commands end with ; or \g.
root@maxscale:~# mysql -umyuser -pmyuser -h192.168.122.222 -P4006
ERROR 1045 (28000): Access denied for user 'myuser'@'::ffff:192.168.122.222' (using password: YES)
root@sky:~# mysql -umyuser -pmyuser -h192.168.122.17
Welcome to the MariaDB monitor. Commands end with ; or \g.
MariaDB [(none)]> show grants for myuser;
+-------------------------------------------------------------------------------------------------------+
| Grants for myuser@% |
+-------------------------------------------------------------------------------------------------------+
| GRANT USAGE ON *.* TO 'myuser'@'%' IDENTIFIED BY PASSWORD '*CBA73BBE5D9AF59311C3F4D7E8C20AA847F7B188' |
| GRANT ALL PRIVILEGES ON `mydatabase`.`pet` TO 'myuser'@'%' |
+-------------------------------------------------------------------------------------------------------+
당신이 볼 수 있듯이.myuser
최대 스케일 노드를 통해 연결하는 데 문제가 있습니다.이 문제를 해결하고 응용 프로그램이 자신의 사용자와 최대 규모로 연결되도록 하는 방법.
편집:
최대 사용자 권한입니다.
MariaDB [(none)]> show grants;
+--------------------------------------------------------------------------------------------------------------------------------+
| Grants for maxscale@192.168.122.222 |
+--------------------------------------------------------------------------------------------------------------------------------+
| GRANT SHOW DATABASES ON *.* TO 'maxscale'@'192.168.122.222' IDENTIFIED BY PASSWORD '*8DCDD69CE7D121DE8013062AEAEB2A148910D50E' |
| GRANT SELECT ON `mysql`.`db` TO 'maxscale'@'192.168.122.222' |
| GRANT SELECT ON `mysql`.`user` TO 'maxscale'@'192.168.122.222' |
+--------------------------------------------------------------------------------------------------------------------------------+
이 유용한 링크를 기반으로 합니다.https://mariadb.com/kb/en/maxscale-troubleshooting/
노드 설정에 관한 다음 권한을 확인합니다.
GRANT SELECT ON mysql.user TO 'maxscale'@'maxscalehost';
GRANT SELECT ON mysql.db TO 'maxscale'@'maxscalehost';
GRANT SELECT ON mysql.tables_priv TO 'maxscale'@'maxscalehost';
GRANT SELECT ON mysql.roles_mapping TO 'maxscale'@'maxscalehost';
GRANT SHOW DATABASES ON *.* TO 'maxscale'@'maxscalehost';
언급URL : https://stackoverflow.com/questions/59527712/failing-to-connect-applications-via-maxscale
반응형
'source' 카테고리의 다른 글
가중치 있는 액션과 시간 감소를 기준으로 사용자의 순위를 매기기 위해 SQL 쿼리를 작성하는 방법은 무엇입니까? (0) | 2022.09.13 |
---|---|
BitTorrent: 다운로드가 시작되지 않음 (0) | 2022.09.13 |
PHP에서 점 3개(...)의 의미는 무엇입니까? (0) | 2022.09.13 |
소수점 뒤에 두 자리만 표시 (0) | 2022.09.13 |
MySQL 범위 내에서 누락된 날짜를 채우려면 어떻게 해야 합니까? (0) | 2022.09.13 |