美文网首页
linux 下 mysql 安装

linux 下 mysql 安装

作者: 44d18503659e | 来源:发表于2019-05-03 22:07 被阅读0次

1、yum 方式安装mysql

yum install mysql-server -y

2、启动服务

service mysqld start

3、配置开机启动

chkconfig  mysqld  on

4、进入客户端

mysql

查看数据库

mysql> show databases;

5、设置登录权限
进入mysql数据库

use mysql

查看所有表

show tables;

查看用户表

desc user;

查询user表

select user,host,password from user;

赋权限并且刷新

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

删除其他权限

delete from user where host != '%';

6、退出并且重新进入客户端

mysql -uroot -p

相关文章

网友评论

      本文标题:linux 下 mysql 安装

      本文链接:https://www.haomeiwen.com/subject/hqwznqtx.html