Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- socket io
- Class
- TypeScript
- merge
- 중급파이썬
- flask
- 튜플
- 파이썬
- 카톡
- git
- Vue
- RDS
- 채팅
- async
- EC2
- pandas
- react
- AWS
- crud
- S3
- dict
- SSA
- NeXT
- MongoDB
- Props
- docker
- node
- SAA
- wetube
- lambda
Archives
- Today
- Total
초보 개발자
su: warning: cannot change directory to /nonexistent: No such file or directory 본문
Error
su: warning: cannot change directory to /nonexistent: No such file or directory
taehyeki 2022. 2. 2. 17:07MySQL 설치
WSL2 터미널에서
아래 명령어로 Ubuntu 패키지를 업데이트합니다.
sudo apt update
아래 명령어로 mysql을 설치합니다.
sudo apt install mysql-server
설치확인하고 버전 번호를 확인합니다.
mysql --version
MySQL 시작
해당 명령어로 mysql을 실행합니다.
sudo /etc/init.d/mysql start
위 명령어를 실행한 후에
아래와 같은 에러가 발생한다면
su: warning: cannot change directory to /nonexistent: No such file or directory
아래와 같이 명령어를 실행해줍니다. (리눅스OS에 따라 상이)
# Ubuntu
sudo service mysql stop
sudo usermod -d /var/lib/mysql/ mysql
sudo service mysql start
'Error' 카테고리의 다른 글
django.core.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates: users (0) | 2022.02.10 |
---|---|
raise LookupError(message)LookupError: No installed app with label 'admin'. (0) | 2022.02.10 |
윈도우10에서 SSH 접속 시 pem 파일 권한변경 (0) | 2022.01.31 |
MongoDB connect ECONNREFUSED 127.0.0.1:27027 (0) | 2021.12.28 |
오류 : 은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는배치 파일이 아닙니다. (0) | 2021.12.01 |