기타

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

'기타' 카테고리의 다른 글

SQL 고득점 KIT 오답노트  (1) 2023.11.24
티스토리 크롬 로그인 오류  (0) 2021.03.19
import android.support.v4.app.NotificationCompat; 오류  (0) 2021.01.06
GDB 사용법  (0) 2020.07.12
hyper-v 끄는 방법  (4) 2020.02.17