반응형
1. MySQL 설치
https://dejavuqa.tistory.com/317
이 천재님만 따라하면 잘 설치된다 ^^b
더보기
root 변경
sudo su
MySQL 제거
https://newly0513.tistory.com/162
비밀번호 재설정
ALTER USER 'root'@'localhost' IDENTIFIED BY '비번';
이지만 조건을 충족시키지 않아서 자꾸 거절당했다.
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
!! 조건 !!
대문자 1개이상
소문자 1개 이상
숫자 1개 이상
특수문자 1개 이상
글자수 8 ~
그렇게 탄생된 내 비번 -- mysqlStac2021!
참고 블로그를 통해 패스워드 정책을 변경할 수 있다. 하지만 난 ... 괜찮고... 귀찮기 때문에 그대로 진행한다 ㅎㅎㅎ
2. git pull
sudo apt-get install git-core
sudo git config --global user.name "name"
sudo git config --global user.email "email"
sudo git config --global color.ui "auto"
sudo git clone url
3. node js, npm 설치
sudo apt update
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt install nodejs
nodejs -v
sudo apt install npm
참고자료
github 사용법
: https://emong.tistory.com/228
MySQL 패스워드 정책
반응형
'Study > Node.js' 카테고리의 다른 글
[Node] Node.js Express-generator / Express 설치로 프로젝트 기본 세팅 (0) | 2022.02.26 |
---|---|
[Node] AWS ec2 + putty 참고 자료 및 정리 (0) | 2021.09.03 |
[Node] Node.js MySQL 연동 및 로그인 디비 생성 (2) | 2021.08.31 |
[Node] PM2 설치 (0) | 2021.08.31 |
[Node] Node.js 초기 세팅 / express 설치 (0) | 2021.08.31 |
댓글