Centos7 gclib方式安装mysql 5.7

检查

查看是否安装 libaio

  • 基于yum系统

yum search libaio
yum install libaio

  • 基于APT系统

apt-get search libaio
apt-get install libaio1

查看mariadb是否存在,如果存在删除

  • 基于yum系统

yum list | grep mariadb
yum remove mariadb*

  • 基于APT系统

apt-cache search mariadb
apt-get remove mariadb*

下载地址

Download:mysql5.7

安装

  shell> groupadd mysql //创建mysql用户组
  shell> useradd -r -g mysql -s /bin/false mysql  //创建mysql用户到mysql用户组,同时禁止mysql用户直接登陆
  shell> cd /usr/local //进入/usr/local目录
  shell> tar zxvf /path/to/mysql-VERSION-OS.tar.gz //解压下载的MySQL文件
  shell> ln -s full-path-to-mysql-VERSION-OS mysql //在当前目录下创建mysql,同时与解压后目录建立软连接
  shell> cd mysql //进入建立软连接的mysql目录
  shell> mkdir mysql-files //创建 mysql-files文件夹
  shell> chown mysql:mysql mysql-files //修改mysql-files文件夹所属的用户和用户组
  shell> chmod 750 mysql-files //修改mysql-files文件夹的权限
  shell> bin/mysqld --initialize --user=mysql //初始化表空间、数据库,同时添加用户以及设置root默认密码
  shell> bin/mysql_ssl_rsa_setup //  创建ssh和RSA密钥文件           
  shell> bin/mysqld_safe --user=mysql & // 启动mysql服务
  shell> cp support-files/mysql.server /etc/init.d/mysql.server //复制mysql.server到系统启动脚本目录下
  shell> export PATH=$PATH:/usr/local/mysql/bin //将mysql/bin加入到PATH中

修改root密码

set password方式

shell> mysql -u root -p //使用刚才的root默认密码
mysql> set password root@localhost=password('password') //修改密码

mysqladmin方式

shell> mysqladmin -u root -p password newpassword //指定root,新密码为newpassword ,回车后输入当前密码

设置允许远程连接mysql

直接修改数据库方式

shell> mysql -u root -p password //登陆mysql
mysql> update user set host='%' where user='root';//修改root
//或
mysql> insert into user (host,user,password) values('ip','root',password('password'));//插入数据
mysql> select host,user from user;//查看是否修改成功
mysql> flush privileges;// 推送设置到内存  或者直接重启mysql

设置mysql自启动

shell> chkconfig --add mysql.server //mysql添加到启动项
shell> chkconfig --list //查看所有启动项

你可能感兴趣的:(Centos7 gclib方式安装mysql 5.7)