zoukankan      html  css  js  c++  java
  • 阿里云 centos7.3 yum安装mysql5.X记录

    提示:因为centos7.2默认安装了mariadb-libs,所以先要卸载掉:

    #查看是否安装mariadb
    
    rpm -qa | grep mariadb
    # 卸载mariadb(注意检查依赖,判断是否可以强制删除)
    
    rpm -e --nodeps mariadb-libs-5.5.44-2.el7.centos.x86_64

    OK,

    1、开始,Linux系统自带的repo是不会自动更新每个软件的最新版本(基本都是比较靠后的稳定版),所以无法通过yum方式安装MySQL的高级版本。所以我们需要先安装带有当前可用的mysql5系列社区版资源的rpm包。

    ##安装rpm包
    [root@brad ~]# rpm -Uvh http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm

    2、查看当前可用的mysql安装资源:

    [root@brad ~]# yum repolist enabled | grep "mysql.*-community.*"

    从上面的列表可以看出, mysql56-community/x86_64 和 MySQL 5.6 Community Server 可以使用。

    因此,我们就可以直接用yum方式安装了MySQL5.6版本了。

    [root@brad ~]# yum -y install mysql-community-server

    3、MySQL安装完成后,进行相关配置。安装完MySQL后,需要进行一些基础配置工作:

    #######安装成功后,将其加入开机启动
    [root@brad ~]# systemctl enable mysqld
    
    #######启动mysql服务进程
    [root@brad ~]# systemctl start mysqld
    
    #######配置mysql(设置密码等)
    [root@brad ~]# 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.
    
    Set root password? [Y/n] y                  [设置root用户密码]
    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.
    
    Disallow root login remotely? [Y/n] y       [禁止root远程登录]
     ... 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.
    
    Remove test database and access to it? [Y/n] y          [删除test数据库]
     - Dropping test database...
    ERROR 1008 (HY000) at line 1: Can't drop database 'test'; database doesn't exist
     ... Failed!  Not critical, keep moving...
     - Removing privileges on test database...
     ... Success!
    
    Reloading the privilege tables will ensure that all changes made so far
    will take effect immediately.
    
    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、安装mysql-python以及一些简单的错误处理:

    #在虚拟环境下安装mysql-pyhon
    pip install mysql-python

    一些错误处理:

    #安装依赖
    yum install kernel-devel libxslt-devel libffi-devel python-devel mysql-devel zlib-devel openssl-devel -y
  • 相关阅读:
    java数组去重
    XMLBeans简记
    【转】JAVA中的多线程问题(高级面试中经常遇到)
    【转】马士兵_JAVA自学之路
    【摘】加载页面:您的网站如何导致访问者感染恶意软件
    iBatisNet学习笔记三:QuickStart
    知识点滴:持久层,DAO,API,DAL,BLL,DLL,csproj,sln
    新知识了解笔记:关于Ibatis,ORM等
    iBatisNet学习笔记一:配置
    Google Map API
  • 原文地址:https://www.cnblogs.com/xz1024/p/7591680.html
Copyright © 2011-2022 走看看