일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- ubuntu
- caddy
- unity
- 개발자
- 컴퓨터과학총론
- 구글
- 번역
- NGINX
- C
- 프래그먼트
- H2O
- techEmpower
- it
- C lanuage
- javascript
- 자바
- 한글
- Portfolio
- server
- error
- centOS7
- php
- 해석
- 개발
- java
- kakao
- mariadb
- MySQL
- android
- 안드로이드
- Today
- Total
목록Server (73)
개발모음집
velog.io/@taelee/nginx-reverse-proxy%EB%A6%AC%EB%B2%84%EC%8A%A4-%ED%94%84%EB%A1%9D%EC%8B%9C-%EC%A0%81%EC%9A%A9 sudo vim /etc/nginx/nginx.conf server { listen 80; server_name startuplife.kr; access_log /var/log/nginx/access_life.log; error_log /var/log/nginx/error_life.log; location / { proxy_pass http://49.247.137.175; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_hea..
pm2 에서 자동으로 로그를 쌓아주기는 하지만 하나의 파일로만 쌓아주는게 보기 힘들어서 날짜별로 파일을 구분할 수 있는 방법을 찾음 pm2 logrotate라는 모듈을 찾아서 적용 github.com/keymetrics/pm2-logrotate keymetrics/pm2-logrotate Automatically rotate all applications logs managed by PM2 - keymetrics/pm2-logrotate github.com 설치 후 pm2 set pm2-logrotate:max_size 1K (1KB) pm2 set pm2-logrotate:compress true (compress logs when rotated) 파일 크기 키우고 압축하는 식으로 설정 pm2 set ..
1. docker설치 // docker 설치$ curl -fsSL https://get.docker.com/ | sudo sh// 현재 로그인한 user에게 권한 허용$ sudo usermod -aG docker $USER출처 : subicura 에러 발생- curl로 docker 설치하려고 할 때 아래와 같은 에러 발생 /var/lib/dpkg/lock 잠금파일을 얻을 수 없습니다. 해결법 reboot 2. ubuntu 16.04 실행 $ docker run ubuntu:16.04 출처 : subicura 에러 발생docker: Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docke..
잘되던 서버 코드가 로컬 컴퓨터에서 서버로 옮기자 The \"data\" argument must be one of type string, Buffer, TypedArray, or DataView. Received type undefined 에러가 발생하면서 안됐다. 에러 문제를 찾고 보니, env파일을 옮기지 않아서 그랬던 것이었다. 참고 : github.com/sysgears/apollo-universal-starter-kit/issues/827
start.spring.io/ 를 통해서 스프링을 만듦 Could not target platform: 'Java SE 11' using tool chain: 'JDK 10 (1.10)'. preference - Build, Execution, Deployment - build Tools - Gradle 에서 Build and run using과 Run tests using을 intellij IDEA로 변경하고 Gradle JVM을 11버전으로 변경 2번째 에러 java.lang.UnsupportedClassVersionError: project name has been compiled by a more recent version of the Java Runtime (class file version 5..
아래 블로그를 보고 참고해서 설치했다. https://www.zerocho.com/category/NodeJS/post/59f0efe01dc7c80019aca9f1 서버 설치 후 git clone 하고 export NODE_ENV=production 설정하고 const dev = process.env.NODE_ENV === 'development'; const prod = process.env.NODE_ENV === 'production'; console.log(prod) if (prod) { const lex = greenlock.init({ packageRoot: __dirname, configDir: './greenlock.d', maintainerEmail: 'voiddeveloper91@gmai..
Error: The module '/Users/WebstormProjects/back/node_modules/bcrypt/lib/binding/bcrypt_lib.node' was compiled against a different Node.js version using NODE_MODULE_VERSION 67. This version of Node.js requires NODE_MODULE_VERSION 79. Please try re-compiling or re-installing node_module 폴더 삭제 후 # npm i
./certbot-auto renew 출처 : https://swiftcoding.org/lets-encrypt-renew 에러 발생 Attempting to renew cert (dd.kro.kr) from /etc/letsencrypt/renewal/dd.kro.kr.conf produced an unexpected error: Problem binding to port 80: Could not bind to IPv4 or IPv6.. Skipping. All renewal attempts failed. The following certs could not be renewed: /etc/letsencrypt/live/dd.kro.kr/fullchain.pem (failure) pm2로 서버가 동작하..