美文网首页
CentOS7的yum安装mysql

CentOS7的yum安装mysql

作者: barry_di | 来源:发表于2018-01-02 15:30 被阅读0次

    一、mariadb

    查看CentOS7中是否已经安装了mariadb数据库,若安装了mariadb数据库,先卸载mariadb数据再安装MySQL。若没有安装mariadb数据库。则直接跳过。

    1.列出所有被安装的rpm package 查看是否存在mariadb数据库

    rpm -qa | grep mariadb
    

    2.卸载mariadb数据库

    rpm -e mariadb-libs-5.5.37-1.el7_0.x86_64
    

    二、下载MySQL的rpm包

    查看下CentOS7的yum源中是否存在有mysql的repo源。如果有mysql的repo源可以跳过,如果没有mysql的repo源,我们要先下载mysql的repo源。我们可以在http://repo.mysql.com/下载我们想要的Mysql版本。我们这里下载mysql57-community-release-sles12版本。

    1. 下载mysql的repo源
    $ wget http://repo.mysql.com/mysql57-community-release-sles12.rpm
    

    2.安装mysql的rmp

    $ sudo rpm -ivh mysql-community-release-el7-5.noarch.rpm
    

    二、yum 安装MySQL

    $ sudo yum install mysql-server
    

    三、重置密码

    安装完毕后,mysql会给我们默认生成root账号的密码打印到日志里面,在Mysql的日志目录中/var/log/mysqld.log查看root账号的密码。

    mysql > use mysql;
    mysql > update user set password=password(‘123456‘) where user=‘root‘;
    mysql > exit;
    

    四、 开放3306端口

    我们这里使用的防火墙是iptables。
    1.切换到iptables配置目录或者直接打开iptables配置

    $ sudo vim /etc/sysconfig/iptables
    

    2.添加允许端口

    -A INPUT -p tcp -m state --state NEW -m tcp --dport 3306 -j ACCEPT
    

    3.重启防火墙

    $ sudo service iptables restart
    

    相关文章

      网友评论

          本文标题:CentOS7的yum安装mysql

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