분류 전체보기111 컨테이너 환경에서 Postgres 조작(database create)하기 도커 컨테이너에서 postgres를 띄웠을 때, 해당 postgres를 조작하는 방법 직접 컨테이너 안으로 들어가서 조작하는 경우 컨테이너 안에서 bash 커맨드를 활용하여 db 생성과 삭제 -> psql로 postgres에 접속 $ docker exec -it postgres /bin/bash / # createdb --username=root --owner=root dbname / # psql dbname dbname=# / # dropdb dbname 컨테이너 접속하지 않고 조작하는 경우 $ docker exec -it postgres createdb --username=root --owner=root dbname $ docker exec -it postgres psql -U root dbname .. 2023. 9. 14. Postgresql(in Docker) - Datagrip 연결 오류 - "127.0.0.1", port 5432 failed: FATAL: role "~" does not exist" (일반적인 해결 방법 아님) 미리 얘기하지만, postgres의 role, superuser 이슈 때문 아님. 관련 해결 방법은 아래 글 참고 https://yeojin-dev.github.io/blog/postgresql-ubuntu/ Ubuntu 환경에서 PostgreSQL 설치 후 리모트 접속하기 YEOJIN-DEV yeojin-dev.github.io Docker로 Postgres 컨테이너를 띄우고, 컨테이너 위의 DB와 Datagrip 혹은 Tableplus와 연결을 시도하는 중에 발생하였다. Datagrip이 아니라 Tableplus로 연결하려고 해도 동일한 이슈가 발생하고, User나 데이터베이스를 새로 만들어보기도 하고 별짓을 다하지만 계속 동일한 이슈가 발생. 그러다 갑자기 내 로컬에도 postgres가 깔려있다는 .. 2023. 9. 13. 13. Go를 이용한 스크래퍼 리팩토링하기 (9) - goquery chromedp를 활용한 정적 페이지, 테이블 형태 정보 스크래핑 이번 포스트에서는 제어되는 그 고루틴에서 돌아가는 runCrawler 함수에 대해서 설명하고자 한다. 특히 python selenium의 대체제로 사용될 수 있는 chromedp 라이브러리를 사용한 코드에 대해서 더 자세하게 설명하고자 한다. (chromedp와 관련된 한국어 자료가 없어서 꽤나 고생했다) 아직까지는 한국어로 된 chromedp 사용법, 특히 goquery와 chromedp를 조합하는 포스트가 많이 없는 것 같아서, 이 기회에 정리해두려고 한다. 오늘 설명할 (내가 짠) 코드 전체 // subway_information에서 각 호선의 네이버코드와 역이름 정보 가져오기 -> 해당 역이름 페이지로 접속하여 HTML 획득 -> crawler로 스크래핑 func runCrawler(val map.. 2023. 9. 11. Docker build / docker compose up error: Unknown desc = failed to fetch anonymous token: unexpected status: 401 Unauthorized Nvidia의 triton server 이미지(nvcr.io/nvidia/tritonserver:23.06-py3)로 컨테이너를 빌드하려다가 에러 발생 찾아보니 docker login nvcr.io 쪽 문제인 것 같음 https://stackoverflow.com/questions/70970424/docker-build-docker-compose-up-error-unknown-desc-failed-to-fetch-anonymous/75757516#75757516 Docker build / docker compose up error: Unknown desc = failed to fetch anonymous token: unexpected status: 401 Unauthorized When building.. 2023. 9. 6. 이전 1 ··· 9 10 11 12 13 14 15 ··· 28 다음