반응형

error :

64-bit Oracle Client library cannot be loaded: "libclntsh.so: cannot open shared object file: No such file or directory".


sudo sh -c "echo /usr/lib/oracle/12.2/client64/lib > /etc/ld.so.conf.d/oracle-instantclient.conf"
sudo ldconfig


참고

- https://oracle.github.io/odpi/doc/installation.html#linux

반응형

'개발 > django' 카테고리의 다른 글

json 으로 보낸 데이터 처리하기  (0) 2019.02.08
try except 에러 메세지 로그 남기기  (0) 2019.02.08
putty 깨짐  (0) 2019.02.07
(98)Address already in use  (0) 2019.02.07
Django host name error  (0) 2019.02.07
반응형

[root@... ...]# service httpd restart

httpd ▒▒ ▒▒▒ ▒▒:                                           [  OK  ]

httpd (▒)▒▒ ▒▒▒▒ ▒▒:                                    [▒▒▒▒]


한글깨짐 현상...


# locale

LANG=ko_KR.eucKR

LC_CTYPE="ko_KR.eucKR"

LC_NUMERIC="ko_KR.eucKR"

LC_TIME="ko_KR.eucKR"

LC_COLLATE="ko_KR.eucKR"

LC_MONETARY="ko_KR.eucKR"

LC_MESSAGES="ko_KR.eucKR"

LC_PAPER="ko_KR.eucKR"

LC_NAME="ko_KR.eucKR"

LC_ADDRESS="ko_KR.eucKR"

LC_TELEPHONE="ko_KR.eucKR"

LC_MEASUREMENT="ko_KR.eucKR"

LC_IDENTIFICATION="ko_KR.eucKR"

LC_ALL=


코리아로 되어있는데 자꾸깨진다.

알고봤더니 putty 세팅과 리눅스 세팅이 달라서 그렇다.

putty : UTF-8, linux : ko_KR.eucKR


putty에서 translation을 'Use Font Encoding'으로 바꾸니까 안깨진다.


반응형

'개발 > django' 카테고리의 다른 글

try except 에러 메세지 로그 남기기  (0) 2019.02.08
libclntsh.so 에러  (0) 2019.02.07
(98)Address already in use  (0) 2019.02.07
Django host name error  (0) 2019.02.07
Rest Framework  (0) 2019.01.31
반응형

(98)Address already in use: make_sock: could not bind to address [::]:80

(98)Address already in use: make_sock: could not bind to address 0.0.0.0:80



netstat -nlp


kill -9 pid



참고 

- https://m.blog.naver.com/vfxx/100147011089

반응형

'개발 > django' 카테고리의 다른 글

libclntsh.so 에러  (0) 2019.02.07
putty 깨짐  (0) 2019.02.07
Django host name error  (0) 2019.02.07
Rest Framework  (0) 2019.01.31
Postman POST 오류  (0) 2019.01.23
반응형

inspectdb 하다가 아래 에러가 발생


django.db.utils.DatabaseError: ORA-24454: client host name is not set


서버에 hostname이 제대로 세팅되어 있지 않은 경우 발생하는 오류
먼저 /etc/sysconfig/network에 HOSTNAME 이 정의되어 있는지 체크

vi /etc/sysconfig/network
-------------------------------------
NETWORKING=yes
HOSTNAME=NAME
-------------------------------------
호스트 네임은 정상인부분 확인


vi /etc/hosts
-------------------------------------
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
내ip      NAME
-------------------------------------

내가 사용하고자 하는 IP와 HOSTNAME 연결 해준후 inspectdb 하니 오류 발생안함



참고

- https://dba.stackexchange.com/questions/167477/ora-24454-client-host-name-is-not-set-when-connecting-from-ubuntu-instance-on


반응형

'개발 > django' 카테고리의 다른 글

putty 깨짐  (0) 2019.02.07
(98)Address already in use  (0) 2019.02.07
Rest Framework  (0) 2019.01.31
Postman POST 오류  (0) 2019.01.23
앱별로 로그쌓기  (0) 2019.01.22
반응형

pip install djangorestframework


settings.py


INSTALLED_APPS = [

...

'rest_framework',

]


그리고 개별 serializers를 만들자.

https://github.com/KimDoKy/DjangoRestFramework-Tutorial/blob/master/REST%20Framework%20Tutorial.md







참고

Restframework 시작하기

https://javafa.gitbooks.io/python-django/content/chapter4.html


모델참조아닌 기본 serializers 만들기

https://github.com/KimDoKy/DjangoRestFramework-Tutorial/blob/master/REST%20Framework%20Tutorial.md


ListField

https://www.django-rest-framework.org/api-guide/fields/#listfield

https://stackoverflow.com/questions/37629501/django-rest-framework-listfield-and-dictfield

반응형

'개발 > django' 카테고리의 다른 글

(98)Address already in use  (0) 2019.02.07
Django host name error  (0) 2019.02.07
Postman POST 오류  (0) 2019.01.23
앱별로 로그쌓기  (0) 2019.01.22
로그 백업 방식 (logging - handlers)  (0) 2019.01.22

+ Recent posts