mysql 접근 IP 변경
1.호스를 % 로 지정할면 모든 remote 에서 접속 가능, 10.10.99.% = 10.10.99.0 ~ 10.10.99.255
1 2 3 4 |
MySql> update user set host = '10.10.99.%' where user = 'root' and host='localhost'; Mysql> commit; |
2. MySql 환경 파일 변경
1 2 3 4 |
> sudo vi /etc/mysql/my.conf bind-address = 127.0.0.1 --> #bind-address =127.0.0.1 주석처리한다. |
3. MySql 재시작
1 2 3 4 |
> sudo systemctl mysql restart > sudo /etc/init.d/mysql restart (구명령어) |
4.방화벽 오픈
1 2 3 4 5 6 7 |
# nano /etc/sysconfig/iptables Simply add (after all of the existing entries): -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT |
Lastly, restart iptables:
1 2 3 4 |
# sudo systemctl iptables restart sudo etc/init.d/iptables restart (구명령어) |