기타
MySQL 오류 ERROR 3948 (42000): Loading local data is disabled
아놀드금자
2020. 12. 14. 23:44
728x90
ERROR 3948 (42000): Loading local data is disabled; this must be enabled on both the client and server sides
해결방법
mysql> show global variables like 'local_infile';
입력하면
이런게 보일거임
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| local_infile | OFF |
+---------------+-------+
mysql> set global local_infile=true;
이걸 입력하면 OFF 가 ON으로 바뀐다
mysql> exit
mysql --local_infile -u root -p
728x90