zoukankan      html  css  js  c++  java
  • CentOS RPM安装MySQL-5.6

     

    1.检查是否有安装

    安装之前应该先查询系统是否自在了mysql的软件包 rpm -qa|grep -i mysql

    如果有的话需要先删除 rpm -e 软件名 --nodeps

     

    2.下载安装包

     

    cd/usr/local/src

    wgethttp://cdn.mysql.com/Downloads/MySQL-5.6/MySQL-server-5.6.13-1.el6.x86_64.rpm

    wget http://cdn.mysql.com/Downloads/MySQL-5.6/MySQL-client-5.6.13-1.el6.x86_64.rpm

     

    上面的地址失效,用这个:

     

    http://ftp.ntu.edu.tw/MySQL/Downloads/MySQL-5.6/

     

    3.安装 

     

    rpm -ivh MySQL-server-5.6.13-1.el6.x86_64.rpm

    rpm -ivh MySQL-client-5.6.13-1.el6.x86_64.rpm

     

     

     

    4.启动及配置

     

    #启动MySQL

    service mysql start

     

    #登录mysql

    mysql -u root -p

     

    Enter password:

     

    安装后生成的一个随机密码在 /root/.mysql_secret

     

     

     

    #修改密码

    SET PASSWORD=password('password');

     

    #添加一个可远程登录的帐号

    GRANT all privileges on *.* TO 'root'@'%'identified by'password'WITH GRANT OPTION;

    FLUSH PRIVILEGES;

    #修改密码

    SET PASSWORD FOR 'root'@'%'= PASSWORD('password');

     

     

    #########################################

     

    #可运行此脚本 进行生产服务器安全配置

    /usr/bin/mysql_secure_installation

     

     

    #Enter current password for root  输入root密码

    #Change the root password?  是否修改root的密码

    #Remove anonymous users?  是否删除匿名账号

    #Disallow root login remotely?  是否取消root用户远程登录

    #Remove test database and access to it?  是否删除test库和对test库的访问权限

    #Reload privilege tables now?  是否现在刷新授权表使修改生效

    版权声明:本文为博主原创文章,未经博主允许不得转载。

  • 相关阅读:
    091122杂记
    20100304我的碎碎念
    写给自己
    开始学习AGG
    找两个数组中的相同元素
    要多写代码了
    [翻译] AGG Reference 之 Basic Renderers(基础渲染器)
    在博客园日志中显示数学公式(旧,ASCIIMathML.js版说明)
    091128日志(博客园博客显示数学公式的方法!)
    与临时对象的斗争(上)
  • 原文地址:https://www.cnblogs.com/jamesf/p/4751497.html
Copyright © 2011-2022 走看看