当前位置:   article > 正文

CentOS7安装MySQL57(rpm、tar两种方式),详细图文_mysql57 rpm

mysql57 rpm

Tar方式安装

1、检查系统是否安装过mysql

//检查系统中有无安装过mysql
rpm -qa|grep mysql

//查询所有mysql 对应的文件夹,全部删除
whereis mysql
find / -name mysql
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

2、卸载CentOS7系统自带mariadb

# 查看系统自带的Mariadb
[root@cVzhanshi ~]# rpm -qa|grep mariadb
mariadb-libs-5.5.44-2.el7.centos.x86_64
# 卸载系统自带的Mariadb
[root@cVzhanshi ~]# rpm -e --nodeps mariadb-libs-5.5.44-2.el7.centos.x86_64
# 删除etc目录下的my.cnf ,一定要删掉,等下再重新建,之前我将就用这个文件,后面改配置各种不生效
[root@cVzhanshi ~]# rm /etc/my.cnf
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

3、检查有无安装过mysql 用户组,没有的话创建

//检查mysql 用户组是否存在
cat /etc/group | grep mysql
cat /etc/passwd |grep mysql

// 创建mysql 用户组和用户
groupadd mysql
useradd -r -g mysql mysql
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

4、在官网上下载安装包

下载安装,从官网安装下载,我下载的位置在/usr/local/
下载地址

5、解压安装mysql

tar -zxvf mysql-5.7.31-linux-glibc2.12-x86_64.tar.gz
mv mysql-5.7.31-linux-glibc2.12-x86_64 mysql # 顺便改一下名字
  • 1
  • 2

6、更改mysql 目录下所有文件夹所属的用户组和用户,以及权限

chown -R mysql:mysql /usr/local/mysql
chmod -R 755 /usr/local/mysql
  • 1
  • 2

7、进入mysql/bin/目录,编译安装并初始化mysql,务必记住数据库管理员临时密码

./mysqld --initialize --user=mysql --datadir=/usr/local/mysql/data --basedir=/usr/local/mysql
  • 1

在这里插入图片描述

8、编写配置文件 my.cnf ,并添加配置

vi /etc/my.cnf
  • 1

文件内容

[mysqld]
datadir=/usr/local/mysql/data
port = 3306
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
symbolic-links=0
max_connections=400
innodb_file_per_table=1
#表名大小写不明感,敏感为
lower_case_table_names=1
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

9、启动mysql 服务器

#查询服务
ps -ef|grep mysql
ps -ef|grep mysqld

#结束进程
kill -9 PID

#启动服务
 /usr/local/mysql/support-files/mysql.server start
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

在这里插入图片描述

10、添加软连接,并重启mysql 服务

//添加软连接
ln -s /usr/local/mysql/support-files/mysql.server /etc/init.d/mysql
ln -s /usr/local/mysql/bin/mysql /usr/bin/mysql

//重启mysql服务
service mysql restart
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在这里插入图片描述

11、登录mysql ,密码就是初始化时生成的临时密码

 mysql -u root -p # 密码是之前生成的临时密码
  • 1

在这里插入图片描述

12、修改密码

注意: 分号(;) 结尾

set password for root@localhost = password('123456');
  • 1

开放远程连接

use mysql;
update user set user.Host='%' where user.User='root';
flush privileges;
  • 1
  • 2
  • 3

设置开机自启

//将服务文件拷贝到init.d下,并重命名为mysql
cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysqld
//赋予可执行权限
chmod +x /etc/init.d/mysqld
//添加服务
chkconfig --add mysqld
//显示服务列表
chkconfig --list
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

在这里插入图片描述

大功告成

RPM方式安装

1、检查系统是否安装过mysql

//检查系统中有无安装过mysql
rpm -qa|grep mysql

//查询所有mysql 对应的文件夹,全部删除
whereis mysql
find / -name mysql
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

2、卸载CentOS7系统自带mariadb

# 查看系统自带的Mariadb
[root@cVzhanshi ~]# rpm -qa|grep mariadb
mariadb-libs-5.5.44-2.el7.centos.x86_64
# 卸载系统自带的Mariadb
[root@cVzhanshi ~]# rpm -e --nodeps mariadb-libs-5.5.44-2.el7.centos.x86_64
# 删除etc目录下的my.cnf ,一定要删掉,等下再重新建,之前我将就用这个文件,后面改配置各种不生效
[root@cVzhanshi ~]# rm /etc/my.cnf
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

3、准备环境

把客户端和服务端下载好传到Linux中
在这里插入图片描述

4、安装服务端(注意看输出的提示)

  • 运行命令安装服务端
[root@cVzhanshi opt]# rpm -ivh MySQL-server-5.5.48-1.linux2.6.i386.rpm 
  • 1

要是报错:
在这里插入图片描述
解决方案:

[root@cVzhanshi opt]# yum -y install libaio.so.1
[root@cVzhanshi opt]# yum -y install libm.so.6
  • 1
  • 2

5、安装客户端

  • 运行命令安装客户端
[root@cVzhanshi opt]# rpm -ivh MySQL-client-5.5.48-1.linux2.6.i386.rpm
  • 1

同理报错:
在这里插入图片描述
解决方案:

[root@cVzhanshi opt]# yum -y install libncurses.so.5
  • 1

6、检测是否安装成功

[root@cVzhanshi opt]# cat /etc/passwd|grep mysql
mysql:x:987:980:MySQL server:/var/lib/mysql:/bin/bash
[root@cVzhanshi opt]# cat /etc/group|grep mysql
mysql:x:980:
[root@cVzhanshi opt]# mysqladmin --version
mysqladmin  Ver 8.42 Distrib 5.5.48, for Linux on i686
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在这里插入图片描述

  • 启动服务
[root@cVzhanshi opt]# service mysql start
  • 1

如果出现一下错误:
在这里插入图片描述
解决方案:

# 执行以下命令
[root@cVzhanshi mysql]# /usr/bin/mysql_install_db --user=mysql
[root@cVzhanshi mysql]# service mysql start
Starting MySQL.. SUCCESS! 
  • 1
  • 2
  • 3
  • 4

7、 设置密码和开机自启

此时mysql是没有密码的,输入mysql就能进入mysql
在这里插入图片描述

  • 设置密码
[root@cVzhanshi mysql]# /usr/bin/mysqladmin -u root password 123456
# 尝试进入mysql 发现报错
[root@cVzhanshi mysql]# mysql
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
[root@cVzhanshi mysql]# mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.5.48 MySQL Community Server (GPL)

Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 设置开机自启
[root@cVzhanshi mysql]# chkconfig mysql on
# 查看是否开启
  • 1
  • 2

在这里插入图片描述

  • 继续深度查看是否开启开机自启
[root@cVzhanshi opt]# ntsysv
  • 1

查看状态
在这里插入图片描述

8、修改字符集

新安装mysql字符集没有统一,可能会出现乱码问题

查看字符集
在这里插入图片描述

# 先cp配置文件到etc路径下
[root@cVzhanshi mysql]# cp my-huge.cnf /etc/my.cnf
# 编写配置文件
[root@cVzhanshi etc]# vim my.cnf
# 增加的修改内容如下:
[client]
default-character-set=utf8
[mysqld]
character_set_server=utf8
character_set_client=utf8
collation-server=utf8_general_ci
[mysql]
default-character-set=utf8
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

重启服务

9、可视化工具连接

参考此文章

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/139848
推荐阅读
相关标签
  

闽ICP备14008679号