Process to Change MySql ip-Address to Listen for all IP’s

Table of Contents
*************** process to change MySql ipaddress to listen for all ip ********


-> update user set Host=”%” where User=”phpmyadmin”;


-> sudo vi /etc/mysql/mysql.conf.d/mysqld.cnf [change “bind-address = 0.0.0.0”]


-> flush privilage


-> check by netstat -nlp | grep 3306 [ouput should be start listen on 0.0.0.0]


-> telnet 192.168.1.19 3306 [now check its connecting or not with the ip]

Related posts