美文网首页
center os 7 Mysql 安装

center os 7 Mysql 安装

作者: 尘瀚 | 来源:发表于2017-01-13 15:00 被阅读155次

    我的网盘里面有mysql rpm安装文件

    链接:http://pan.baidu.com/s/1skSPIQL 密码 b5b3

    1.对于centeros 7.0 以上版本 想装mysql 需要先要卸载mariadb
    rpm -qa | grep mariadb 查看已安装的mariadb

    2.卸载mariadb
    rpm -e --nodeps installedName 卸载

    3.通过rpm安装mysql
    rpm -ivh fileName 安装如下三个文件
    MySQL-client-advanced-5.6.22-1.el7.x86_64.rpm
    MySQL-devel-advanced-5.6.22-1.el7.x86_64.rpm
    MySQL-server-advanced-5.6.22-1.el7.x86_64.rpm

    4.启动mysql service mysql start
    centeros系统要关闭selinux
    打开/etc/selinux/config SELINUX=disabled 重启机器

    5.查看运行状态 service mysql status

    6.输入指令 mysql -u root -p 发现密码错误,要做一次密码重置操作

    7.通过其他终端访问centeros上的mysql发现被拒绝
    getsebool -a | grep httpd

    图片描述图片描述
    将网络连接改为on
    setsebool httpd_can_network_connect 1
    重启mysql
    8.再次尝试从终端访问center os上的mysql发现我的ip被拒绝连接
    登录mysql给客户端赋权
    grant all privileges on . to 'root'@'192.168.199.6' identified by '1234' with grant option;

    重置密码:
    a. service mysql stop 关闭mysql服务
    b. mysqld_safe --user=mysql --skip-grant-tables --skip-networking & 执行这个命令
    c. mysql -u root mysql 使用root登录mysql
    d. UPDATE user SET Password=PASSWORD('123456') where USER='root'; 更新root密码
    e. FLUSH PRIVILEGES; 刷新权限
    f. quit 退出
    g. service mysql start 启动mysql
    h. mysql -uroot -p 使用root登录 密码为123456
    i. set password = password('1234'); 重新设置密码

    相关文章

      网友评论

          本文标题:center os 7 Mysql 安装

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