apache2 와 mod_wsgi를 연결한 상태에서 python3.6의 한글이 깨지는 경우가 있다.
만약 한글이 미친듯이 깨지고,
print(sys.stdin.encoding)
print(sys.stdout.encoding)
이렇게 확인 했을때, 이 내용중에 "ANSI_X3.4-1968" 이 있다면, 아래 파일에서
sudo vi /etc/apache2/envvars
#export LANG=C
export LANG=ko_KR.utf8
이렇게 변경하라.
sudo service apache2 restart 하면 된다.
'일반' 카테고리의 다른 글
TypeError: Required argument 'rec' (pos 2) not found (0) | 2021.03.22 |
---|---|
AttributeError: module '_jpype' has no attribute 'setResource' (0) | 2018.10.24 |
google-api-python-client 설치 에러 (2) | 2018.10.24 |
mod_wsgi.so python3.6 windwos7 (0) | 2018.10.12 |
Package kr.lucypark.okt.OktInterface is not Callable (2) | 2018.10.02 |