mysql5.6 centos7下安装之rpm安装

参考:mysql安装一 rpm包安装

一:下载与解压

  1. 下载地址:mysql-5.6-30 密码:mg0r 我放到了 /usr/local/mysql 传输的话可以考虑winscp
  2. 创建并解压至mysql目录

    mkdir mysql
    tar xvf MySQL-5.6.30-1.linux_glibc2.5.x86_64.rpm-bundle.tar -C /usr/local/mysql/
    

二:安装前的准备

  1. 安装MySQL-shared-compat替换mysql-libs,如果不替换,在删除mysql-libs,会提示postfix依赖于mysql-libs:

    # rpm -ivh MySQL-shared-compat-5.6.21-1.el6.i686.rpm
    # rpm -qa | grep -i mysql
    mysql-libs-5.1.71-1.el6.i686
    MySQL-shared-compat-5.6.21-1.el6.i686
    # yum remove mysql-libs
    
  2. 测试MySQL-server安装,提示需要安装perl:

    # rpm -ivh --test MySQL-server-5.6.21-1.el6.i686.rpm
    # yum install perl
    
    • –test 安装测试,并不实际安装,可以检查依赖关系
    • +

三:安装客户端与服务端

  1. cd /usr/local/mysql
  2. 安装客户端

    rpm -ivh  MySQL-client-5.6.30-1.linux_glibc2.5.x86_64.rpm 
    
  3. 安装server

     yum install MySQL-server-5.6.30-1.linux_glibc2.5.x86_64.rpm
    

    注意:yum install 和rpm -ivh差不多,猜想差别是yum会自动安装依赖吧。
    我遇到的问题,由于我之前编译安装过mysql报了:

      Transaction check error:
             file /usr/share/mysql/charsets/README from install of MySQL-server-5.6.30-1.linux_glibc2.5.x86_64 conflicts      with file from package mariadb-libs-1:5.5.41-2.el7_0.x86_64
      file /usr/share/mysql/czech/errmsg.sys from install of MySQL-server-5.6.30-1.linux_glibc2.5.x86_64 conflicts with file from package mariadb-libs-1:5.5.41-2.el7_0.x86_64
      file /usr/share/mysql/danish/errmsg.sys from install of MySQL-server-5.6.30-1.linux_glibc2.5.x86_64 conflicts with file from package mariadb-libs-1:5.5.41-2.el7_0.x86_64
      file /usr/share/mysql/dutch/errmsg.sys from install of MySQL-server-5.6.30-1.linux_glibc2.5.x86_64 conflicts with file from package mariadb-libs-1:5.5.41-2.el7_0.x86_64
      file /usr/share/mysql/english/errmsg.sys from install of MySQL-server-5.6.30-1.linux_glibc2.5.x86_64 conflicts with file from package mariadb-libs-1:5.5.41-2.el7_0.x86_64
      file /usr/share/mysql/estonian/errmsg.sys from install of MySQL-server-5.6.30-1.linux_glibc2.5.x86_64 conflicts with file from package mariadb-libs-1:5.5.41-2.el7_0.x86_64
      file /usr/share/mysql/french/errmsg.sys from install of MySQL-server-5.6.30-1.linux_glibc2.5.x86_64 conflicts with file from package mariadb-libs-1:5.5.41-2.el7_0.x86_64...
    

    解决方法执行:yum remove mariadb-libs 和yum remove mysql-libs 也不知哪个起到了作用

  4. 安装成功会出现以下日志(会产生一个随机的root密码保存在/root/.mysql_secret中):如果没有这句话顺利安装了,那么密码就是空,初始化让输入旧密码的时候直接回车即可

            A RANDOM PASSWORD HAS BEEN SET FOR THE MySQL root USER !
    You will find that password in '/root/.mysql_secret'.
    (一个随机的root密码已经生成被放在'/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.
    In addition, you can run:
      /usr/bin/mysql_secure_installation
    which will also give you the option of removing the test database.
    This is strongly recommended for production servers.
    See the manual for more instructions.
    Please report any problems at http://bugs.mysql.com/
    The latest information about MySQL is available on the web at
      http://www.mysql.com
    Support MySQL by buying support/licenses at http://shop.mysql.com
    New default config file was created as /usr/my.cnf and
    will be used by default by the server when you start it.
    You may edit this file to change server settings
      验证中      : MySQL-server-5.6.30-1.linux_glibc2.5.x86_64                                                                                                                                                  1/1 
    已安装:
      MySQL-server.x86_64 0:5.6.30-1.linux_glibc2.5                                                                                                                                                                  
    完毕!
    
  5. copy配置文件 没有这一步也可以按内置参数

    [root@host2 mysql_rpm]# cp /usr/share/mysql/my-default.cnf /etc/my.cnf
    [root@host2 mysql_rpm]#

四:初始化

  1. 查看刚才产生的密码:

    cat /root/.mysql_secret
    

    输出:

    The random password set for the root user at Thu Apr 28 03:43:28 2016 (local time): TtuLj3wmj345xpmX
    
  2. 启动mysql:

      service mysql start
    
  3. 通过mysql_secure_installation执行mysql初始化

    [root@localhost xiaoli]# mysql_secure_installation
    

    输出:

    NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
    SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!
    In order to log into MySQL to secure it, we'll need the current
    password for the root user.  If you've just installed MySQL, and
    you haven't set the root password yet, the password will be blank,
    so you should just press enter here.
    (下面的意思,输入mysql生成的密码)
    Enter current password for root (enter for none): 
    
    输入密码:TtuLj3wmj345xpmX
    
     The random password set for the root user at Thu Apr 28 03:43:28 2016 (local time): TtuLj3wmj345xpmX
    

    再次执行:

    [root@localhost xiaoli]# mysql_secure_installation
    NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
            SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!
    
    In order to log into MySQL to secure it, we'll need the current
    password for the root user.  If you've just installed MySQL, and
    you haven't set the root password yet, the password will be blank,
    so you should just press enter here.
    
    Enter current password for root (enter for none): 
    OK, successfully used password, moving on...
    
    Setting the root password ensures that nobody can log into the MySQL
    root user without the proper authorisation.
    
    You already have a root password set, so you can safely answer 'n'.
    (是否要修改root密码)
    Change the root password? [Y/n] y
              New password: 
    Re-enter new password: 
    Password updated successfully!
    Reloading privilege tables..
     ... Success!
    
             By default, a MySQL installation has an anonymous user, allowing anyone
    to log into MySQL without having to have a user account created for
    them.  This is intended only for testing, and to make the installation
    go a bit smoother.  You should remove them before moving into a
    production environment.
    (是否删掉匿名用户?用来测试的果断删除)
    Remove anonymous users? [Y/n] y
     ... Success!
    
    Normally, root should only be allowed to connect from 'localhost'.  This
    ensures that someone cannot guess at the root password from the network.
    (禁止用户远程登录?开发环境安全要求不严格 n,生产环境要求严格 y,我是个严格的人,y)
    Disallow root login remotely? [Y/n] y
     ... Success!
    
    By default, MySQL comes with a database named 'test' that anyone can
    access.  This is also intended only for testing, and should be removed
    before moving into a production environment.
    (是否删掉测试数据库,果断y)
    Remove test database and access to it? [Y/n] y
     - Dropping test database...
     ... Success!
     - Removing privileges on test database...
     ... Success!
    
    Reloading the privilege tables will ensure that all changes made so far
    will take effect immediately.
    (重载权限让权限立即生效?y)
    Reload privilege tables now? [Y/n] y
     ... Success!        
    All done!  If you've completed all of the above steps, your MySQL
    installation should now be secure.
    Thanks for using MySQL!
            Cleaning up...     
    

    安装完毕 !!!

  4. RPM安装方式文件分布

DirectoryContentsof Directory
/usr/binClientprograms and scripts
/usr/sbinThemysqldserver
/var/lib/mysqlLogfiles, databases
/usr/share/infoManualin Info format
/usr/share/manUnixmanual pages
/usr/include/mysqlInclude(header) files
/usr/lib/mysqlLibraries
/usr/share/mysqlMiscellaneoussupport files, including error messages, character set files,sample configuration files, SQL for database installation
/usr/share/sql-benchBenchmarks
  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值