Today I Learn...
git pull 충돌 시 에러 핸들링
-
git stash
-
git reset --hard
pm2
- pm2 list : 서버 리스트
- pm2 kill or pm2 stop id : 서버 죽이기 or 해당 id 리스트 종료
- pm2 monit : 로그 기록
- 무중단배포의 장점이 있다! 도커로 넘어가기전까진 이거 쓰자
Error
client does not support authentication protocol requested by server consider upgrading mysql client
- 최신비밀번호암호화 시스템과 충돌해서 발생한 문제!
- ALTER USER 'root'@'localhost' IDENTIFIED WITH mysqlnative_password BY '_password';
- flush privileges
build error
웬만하면 npm audit fix 사용할 때 주의해야겠다.
- 배포 빌드할때 습관적으로 npm audit fix를 했는데 버전이 안맞게 되어서
오류가 계속 발생했던 것이다. 인스턴스를 새로 만들고 다시 설치해서 해결했다...