zoukankan      html  css  js  c++  java
  • CentOS6.8 x64 安装MySQL 5.6.38 rpm方式

    Xshell for Xmanager Enterprise 5 (Build 1015)
    [root@LS-Min ~]# rpm -qa | grep mysql
    mysql-libs-5.1.73-8.el6_8.x86_64
    [root@LS-Min ~]# rpm --nodeps -e mysql-libs-5.1.73-8.el6_8.x86_64
    Complete!
    [root@LS-Min download]# rpm -ivh MySQL-server-5.6.38-1.el6.x86_64.rpm 
    warning: MySQL-server-5.6.38-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-server-5.6.38-1.el6.x86_64
        libnuma.so.1(libnuma_1.1)(64bit) is needed by MySQL-server-5.6.38-1.el6.x86_64
        libnuma.so.1(libnuma_1.2)(64bit) is needed by MySQL-server-5.6.38-1.el6.x86_64
    [root@LS-Min download]# yum install numactl
    ...                                                           
    Complete!
    [root@LS-Min download]# rpm -ivh MySQL-server-5.6.38-1.el6.x86_64.rpm 
    
    A RANDOM PASSWORD HAS BEEN SET FOR THE MySQL root USER !
    You will find that password in '/root/.mysql_secret'.
    
    You must change that password on your first connect,
    no other statement but 'SET PASSWORD' will be accepted.
    See the manual for the semantics of the 'password expired' flag.
    
    Also, the account for the anonymous user has been removed.
    
    [root@LS-Min download]# rpm -ivh MySQL-client-5.6.38-1.el6.x86_64.rpm 
    ...
    [root@LS-Min download]# /etc/init.d/mysql start
    ...
    SUCCESS!
    [root@LS-Min ~]# /etc/init.d/mysql stop
    Shutting down MySQL.. SUCCESS!
    [root@LS-Min ~]# /etc/init.d/mysql start

    Starting MySQL. SUCCESS!
    [root@LS-Min download]# vim /root/.mysql_secret
    ...
    [root@LS-Min download]# mysql -u root -p
    Enter password:
    Welcome to the MySQL monitor. Commands end with ; or
    ...
    mysql> exit
    [root@LS-Min download]# mysqladmin -u root -p password 'hik12345+'
    Enter password:
    Warning: Using a password on the command line interface can be insecure.
    [root@LS-Min download]# mysql -u root -p
    Enter password: 
    ...

     

     [root@LS-Min ~]# chkconfig --add mysql
     [root@LS-Min ~]# chkconfig --list mysql
      mysql 0:off 1:off 2:on 3:on 4:on 5:on 6:off
     [root@LS-Min ~]# service mysql start
      Starting MySQL. SUCCESS!
     [root@LS-Min ~]# service mysql stop
      Shutting down MySQL.. SUCCESS!

     

     

  • 相关阅读:
    6个laravel常用目录路径函数
    Laravel上传产品图片Uploading img
    Laravel删除产品-CRUD之delete(destroy)
    Laravel编辑产品-CRUD之edit和update
    Laravel展示产品-CRUD之show
    Laravel创建产品-CRUD之Create and Store
    内存泄露从入门到精通三部曲之排查方法篇
    P问题、NP问题、NPC问题、NP难问题的概念
    二维码的生成细节和原理
    一分钟认识GitHub
  • 原文地址:https://www.cnblogs.com/ahjx1628/p/7858094.html
Copyright © 2011-2022 走看看