MySQL可以管理网站用到的数据库,WordPress 和 Drupal 也都支持 mysql 数据库。所以我们的 Web 运行环境里,需要安装一个 mysql 。之前我们已经添加了资源库,所以可以直接使用 yum 命令去安装 mysql :
一、已有环境
- 阿里云主机安装centos 6.8
二、安装mysql
yum install mysql-server
使用service命令启动/停止mysql服务:
service mysqld start
service mysqld stop
然后我们需要简单配置一下 mysql ,默认安装以后 mysql 的 root 用户是没有密码的,对于生产环境来说,这肯定是不行的,另外还有一些安全相关的设置,可以使用下面这行命令去配置一下,它是一个向导,问你一些问题,你要给出答案,比如是否要设置 root 用户的密码, 密码是什么等等。
mysql_secure_installation
Enter current password for root (enter for none):
解释:输入当前 root 用户密码,默认为空,直接回车。
Set root password? [Y/n] y
解释:要设置 root 密码吗?输入 y 表示愿意。
Remove anonymous users? [Y/n] y
解释:要移除掉匿名用户吗?输入 y 表示愿意。
Disallow root login remotely? [Y/n] y
解释:不想让 root 远程登陆吗?输入 y 表示愿意。
Remove test database and access to it? [Y/n] y
解释:要去掉 test 数据库吗?输入 y 表示愿意。
Reload privilege tables now? [Y/n] y
解释:想要重新加载权限吗?输入 y 表示愿意。
http://blog.csdn.net/simplty/article/details/38355873
三、设置mysql允许远程连接
默认情况下,mysql帐号不允许从远程登陆,只能在localhost登录。设置mysql可以通过远程主机进行连接。
在localhost登入mysql后,更改 "mysql" 数据库里的 "user" 表里的 "host" 项,将"localhost"改称"%"
mysql -u root -h localhost -p
执行如下:
update user set host='%' where user='root' and host='localhost';
四、远程连接
- 命令远程连接:
mysql -h 139.224.226.101 -u root -p
- 客户端连接
mac上使用Sequel Pro,登录后如下
五、设置开机自启动
chkconfig mysqld on
其他
2.重置root账户密码
http://www.centoscn.com/mysql/2015/1222/6558.html
网友评论