在Ubuntu中安装MySQL数据库并使用SQLyog进行连接

时间:2024-04-06 19:41:41

1 下载MySQL数据库

[email protected]:~# apt-get installmysql-server

[email protected]:~# apt-get isntallmysql-client

[email protected]:~# apt-get installlibmysqlclient-dev


2 安装过程中会提示设置密码,安装完成之后检查默认端口3306是否处于监听状态

在Ubuntu中安装MySQL数据库并使用SQLyog进行连接


3 为MySQL设置远程访问权限

[email protected]:#mysql -uroot -p

mysql>GRANT ALL PRIVILEGES ON *.* TO'root'@'%' IDENTIFIED BY '123456' WITH GRANT OPTION;

mysql >exit;   //退出


4 给iptables中添加规则,使得MySQL的3306端口可以被远程访问到

[email protected]:# iptables -A INPUT -p tcp--dport 3306 -j ACCEPT


5 正常情况下,mysql默认的3306端口只对特定IP 127.0.0.1进行监听,拒绝其他IP访问。通过修改 my.cnf 文件运行远程IP登录到Ubuntu系统3306的端口:

[email protected]:~#vi /etc/mysql/my.cnf

bind-address= 127.0.0.1 //找到此内容并且注释


6 使用SQLyog连接即可

在Ubuntu中安装MySQL数据库并使用SQLyog进行连接


 在Ubuntu中安装MySQL数据库并使用SQLyog进行连接


7 备注

楼主以上操作均在root用户下执行