zoukankan      html  css  js  c++  java
  • centos6.9安装mysql5.7

    https://blog.csdn.net/u011630575/article/details/73511621

    在centos 6.9 上rpm安装mysql

    环境:

    Linux:CentOS release 6.9 64bit

    MySQL: mysq-5.7.18

    1、在/home创建mysql目录,下载如下四个软件包

    http://mirrors.sohu.com/mysql/MySQL-5.7/

    wget http://mirrors.sohu.com/mysql/MySQL-5.7/mysql-community-client-5.7.18-1.el6.x86_64.rpm

    wget http://mirrors.sohu.com/mysql/MySQL-5.7/mysql-community-common-5.7.18-1.el6.x86_64.rpm

    wget http://mirrors.sohu.com/mysql/MySQL-5.7/mysql-community-libs-5.7.18-1.el6.x86_64.rpm

    wget http://mirrors.sohu.com/mysql/MySQL-5.7/mysql-community-server-5.7.18-1.el6.x86_64.rpm

    2、检查mysql rpm相关的包是否安装并去除

    [root@centos-6 mysql]# rpm -qa | grep -i mysql

    mysql-libs-5.1.73-8.el6_8.x86_64

    [root@centos-6 mysql]# rpm -e mysql-libs-5.1.73-8.el6_8.x86_64

    error: Failed dependencies:

    libmysqlclient.so.16()(64bit) is needed by (installed) postfix-2:2.6.6-8.el6.x86_64

    libmysqlclient.so.16(libmysqlclient_16)(64bit) is needed by (installed) postfix-2:2.6.6-8.el6.x86_64

    mysql-libs is needed by (installed) postfix-2:2.6.6-8.el6.x86_64

    [root@centos-6 mysql]#

    将依赖包一并删除

    [root@centos-6 mysql]# yum remove -y mysql-libs

    再次查询是否删除干净

    [root@centos-6 mysql]# rpm -qa | grep -i mysql

    [root@centos-6 mysql]#

    3、同时安装这四个rpm包

    rpm -ivh mysql-community-client-5.7.18-1.el6.x86_64.rpm mysql-community-common-5.7.18-1.el6.x86_64.rpm mysql-community-libs-5.7.18-1.el6.x86_64.rpm mysql-community-server-5.7.18-1.el6.x86_64.rpm

    4、出现缺少依赖包解决方式

    [root@centos-6 home]# rpm -ivh mysql-community-client-5.7.18-1.el6.x86_64.rpm mysql-community-common-5.7.18-1.el6.x86_64.rpm mysql-community-libs-5.7.18-1.el6.x86_64.rpm mysql-community-server-5.7.18-1.el6.x86_64.rpm

    warning: mysql-community-client-5.7.18-1.el6.x86_64.rpm: Header V3 DSA/SHA1 Signature, key ID 5072e1f5: NOKEY

    error: Failed dependencies:

    libnuma.so.1()(64bit) is needed by mysql-community-server-5.7.18-1.el6.x86_64

    libnuma.so.1(libnuma_1.1)(64bit) is needed by mysql-community-server-5.7.18-1.el6.x86_64

    libnuma.so.1(libnuma_1.2)(64bit) is needed by mysql-community-server-5.7.18-1.el6.x86_64

    [root@centos-6 home]# yum install -y numactl

    5、mysql数据库设置

    service mysqld stop 

    mysqld_safe --skip-grant-tables &

    mysql -uroot -p

    >use mysql;

    > update user set authentication_string=PASSWORD("root") where user="root";

     update user set host='%' where user="root";

    FLUSH PRIVILEGES; 

    service mysqld restart

    mysql -uroot -proot

    SET PASSWORD = PASSWORD('root');

  • 相关阅读:
    memcached 细究(一)
    centos文件/文件夹操作-检查磁盘、内存、cpu使用情况-vi操作命令
    判断php变量是否定义,是否为空,是否为真的一览表
    php 在函数前面加个@的作用
    apache Header set Cache-Control
    windows上memecache添加多个端口命令
    Android 4.4KitKat AudioFlinger 流程分析
    Android 4.4KitKat Sound System
    Android 4.4KitKat AudioTrack 流程分析
    Android Shell Cmd
  • 原文地址:https://www.cnblogs.com/mingzhang/p/12298594.html
Copyright © 2011-2022 走看看