“CentOS服务搭建-02-MySQL服务搭建”的版本间的差异
Administrator(讨论 | 贡献) (创建页面,内容为“category:IS =MySQL的安装= # yum update升级 # MySQL安装 ## #yum install mysql ## #yum install mysql-server ## #yum install mysql-devel # MySQL-server安…”) |
Administrator(讨论 | 贡献) (→MySQL运行异常) |
||
第32行: | 第32行: | ||
=MySQL运行异常= | =MySQL运行异常= | ||
− | + | ==删除匿名用户== | |
# vi /etc/my.cnf | # vi /etc/my.cnf | ||
# 在[mysqld]块最后面加上skip-grant-tables,这样重启服务后登陆MySQL无需密码,保存退出vim | # 在[mysqld]块最后面加上skip-grant-tables,这样重启服务后登陆MySQL无需密码,保存退出vim |
2021年12月15日 (三) 13:56的版本
MySQL的安装
- yum update升级
- MySQL安装
- #yum install mysql
- #yum install mysql-server
- #yum install mysql-devel
- MySQL-server安装会失败,原因是CentOS 7 版本将MySQL数据库软件从默认的程序列表中移除,用mariadb代替了。
- 官网下载安装mysql-server
- # wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm
- # rpm -ivh mysql-community-release-el7-5.noarch.rpm
- # yum install mysql-community-server
- 安装成功后重启mysql服务。# service mysqld restart
- 初次登陆mysql,root账户没有密码:mysql -u root
- 查看数据库是否正常:mysql> show databases;
- 修改root密码:mysql> set password for 'root'@'localhost' =password('password');
MySQL配置
- 编码:
- mysql配置文件为/etc/my.cnf
- 最后加上编码配置:
[mysql] default-character-set =utf8 这里的字符编码必须和/usr/share/mysql/charsets/Index.xml中一致。
- 远程连接设置:把在所有数据库的所有表的所有权限赋值给位于所有IP地址的root用户。
mysql> grant all privileges on *.* to root@'%'identified by 'password';
- 如果是新用户而不是root,则要先新建用户
mysql>create user 'username'@'%' identified by 'password';
- 此时就可以进行远程连接了。
- 查看数据库使用端口:mysql> show variables like 'port';
MySQL运行异常
删除匿名用户
- vi /etc/my.cnf
- 在[mysqld]块最后面加上skip-grant-tables,这样重启服务后登陆MySQL无需密码,保存退出vim
- service mysqld restart
- mysql -u root -p
- mysql> use mysql ;
- mysql>delete from user where user=; 删除空用户
- mysql>flush privileges;刷新权限表
- 把第一步中my.cnf文件中加上的那一行去掉,再次重启服务即可。