Linux上搭建MySQL远程服务

和自甴很熟 提交于 2020-04-05 20:52:10

1. 安装MySQL

对于Ubuntu,直接使用apt-get安装,如果是CentOS,则同理使用yum

apt-get install -y mysql-server

2. 修改密码

输入mysql命令,直接进入MySQL客户端控制台

root@localhost:~# mysql

更新密码

mysql> update mysql.user set password=password('yourpassword') where user='root';
mysql> flush privileges;

注意如果MySQL的版本是5.7.x以上的话,mysql.user表里面的password字段已经改名为authentication_string,所以update语句要改成:

mysql> update mysql.user set authentication_string=password('yourpassword') where user='root';
mysql> flush privileges;

这里yourpassword是想要设置的修改后的密码

3. 设置允许远程连接

3.1 修改配置文件

修改配置文件/etc/mysql/mysql.conf.d,允许远程访问

vim /etc/mysql/mysql.conf.d

将bind-address注视掉

#bind-address = 127.0.0.1

3.2 修改权限

输入mysql命令,直接进入MySQL客户端控制台

root@localhost:~# mysql

输入授权语句

grant all privileges on *.* to 'root'@'%' identified by 'yourpassword' with grant option

这里的yourpassword对应着密码

4 修改MySQL的监听端口

编辑配置文件/etc/mysql/mysql.conf.d,修改对应的port属性,改成自己想要的端口号

port = 3306

5 重启MySQL

执行以下命令重启MySQL

root@localhost:~# /etc/init.d/mysql restart

6 使用命令行客户端远程连接MySQL

执行以下命令并输入密码即可

root@localhost:~# mysql -h <HOST> -u <USER_NAME> -P <PORT> -p
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!