본문 바로가기

백엔드287

jupyterlab / jupyter-notebook 비밀번호 설정 주피터 노트북과 주피터 랩 둘다 만들어서 사용해야한다. jupyter notebook --generate-config jupyter notebook password jupyter lab --generate-config jupyter lab password /root/.jupyter/jupyter_notebook_config.py jupyter-lab과 jupyter-notebook 동일하다 c.NotebookApp.ip => jupyter-lab 서버 접속IP c.NotebookApp.port => jupyter-lab 서버 접속포트 c.NotebookApp.open_browser => Notebook 실행 시 Browser 자동실행 c.NotebookApp.notebook_dir => 노트북 파일 생성.. 2021. 6. 22.
[jpa error] The given id must not be null! Entity 에 @GeneratedValue 를 추가해 주지 않으면생기는 오류이다. * generator부분에 관련된 내용이다 2021. 6. 21.
[ajax error] Required request parameter 'id' for method parameter type Long is not present @RequestParam 이나 기타 parameter를 받아올 때 null 이거나 type이 맞지 않는 경우 생기는 에러이다 required=false 을 추가해주면 된다. 2021. 6. 21.
서버에서 postgresql 접속 및 데이터베이스, 스키마, 테이블 조회 psql로 접속 후 사용하는 명령어이다. 명령어 postgresql 접속 명령어 sudo -u postgres psql postgresql 종료 명령어 \q ** crud 명령어 뒤에는 세미콜론을 붙여서 사용해야한다. 데이터베이스 전체 데이터베이스 조회 select datname from pg_database; database 확인 (소문자 L) \l database 변경 \c 데이터베이스이름 테이블 전체 테이블 조회 #psql \dt \dt *.* \c 데이터베이스이름 #sql select tablename from pg_tables; SELECT * FROM pg_catalog.pg_tables; 계정 사용자 확인 select * from pg_user; 계정삭제 drop role 계정; 계정 확인 .. 2021. 6. 18.
아스키코드 변환하기 ord() / chr() ord() : 특정한 한 문자를 아스키코드로 변환해준다. chr() : 아스키 코드를 문자로 변환해준다.(10진수, 16진수 가능) A 는 65 Z 는 90 a 는 97 z 는 122 이다 ord() 에는 한 개의 문자만 사용 가능하다 2021. 6. 17.
[ERROR] I/O error while reading input message controller에 있는 RequestBody 를 지운다 2021. 5. 27.