侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130555 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

Centos7.5安装mysql5.7.24二进制包方式部署

2024-05-08 星期三 / 0 评论 / 0 点赞 / 4 阅读 / 3456 字

一、环境准备:操作系统:CentOS Linux release 7.5.1804 (Core)mysql版本:mysql-5.7.24-linux-glibc2.12-x86_64.tar.gzIP:172.16.8.

一、环境准备:

操作系统:CentOS Linux release 7.5.1804 (Core)

mysql版本:mysql-5.7.24-linux-glibc2.12-x86_64.tar.gz

IP:172.16.8.247

二、mysql5.7二进制安装

1、安装依赖包

yum -y install libaio

2、安装mysql软件

下载软件包:

https://cdn.mysql.com//Downloads/MySQL-5.7/mysql-5.7.24-linux-glibc2.12-x86_64.tar.gz

tar -xvf mysql-5.7.24-linux-glibc2.12-x86_64.tar.gz -C ../cd ..mv mysql-5.7.24-linux-glibc2.12-x86_64/ mysql5.7useradd -s /sbin/nologin -M mysqlmkdir -p /app/mysql5.7/{etc,logs,tmp}

3、初始化数据

bin/mysqld --initialize --basedir=/app/mysql5.7/ --datadir=/app/mysql5.7/data --user=mysql# bin/mysqld --initialize --basedir=/app/mysql5.7/ --datadir=/app/mysql5.7/data --user=mysql2018-11-25T03:03:16.299117Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).2018-11-25T03:03:16.946059Z 0 [Warning] InnoDB: New log files created, LSN=457902018-11-25T03:03:17.033699Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.2018-11-25T03:03:17.089657Z 0 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: a7fef663-f05e-11e8-b1f5-08002728f0e4.2018-11-25T03:03:17.090377Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened.2018-11-25T03:03:17.090784Z 1 [Note] A temporary password is generated for root@localhost: m:fw/7on%>Bh

4、修改配置文件

chown -R mysql .vim /app/mysql5.7/etc/my.cnf[mysqld]daemonize = onuser = mysqlport = 3306basedir = /app/mysql5.7datadir = /app/mysql5.7/datasocket = /tmp/mysql.sockbind-address = 0.0.0.0pid-file = /app/mysql5.7/tmp/mysqld.pidcharacter-set-server = utf8collation-server = utf8_general_cimax_connections = 2408log-error = /app/mysql5.7/logs/mysqld.log

5、systemd启动MYSQL服务

vim /lib/systemd/system/mysqld.service[Unit]Description=MySQL ServerDocumentation=man:mysqld(8)Documentation=http://dev.mysql.com/doc/refman/en/using-systemd.htmlAfter=network.targetAfter=syslog.target[Install]WantedBy=multi-user.target[Service]User=mysqlGroup=mysqlType=forkingTimeoutSec=0PermissionsStartOnly=trueExecStart=/app/mysql5.7/bin/mysqld --defaults-file=/app/mysql5.7/etc/my.cnfLimitNOFILE = 5000Restart=on-failureRestartPreventExitStartus=1PrivateTmp=false

6、启动服务

systemctl restart mysqldsystemctl enable mysqld

7、修改mysql root密码

vim /etc/profileexport PATH=$PATH:/app/mysql5.7/binsource /etc/profilemysql -uroot -palter user 'root'@'localhost' IDENTIFIED BY 'Devops@2018';

总结

以上所述是小编给大家介绍的Centos7.5安装mysql5.7.24二进制包方式部署,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对编程圈网站的支持!

广告 广告

评论区