美文网首页
cenots6 rpm安装mysql5.6

cenots6 rpm安装mysql5.6

作者: kyo1992 | 来源:发表于2020-07-12 19:58 被阅读0次

mysql镜像:
http://mirrors.ustc.edu.cn/mysql-ftp/Downloads/MySQL-5.6/


步骤:

  1. 先卸载机器上原有的mysql文件,必须,否则安装失败
# 将结果使用 rpm -e target 移除
rpm -qa | grep -i mysql
# 全局搜索
find / -name mysql*
# yum移除
yum -y remove mysql-libs*
  1. 下载:
    MySQL-client-5.6.45-1.el6.x86_64.rpm
    MySQL-server-5.6.45-1.el6.x86_64.rpm
  2. yum安装需要的依赖库
yum install perl -y 
yum install libnuma*
  1. 安装server和client
rpm -ivh  MySQL-server-5.6.45-1.el6.x86_64.rpm
rpm -ivh  MySQL-client-5.6.45-1.el6.x86_64.rpm
  1. 启动数据库
service mysql start 
  1. 密码在 cat /root/.mysql_secret, mysql -uroot -p 输入密码登录.
  2. 修改密码
set password for 'root'@'localhost'=password('newpass');
  1. 设置开启启动
chkconfig mysqld on
  1. iptables开放3306
iptables -I INPUT -p tcp --dport 3306 -j ACCEPT
service iptables save
service iptables restart
  1. 设置root用户可以远程连接
grant all privileges on *.* to 'root'@'%' identified by 'newpass';
flush privileges;
  1. 目录位置
    mysql: /usr/share/mysql
    my.cnf: /usr/my.cnf

  2. 卸载

rpm -e MySQL-server 
rpm -e MySQL-client 

相关文章

网友评论

      本文标题:cenots6 rpm安装mysql5.6

      本文链接:https://www.haomeiwen.com/subject/yijncktx.html