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!

     

     

  • 相关阅读:
    检查点学习笔记
    数据驱动-参数化(Parameters)
    loadrunner -vuser
    loadrunner 事务、同步点和思考时间
    loadrunner报错
    java随机数的产生
    Codeforces Round #666 (Div. 2) Power Sequence、Multiples of Length 思维
    Educational Codeforces Round 94 (Rated for Div. 2) String Similarity、RPG Protagonist、Binary String Reconstruction、Zigzags 思维
    Leetcode】周赛203 查找大小为M的最新分组
    HDU 6880 Permutation Counting dp
  • 原文地址:https://www.cnblogs.com/ahjx1628/p/7858094.html
Copyright © 2011-2022 走看看