red hat Linux安装myaql
程序员文章站
2022-05-27 13:34:06
...
安装mysql
但是MySQL数据库软件从默认的程序列表中移除,用mariadb代替了,Linux配置教程上,大多都是安装mariadb,因为centos7默认将mariadb视作mysql,所有要按照mysql需要下载
安装前先检查链接库文件有没有安装使用 命令进行核查
[[email protected] ~]# rpm -qa | grep libaio
[[email protected] ~]#
运行命令后发现系统中无该链接库文件
安装相关软件包
[[email protected] ~]# yum -y install libaio-devel.x86_64
[[email protected] ~]# yum -y install numactl
检查是否有maradb,如果有就卸载
[email protected] ~]# rpm -qa | grep mariadb
mariadb-libs-5.5.35-3.el7.x86_64
[[email protected] ~]# rpm -e --nodeps mariadb-libs-5.5.35-3.el7.x86_64
[[email protected] ~]# rpm -qa | grep mariadb
检查mysql用户组和用户是否存在,如果没有,则创建
[[email protected] ~]# cat /etc/group | grep mysql
[[email protected] ~]# cat /etc/passwd |grep mysql
[[email protected] ~]# groupadd mysql
[[email protected] ~]# useradd -r -g mysql mysql
从官网下载是用于Linux的Mysql安装包
[[email protected] ~]# wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.24-linux-glibc2.12-x86_64.tar.gz
在执行wget命令的目录下或你的上传目录下找到Mysql安装包:mysql-5.7.24-linux-glibc2.12-x86_64.tar.gz
执行解压命令:
[[email protected] ~]# tar -xzvf mysql-5.7.24-linux-glibc2.12-x86_64.tar.gz
[[email protected] ~]# ls
anaconda-ks.cfg mysql-5.7.24-linux-glibc2.12-x86_64.tar.gz
mysql-5.7.24-linux-glibc2.12-x86_64
解压完成后,可以看到当前目录下多了一个解压文件,移动该文件到/usr/local/下,并将文件夹名称修改为mysql。
如果/usr/local/下已经存在mysql,请将已存在mysql文件修改为其他名称,否则后续步骤可能无法正确进行
[[email protected] ~]# mv mysql-5.7.24-linux-glibc2.12-x86_64 /usr/local/
[[email protected] ~]# cd /usr/local/
[[email protected] local]# mv mysql-5.7.24-linux-glibc2.12-x86_64/ mysql
在/usr/local/mysql目录下创建data目录
[[email protected] local]# mkdir /usr/local/mysql/data
更改mysql目录下所有的目录及文件夹所属的用户组和用户,以及权限
[[email protected] local]# chown mysql:mysql /usr/local/mysql/
[[email protected] local]# chmod 755 /usr/local/mysql/
编译安装并初始化mysql,务必记住初始化输出日志末尾的密码(数据库管理员临时密码)记录日志最末尾位置[email protected]:后的字符串,此字符串为mysql管理员临时登录密码
[[email protected] local]# cd /usr/local/mysql/bin/
[[email protected] bin]# ./mysqld --initialize --user=mysql --datadir=/usr/local/mysql/data --basedir=/usr/local/mysql
编辑配置文件my.cnf,添加配置如下
[[email protected] bin]# vi /etc/my.cnf
[mysqld]
datadir=/usr/local/mysql/data
port=3306
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
sysbolic-links=0
max_connections=400
innodb_file_per_table=1
lower_case_table_name=1
启动mysql服务器
[[email protected] /]# /usr/local/mysql/support-files/mysql.server start
注:如果报错,查看是否存在mysql和mysqld的服务,如果存在,则结束进程,添加软连接,并重启mysql服务
[[email protected] bin]# ps -ef|grep mysqlps -ef|grep mysqld
[[email protected] bin]# ps -ef|grep mysqld
[[email protected] bin]# kill -9
[[email protected] bin]# ln -s /usr/local/mysql/support-files/mysql.server /etc/init.d/mysql
[[email protected] bin]# ln -s /usr/local/mysql/bin/mysql /usr/bin/mysql
[[email protected] bin]# service mysql restart
登录mysql,修改密码(密码为步骤5生成的临时密码)
[[email protected] bin]# mysql -u root -p
Enter password:
mysql>set password for [email protected] = password('yourpass');
Query OK, 0 rows affected, 1 warning (0.00 sec)
开放远程连接
mysql>use mysql;
msyql>update user set user.Host='%' where user.User='root';
mysql>flush privileges;
设置开机自动启动
1、将服务文件拷贝到init.d下,并重命名为mysql
[[email protected] /]# cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysqld
2、赋予可执行权限
[[email protected] /]# chmod +x /etc/init.d/mysqld
3、添加服务
[[email protected] /]# chkconfig --add mysqld
4、显示服务列表
[[email protected] /]# chkconfig --list
推荐阅读
-
Red Hat Enterprise Linux / CentOS 7 yum安装zabbix4.0
-
Win7下硬盘安装 Red Hat Enterprise Linux 6.0 ES图文方法
-
Red Hat Linux,Apache2.0+Weblogic9.2负载均衡集群安装配置
-
Red Hat Linux上使用BIND建立DNS服务器
-
windows系统安装虚拟机VMware12,然后在虚拟机中安装Red Hat Enterprise Linux6操作系统
-
red hat linux之Samba、DHCP、DNS、FTP、Web的安装与配置
-
Red Hat Linux 安全设置方法
-
Red Hat 4.4.7-4上安装glances填大大大坑实录,我的内心是崩溃的!!!
-
Red Hat Enterprise Linux 8.0 安装
-
Linux:Red Hat系统的安装