时间:2021-05-25
Mysql 二进制安装方法
下载mysql
https://dev.mysql.com/downloads/mysql/
1.解压包
tar xf mysql-5.7.24-linux-glibc2.12-x86_64.tar.gz2.实际生产环境
mv mysql-5.7.24-linux-glibc2.12-x86_64 /usr/local/mysql5.7a.新增Mysql用户组
groupadd mysqlb. 新增用户
opt]# useradd -r -g mysql mysqlC.给mysql 目录权限
chown -R mysql:mysql mysql5.73. 到初始化环境的目录
Cd /home/usr/local/mysql5.6/mkdir datamkdir logchown -R mysql:mysql mysql5.74.初始化数据和指定安装目录和数据目录
./bin/mysqld --initialize --user=mysql --basedir=/usr/local/mysql5.7/ --datadir=/usr/local/mysql5.7/data/6复制启动文件
cp mysql.server /etc/init.d/mysqldchmod +x /etc/init.d/mysqld7.修改启动路径
vi /etc/init.d/mysqldbasedir= /usr/local/mysql5.7datadir= /usr/local/mysql5.7/data8.增加环境变量 (最下面添加)l
vi /etc/profileexport MYSQL_HOME=" /usr/local/mysql5.7"export PATH="$PATH:$MYSQL_HOME/bin"9.刷新配置文件
source /etc/profile修改配置文件
vi /etc/my.cnf[client]port=3306[mysqld]basedir=/usr/local/mysql5.7datadir=/usr/local/mysql5.7/data#socket=/usr/local/mysql5.7/mysql.socksocket=/tmp/mysql.sockuser=mysql#skip-grant-tables# Disabling symbolic-links is recommended to prevent assorted security riskssymbolic-links=0# Settings user and group are ignored when systemd is used.# If you need to run mysqld under a different user or group,# customize your systemd unit file for mariadb according to the# instructions in http://fedoraproject.org/wiki/Systemd[mysqld_safe]log-error=/usr/local/mysql5.7/log/mysqld.logpid-file=/usr/local/mysql5.7/data/mysqld.pid## include all files from the config directory#!includedir /etc/my.cnf.d11.添加开启自启
chkconfig --add mysqld chkconfig mysqld on12.启动mysqld
service mysqld start netstat -anpt13.修改密码(密码初始化的时候有个密码)
2018-11-02T02:07:44.574468Z 1 [Note] A temporary password is generated for root@localhost: lXyB0%fi#9-S (这个就是密码)mysql> help contentsERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.mysql> help contentsERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.mysql> show databases;ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.解决办法
1、 修改用户密码
mysql> alter user 'root'@'localhost' identified by 'youpassword';或者
mysql> set password=password("youpassword");2、刷新权限
mysql> flush privileges;mysql> help contents总结
以上所述是小编给大家介绍的Centos 7 安装mysql5.7.24二进制 版本的方法 ,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Docker支持运行在以下CentOS版本:•CentOS7.X安装在二进制兼容的EL7版本如ScientificLinux也是可能成功的,但是Do
本文实例讲述了centos7环境下创建mysql5.6多实例的方法。分享给大家供大家参考,具体如下:一、mysql安装目录说明mysql5.6以二进制安装包安装
A、MySQL备份工具xtrabackup的安装1.percona官方xtrabackup的二进制版本;二进制版本解压就能用了。2.解压xtrabackup&创
Linux系统版本:CentOS7.4MySQL版本:5.7.28在Linux平台有RPM包、二进制包、源码包3中安装方式,这一篇文章主要是以RPM包为例来介绍
MariaDB数据库分为源代码版本和二进制版本,源代码版本需要cmake编译,这里是二进制版本的安装#tarzxvfmariadb-5.5.31-linux-x