美文网首页
centos6 安装mysql5.7

centos6 安装mysql5.7

作者: 溪桥路转 | 来源:发表于2018-04-19 16:06 被阅读0次

    mysql5.7 新特性介绍 参考链接

    1. 安装mysql的yum源

    • a.下载配置mysql的yum源的rpm包
      使用以下命令获取rpm文件:
    wget https://dev.mysql.com/get/mysql57-community-release-el6-9.noarch.rpm
    
    • b. 安装用来配置mysql的yum源的rpm包
    rpm -Uvh mysql57-community-release-el6-9.noarch.rpm 
    

    或使用:

    yum localinstall -y mysql57-community-release-el6-9.noarch.rpm   
    

    2. 安装mysql

    yum install mysql-community-server
    

    3. 开启mysql服务

    service mysqld start
    

    4. 查看mysql的运行状态

     service mysqld status
    

    5. 修改mysql5.7临时密码

    Mysql5.7默认安装之后root是有密码的。

    5.1 获取MySQL的临时密码

    为了加强安全性,MySQL5.7为root用户随机生成了一个密码,在error log中,关于error log的位置,如果安装的是RPM包,则默认是/var/log/mysqld.log
    只有启动过一次mysql才可以查看临时密码。

    grep 'temporary password' /var/log/mysqld.log
    
    [root@localhost ~]# grep 'temporary password' /var/log/mysqld.log
    2018-07-18T20:53:56.015766Z 1 [Note] A temporary password is generated for root@localhost: r<dyTPJeh6Ht
    这里 r<dyTPJeh6Ht 就是我们的临时密码
    
    5.2 登陆并修改密码
    • 使用默认密码登陆
    mysql -u root -p
    
    • 切换到mysql数据库,更新 user 表:
    use mysql;
    

    ps: 在之前的版本中,密码字段的字段名是 password,5.7版本改为了 authentication_string,所以我们用如下命令进行修改:

    update user set authentication_string = password('root'), password_expired = 'N', password_last_changed = now() where user = 'root';
    

    如果提示如下错误:

    You must reset your password using ALTER USER statement before executing this statement.
    

    需要用ALTER USER重置一次密码才能执行sql语句,请使用一下命令:

    ALTER USER 'root'@'localhost' IDENTIFIED BY 'your new password' PASSWORD EXPIRE NEVER;  -- 密码永不过期
    

    或者:

    ALTER USER 'root'@'localhost' IDENTIFIED BY 'your new password' PASSWORD EXPIRE;    -- 密码有过期时间
    

    修改密码出现如下错误:

    ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
    

    这个其实与validate_password_policy的值有关。
    validate_password_policy有以下取值:

    ------------ ---------------
    Policy Tests Performed
    0 or LOW Length
    1 or MEDIUM Length; numeric, lowercase/uppercase, and special characters
    2 or STRONG Length; numeric, lowercase/uppercase, and special characters; dictionary file

    默认是1,即MEDIUM,所以刚开始设置的密码必须符合长度,且必须含有数字,小写或大写字母,特殊字符。
    有时候,只是为了自己测试,不想密码设置得那么复杂,譬如说,我只想设置root的密码为123456。
    必须修改两个全局参数:
    首先,修改validate_password_policy参数的值:

    mysql> set global validate_password_policy=0;
    Query OK, 0 rows affected (0.00 sec)
    

    这样,判断密码的标准就基于密码的长度了。这个由validate_password_length参数来决定。


    重启 mysqld 服务,再用新密码登录即可。

    6. 查看mysql是否自启动,并且设置开启自启动命令

    # chkconfig --list | grep mysqld
    # chkconfig mysqld on
    

    7. .mysql安全设置(系统会一路问你几个问题,看不懂复制之后翻译,基本上一路yes):

    # mysql_secure_installation
    

    开启远程连接

    设置iptables开放3306端口:

    vi /etc/sysconfig/iptables
    
    设置iptables开放3306端口
    如果使用远程登陆出错,解决方法将localhost改为%
    代码如下
    mysql -u root -p
    mysql>use mysql;
    mysql>update user set host ='%'where user ='root';
    mysql>flush privileges;
    

    远程登陆成功:


    远程登陆成功

    相关文章

      网友评论

          本文标题:centos6 安装mysql5.7

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