오늘도 한 뼘 더
[MySQL] mysqldump: Error: 'Access denied; you need (at least one of) the PROCESS privilege(s) for this operation' when trying to dump tablespaces 본문
Study/MySQL
[MySQL] mysqldump: Error: 'Access denied; you need (at least one of) the PROCESS privilege(s) for this operation' when trying to dump tablespaces
나른한댕댕이🐶 2024. 7. 4. 16:57728x90
반응형
# 문제 및 배경
mysqldump 명령어를 사용하는 중에 다음과 같은 메시지가 계속해서 발생했다.
Error 메시지가 뜨긴 하나 데이터를 dump 하는데 문제는 없었다.
그러나 에러로 인지돼서 메시지를 받는 게 좋아 보이지는 않아 해당 문제를 해결하고자 한다.
# 해결 방법
1. mysqldump 명령어에 --no-tablespaces 옵션 추가
mysqldump -h {HOST} -u jihyun -p --no-tablespaces
2. user에 PROCESS privilege 추가하기
GRANT PROCESS ON *.* TO 'jihyun'@'localhost';
728x90
반응형
'Study > MySQL' 카테고리의 다른 글
[MySQL] mysql_config_editor 사용하여 로그인 정보 안정하게 보관하기 (0) | 2024.10.28 |
---|---|
[MySQL] AWS RDS- Error 1040: Too many connections 해결 방법 (0) | 2024.09.06 |
[MySQL] ERROR 1114 (HY000): The table 'tb_name' is full (0) | 2023.11.30 |
[MySQL] 특정 조건에 맞는 데이터만 백업하기 (0) | 2023.11.16 |
[MySQL] MySQL 데이터 백업 | 복원 (0) | 2023.11.01 |
Comments