“CentOS服务搭建-02-MySQL服务搭建”的版本间的差异
Administrator(讨论 | 贡献) (→MySQL运行异常) |
Administrator(讨论 | 贡献) |
||
第4行: | 第4行: | ||
# yum update升级 | # yum update升级 | ||
# MySQL安装 | # MySQL安装 | ||
− | + | <pre> | |
− | + | yum install mysql | |
− | + | yum install mysql-server | |
+ | yum install mysql-devel | ||
+ | </pre> | ||
# MySQL-server安装会失败,原因是CentOS 7 版本将MySQL数据库软件从默认的程序列表中移除,用mariadb代替了。 | # MySQL-server安装会失败,原因是CentOS 7 版本将MySQL数据库软件从默认的程序列表中移除,用mariadb代替了。 | ||
# 官网下载安装mysql-server | # 官网下载安装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服务。# service mysqld restart | ||
# 初次登陆mysql,root账户没有密码:mysql -u root | # 初次登陆mysql,root账户没有密码:mysql -u root | ||
第20行: | 第22行: | ||
# 编码: | # 编码: | ||
## mysql配置文件为/etc/my.cnf | ## mysql配置文件为/etc/my.cnf | ||
− | ## | + | ## 最后加上编码配置(这里的字符编码必须和/usr/share/mysql/charsets/Index.xml中一致): |
+ | <pre> | ||
[mysql] | [mysql] | ||
default-character-set =utf8 | default-character-set =utf8 | ||
− | + | </pre> | |
# 远程连接设置:把在所有数据库的所有表的所有权限赋值给位于所有IP地址的root用户。 | # 远程连接设置:把在所有数据库的所有表的所有权限赋值给位于所有IP地址的root用户。 | ||
− | mysql> grant all privileges on *.* to root@'%'identified by 'password'; | + | <pre>mysql> grant all privileges on *.* to root@'%'identified by 'password';</pre> |
# 如果是新用户而不是root,则要先新建用户 | # 如果是新用户而不是root,则要先新建用户 | ||
− | mysql>create user 'username'@'%' identified by 'password'; | + | <pre>mysql>create user 'username'@'%' identified by 'password'; </pre> |
# 此时就可以进行远程连接了。 | # 此时就可以进行远程连接了。 | ||
# 查看数据库使用端口:mysql> show variables like 'port'; | # 查看数据库使用端口:mysql> show variables like 'port'; |
2021年12月15日 (三) 14:07的版本
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
- 最后加上编码配置(这里的字符编码必须和/usr/share/mysql/charsets/Index.xml中一致):
[mysql] default-character-set =utf8
- 远程连接设置:把在所有数据库的所有表的所有权限赋值给位于所有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文件中加上的那一行去掉,再次重启服务即可。