proxies_priv entry
2023. 11. 6. 13:51ㆍMySQL/etc
반응형
라이브 서버의 백업 데이터 파일을 테스트 서버로 이동후 테스트 서버를 구축 하고자함.
replicement로 5.5->10.2 로 업그레이드를 하는 작업중 mysql을 시작할때 mysqld에 다음과 같은 warning이 보인다
| [Warning] 'proxies_priv' entry '@% root@master8-M' ignored in --skip-name-resolve mode. |
select Host, User from mysql.proxies_priv;
| Host | User |
| localhost | root |
| master8-M | root |
master8-M 이라는 것은 기존 서버의 호스트명이다.
이부분을 삭제해 주었더니 경고문이 사라졌다.
delete from mysql.proxies_priv where Host = 'master8-M';
반응형
'MySQL > etc' 카테고리의 다른 글
| [ERROR] Unknown/unsupported storage engine: BLACKHOLE (0) | 2023.11.06 |
|---|---|
| check table & repair table (0) | 2023.09.14 |
| ERROR 1201 (0) | 2023.09.01 |
| [iptables] 2003, error connecting to master 'replicator@' (0) | 2023.08.24 |
| 스토리지 엔진 (0) | 2022.10.21 |