使用 yum 安装源码包(必须有网络)
1、输入如下安装命令,安装过程中输入 y
1
|
yum install mysql-server -y |
2、查看mysql 服务,并设置开机启动
1
2
|
chkconfig --list | grep mysql chkconfig mysqld on |
3、开启 mysql 服务,下面两条命令都可以
1
2
|
# /etc/init.d/mysqld start # service mysqld start |
输入以下命令查看当前数据库名(注意语句后面要加上分号“;”)
1
|
show databases; |
4、设置登录密码,并赋予权限
1
|
grant all on *.* to root@ '%' identified by 'youpassword' ; |
刷新,使得密码生效(或者重启mysql服务)
1
|
flush privileges; |
删除别的登录信息,必须使用前面设置的密码登录
第一步:使用数据库名称为 mysql 的库
1
|
use mysql; |
第二步:查询 mysql 下面的表
1
|
show tables; |
第三步:查询 mysql 数据库下面的 user 表
1
|
select host,user from user; |
上面的 % 即是我们刚刚设置的密码登录,现在删除掉其余的登录信息
1
|
delete from user where host != '%' ; |
如果设置完成后想修改密码:
1
|
update user set password=password( "new password" ) where user= 'root' ; |
5、退出重新登录
1
2
|
exit; mysql -u root -p |
如果不输入密码,直接输入 mysql 登录,会报错
输入密码登录: