• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Centos 7 安装mysql5.7.24二进制 版本的方法及解决办法

    Mysql 二进制安装方法

    下载mysql

    https://dev.mysql.com/downloads/mysql/

    1.解压包

    tar xf mysql-5.7.24-linux-glibc2.12-x86_64.tar.gz

    2.实际生产环境

    mv mysql-5.7.24-linux-glibc2.12-x86_64 /usr/local/mysql5.7 

    a.新增Mysql用户组

     groupadd mysql

    b. 新增用户

    opt]# useradd -r -g mysql mysql

    C.给mysql 目录权限

    chown -R mysql:mysql mysql5.7

    3. 到初始化环境的目录

     Cd /home/usr/local/mysql5.6/
    mkdir data
    mkdir log
    chown -R mysql:mysql mysql5.7

    4.初始化数据和指定安装目录和数据目录

    ./bin/mysqld --initialize --user=mysql --basedir=/usr/local/mysql5.7/ --datadir=/usr/local/mysql5.7/data/

    6复制启动文件

     cp mysql.server /etc/init.d/mysqld
    chmod +x /etc/init.d/mysqld

    7.修改启动路径

     vi /etc/init.d/mysqld
    basedir= /usr/local/mysql5.7
    datadir= /usr/local/mysql5.7/data

    8.增加环境变量 (最下面添加)l

     vi /etc/profile
    export MYSQL_HOME=" /usr/local/mysql5.7"
    export PATH="$PATH:$MYSQL_HOME/bin"

    9.刷新配置文件

    source /etc/profile

    修改配置文件

    vi /etc/my.cnf
    [client]
    port=3306
    [mysqld]
    basedir=/usr/local/mysql5.7
    datadir=/usr/local/mysql5.7/data
    #socket=/usr/local/mysql5.7/mysql.sock
    socket=/tmp/mysql.sock
    user=mysql
    #skip-grant-tables
    # Disabling symbolic-links is recommended to prevent assorted security risks
    symbolic-links=0
    # Settings user and group are ignored when systemd is used.
    # If you need to run mysqld under a different user or group,
    # customize your systemd unit file for mariadb according to the
    # instructions in http://fedoraproject.org/wiki/Systemd
    [mysqld_safe]
    log-error=/usr/local/mysql5.7/log/mysqld.log
    pid-file=/usr/local/mysql5.7/data/mysqld.pid
    #
    # include all files from the config directory
    #
    !includedir /etc/my.cnf.d

    11.添加开启自启

     chkconfig --add mysqld
     chkconfig mysqld on

    12.启动mysqld

     service mysqld start
     netstat -anpt

    13.修改密码(密码初始化的时候有个密码)

    2018-11-02T02:07:44.574468Z 1 [Note] A temporary password is generated for root@localhost: lXyB0%fi#9-S (这个就是密码)
    mysql> help contents
    ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
    mysql> help contents
    ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
    mysql> show databases;
    ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

    解决办法

    1、 修改用户密码

    mysql> alter user 'root'@'localhost' identified by 'youpassword';

    或者

    mysql> set password=password("youpassword");

    2、刷新权限

    mysql> flush privileges;
    mysql> help contents

    总结

    以上所述是小编给大家介绍的Centos 7 安装mysql5.7.24二进制 版本的方法 ,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

    您可能感兴趣的文章:
    • CentOS7编译安装MySQL5.7.24的教程详解
    • Centos7.5安装mysql5.7.24二进制包方式部署
    • MYSQL5.7.24安装没有data目录和my-default.ini及服务无法启动的完美解决办法
    • MySQL5.7.24版本的数据库安装过程图文详解
    • mysql 5.7.24 安装配置图文教程
    • mysql 5.7.24 安装配置方法图文教程
    • mysql5.7.24 解压版安装步骤及遇到的问题小结
    • mysql 5.7.24 压缩包安装配置方法图文教程
    上一篇:MySQL中大对象的多版本并发控制详解
    下一篇:mysql中的一些稍微复杂用法实例代码
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    Centos 7 安装mysql5.7.24二进制 版本的方法及解决办法 Centos,安装,mysql5.7.24,二进制,