Category Archives: db

MySQL Examples

Install mysql with yum yum install mysql-server mysql   service mysqld start Allow Remote Access /etc/sysconfig/iptables: -A INPUT -m state –state NEW -m tcp -p tcp –dport 3306 -j ACCEPT   service iptables restart Create Local User CREATE USER ‘layer7’@’localhost’ … Continue reading

Posted in mysql | 2 Comments