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
- 우울증
- 전처리
- 대학원
- 품사태깅
- sentiment analysis
- pytorch
- NLP
- CUDA
- Classification Task
- 석사
- Word2Vec
- naver movie review
- 수기
- 자연어처리
- word embedding
- 인공지능
Archives
- Today
- Total
슬기로운 연구생활
[ Server ] ubuntu 3306 port 열기 본문
1. mysql 폴더로 이동한다.
cd /etc/mysql/
2. mysql.conf에서 mysql.cnf를 들어간다.
vi mysql.conf.d
3. bind-address = 127.0.0.1 부분을 주석처리한다.
# bind-address = 127.0.0.1
4. mysql 들어가서 설정을 바꿔준다.
grant all privileges on *.* to 'root'@'%' identified by '비밀번호'; flush privileges;
5. mysql restart를 한다.
sudo /etc/init.d/mysql restart
6. 테스트 해본다.
mysql -h "IP주소" -P 3306 -u root -p
cf. 이래도 안되면은 방화벽을 검사해봐야 한다.
'슬기로운 에러 생활' 카테고리의 다른 글
[ PHP ] Exec Error (0) | 2019.09.10 |
---|---|
[ Pycharm ] pycharm java_home error (0) | 2019.09.08 |
[ Tensorflow ] TypeError: Expected int32, got list containing Tensors of type '_Message' instead. (0) | 2019.09.08 |
[ Tensorflow ] Only call `softmax_cross_entropy_with_logits` with named argument (0) | 2019.09.08 |
[ Server ] SSH 접속 (0) | 2019.09.08 |
Comments