Study/Node.js
[Node | ubuntu] ubuntu에서 Node.js 세팅
M개발자
2021. 9. 4. 03:18
반응형
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 패스워드 정책
반응형