首先安装mysql,这里就不多比比,设置用户名和密码
mysqladmin -u root password "123456"
在执行mysqldump时遇到
mysqldump: Got error: 1130: Host '172.16.1.73' is not allowed to connect to this MySQL server when trying to connect
一开始以为是防火墙阻拦,所以执行
/sbin/iptables -A INPUT -p tcp -s 172.16.1.73 -j ACCEPT
/sbin/iptables -A INPUT -p udp -s 172.16.1.73 -j ACCEPT
发现没有效果
在mysql中执行(ii为我自己的数据库名字)
grant select on ii.* to root@'172.16.1.73'
发现问题解决