Linux

mysqldump: Error: 'Access denied; you need (at least one of) the PROCESS privilege(s) for this operation' when trying to dump tablespaces

Naan 2024. 7. 22. 01:47
320x100

mysqldump: Error: 'Access denied; you need (at least one of) the PROCESS privilege(s) for this operation' when trying to dump tablespaces

mysqldump 를 실행하는데 위와 같이 에러가 발생을 한다면 권한이 없어서 발생 하는 에러 이다.

GRANT PROCESS ON *.* TO '에러라는 계정이름'@'localhost';
FLUSH PRIVILEGES;

이렇게 명령어를 쳐주면 된다.

320x100