서버 프로그래밍(281)
-
Ubuntu 18.04에 PostgreSQL client 설치
apt 패키지 업데이트 후에 postgresql-client 설치 sudo apt-get install curl ca-certificates gnupg curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' sudo apt-get update sudo apt install postgresql-client-12 pg_basebackup -V https://dba.stackexchange.com/qu..
2022.01.17 -
Ubuntu 18.04에 MongoDB 4.4 설치
새로 생성한 Ubuntu 18.04 EC2에서 기존 MongoDB 4.0 설치가 안되는 문제가 발생했다. "E: Unable to locate package mongodb-org" https://www.mongodb.com/community/forums/t/e-unable-to-locate-package-mongodb-org/13458 E: Unable to locate package mongodb-org I am new to MongoDB and I am trying to install it in Ubuntu 18.04. I am following the instructions for installation and the command ‘sudo apt-get install -y mongodb-org’..
2022.01.17 -
Python 특정 일이 속한 Week 계산
import datetime def AddDays(sourceDate, count): targetDate = sourceDate + datetime.timedelta(days = count) return targetDate def GetWeekFirstDate(sourceDate): temporaryDate = datetime.datetime(sourceDate.year, sourceDate.month, sourceDate.day) weekDayCount = temporaryDate.weekday() targetDate = AddDays(temporaryDate, -weekDayCount); return targetDate https://icodebroker.tistory.com/6852 [PYTHON/..
2021.12.01 -
Gitlab CI/CD 관련 레퍼런스
https://www.digitalocean.com/community/tutorials/how-to-set-up-a-continuous-deployment-pipeline-with-gitlab-ci-cd-on-ubuntu-18-04 How To Set Up a Continuous Deployment Pipeline with GitLab CI/CD on Ubuntu 18.04 | DigitalOcean In this tutorial you are going to build a continuous deployment pipeline with GitLab. You will configure the pipeline to build a Docker image, push it to the GitLab contain..
2021.12.01 -
PyInstaller에서 sklearn 연관 문제 해결 방법
(1) pyinstaller로 빌드시 skleran을 사용하는 경우 필요한 DLL 파일이 자동으로 추가되지 않는 문제 발생 -> pyinstaller로 빌드 후, 필요한 DLL 파일들을 .../sklearn/.libs 폴더를 만들고 복사해주면 됨 (2) dll 문제 해결후, 실행시 특정 모듈이 발견되지 않는다는 문제 발생 -> hiddenimports 옵션에 발견하지 못했다는 모듈을 수동으로 명시 (3~4번 정도 반복하며 필요한 모듈 모두 등록해야 함)하면 됨 https://developpaper.com/solution-to-flash-back-problem-of-exe-generated-by-pyinstaller/ Solution to flash back problem of exe generated b..
2021.10.07 -
React에서 StompJS를 이용한 웹소켓 통신
Java 백엔드에서 Stomp로 구현된 웹소켓을 React에서 연동하기 위한 작업. 다음 포스팅은 전체 개념을 이해하는데 큰 도움이 되지만 중간중간 오타나 잘못된 코드가 있어서 혼동을 일으킨다. https://velog.io/@cksal5911/WebSoket-stompJSReact-%EC%B1%84%ED%8C%85-1 WebSoket (stompJS+React) 채팅 - 1 이번에는 채팅은 어떻게 구현되는지, 어떤 기술이 사용되는지 함께 알아보도록 하겠습니다.🖐🏻 잠깐!스프링+리액트 조합의 채팅을 구현하는 포스팅 중 일부입니다. (stomp, soket.js)저는 프론트 velog.io StompJS를 import 하는 방법은 다음과 같이 해야 한다. import * as StompJs from '@s..
2021.09.27