Juni_DEV

[MySQL] ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement 본문

Error

[MySQL] ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement

junni :p 2023. 11. 7. 12:50
반응형

 

MySQL로 select INTO OUTFILE으로 SELECT문을 txt파일로 추출하려고 하는데 자꾸 아래 에러가 발생했음...

ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement

 

확인할 수 있는 방법을 다 시도해 봤는데도 이상하게 안 됐는데

나 같은 경우는 해당 폴더에 똑같은 이름의 파일이 있었다......... 그냥 이름 충돌...

잘 확인하자!!

 

 

해당 블로그는 나 같이 바보짓이 아닌 일반적인 경우의 해결 방법들이 잘 정리되어 있는 것 같아서 첨부

https://myinfrabox.tistory.com/209

 

[MySQL] ERROR 1290 --secure-file-priv option 장애

MySQL Client로 select INTO OUTFILE으로 덤프파일을 내릴때 다음과 같은 에러가 발생할 수 있습니다. mysql> select * INTO OUTFILE '/data/outfile.sql' FIELDS TERMINATED BY '|' from schema.table; ERROR 1290 (HY000): The MySQL server is

myinfrabox.tistory.com

 

반응형
Comments