일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- NGINX
- 개발자
- 번역
- kakao
- java
- it
- php
- ubuntu
- techEmpower
- C lanuage
- server
- unity
- 해석
- android
- 구글
- 개발
- error
- caddy
- javascript
- 한글
- 프래그먼트
- H2O
- 컴퓨터과학총론
- mariadb
- 안드로이드
- 자바
- Portfolio
- centOS7
- MySQL
- C
- Today
- Total
목록Server (73)
개발모음집
User.increment({point: 50}, { where: { id: 1 } }) 출처 : https://github.com/sequelize/sequelize/issues/7268
$ create database PORTFOLIO default character set utf8; $ grant select, insert, update,delete on PORTFOLIO.* to 'void'@'%'; $ FLUSH PRIVILEGES $ show grants for void@'%'; Sequelize로 mysql에 접근하려고 했다. > 발생한 에러 Unhandled rejection SequelizeConnectionError: Client does not support authentication protocol requested by server; consider upgrading MySQL client > 해결법 $ ALTER USER root IDENTIFIED WITH mys..
Error: Include unexpected. Element has to be either a Model, an Association or an object 에러가 발생했다. 에러를 찾아보니 sequelize difine할 때, defaultScope: { where: { active: true } } 를 같이 써쭤야한다고 한다. 출처 : https://stackoverflow.com/questions/55896380/sequelize-js-include-unexpected-element-has-to-be-either-a-model-an-associati Sequelize.js: Include unexpected. Element has to be either a Model, an Association ..
$ brew install nginx 시작 : $ nginx brew services start nginx 중지 : $ nginx -s stop 재시작 : $ nginx -s reload 환경 설정 : vi /usr/local/etc/nginx/servers/ mysql install # mysql 최신 버전 설치 $brew install mysql # mysql 시작 $ mysql.server start #root 비밀번호 설정 $ mysql_secure_installation 출처 : https://zzsza.github.io/development/2018/01/18/Install-MySQL-mac/
서버 커넥션 계속 끊기는 문제로 커넥션 연결을 길게 하고 싶었다. 1. $ nano /etc/ssh/sshd_config ClientAliveInterval 600 ClientAliveCountMax 3 //(600 초 x 3) = 30분간 세션 유지 출처: https://daemonitblog.tistory.com/7 [데몬아이티] 2. $ service ssh restart
$ git remote -v origin https://github.com/user/repo.git (fetch) origin https://github.com/user/repo.git (push) $ git remote set-url origin https://github.com/user/repo2.git 출처 : http://minsone.github.io/git/github-managing-remotes-changing-a-remotes-url
실제 프로젝트에는 절대 적용하면 안되는 방법 git repository에 있는 파일을 압축파일로 다운로드받고 푸쉬하려니 아래와 같은 에러가 발생했다. ! [rejected] master -> master (fetch first) error: failed to push some refs to 'https://github.com/.git' hint: Updates were rejected because the remote contains work that you do hint: not have locally. This is usually caused by another repository pushing hint: to the same ref. You may want to first integrate the ..
$ wget https://dl.eff.org/certbot-auto $ chmod a+x certbot-auto $ ./certbot-auto certonly --standalone -d 도메인 주소 (도메인주소는 http:// 를 제거해야한다. => deade.cf (o), http://deade.cf(x) 질문에 맞춰 대답해주고 도메인등록을 해주면 된다. Congratulations! 라는 안내가 나오면 도메인 발급은 받은 것! 코드 // 자동 설치를 위한 모듈 greenlock-express # npm install greenlock-express // http로 접근했을 때 https로 리다이렉트하기 위한 모듈 # npm i redirect-https // env.production으로 바꾸기위..