ubuntu 3306 port 열기

ubuntu 3306 port 열기

가장 기본적인 3306 포트 여는 방법

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. 이래도 안되면은 방화벽을 검사해봐야 한다.

Comments

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×