CentOS7安装MySQL

--下载mysql

http://mirrors.sohu.com/mysql/MySQL-5.6/

http://mirrors.sohu.com/mysql/MySQL-5.6/MySQL-5.6.24-1.linux_glibc2.5.x86_64.rpm-bundle.tar





一。准备工作

--下载后文件

MySQL-5.6.24-1.linux_glibc2.5.x86_64.rpm-bundle.tar





--新建目录

mkdir /home/www/tar

mkdir /home/www/rpm





--上传文件至rpm包下解压

tar -xvf MySQL-5.6.24-1.linux_glibc2.5.x86_64.rpm-bundle.tar

...

MySQL-5.6.24-1.linux_glibc2.5.x86_64.rpm-bundle.tar

MySQL-client-5.6.24-1.linux_glibc2.5.x86_64.rpm

MySQL-devel-5.6.24-1.linux_glibc2.5.x86_64.rpm

MySQL-embedded-5.6.24-1.linux_glibc2.5.x86_64.rpm

MySQL-server-5.6.24-1.linux_glibc2.5.x86_64.rpm

MySQL-shared-5.6.24-1.linux_glibc2.5.x86_64.rpm

MySQL-shared-compat-5.6.24-1.linux_glibc2.5.x86_64.rpm

MySQL-test-5.6.24-1.linux_glibc2.5.x86_64.rpm



--把tar文件移至/home/www/tar

mv MySQL-5.6.24-1.linux_glibc2.5.x86_64.rpm-bundle.tar /home/www/tar





二、開始安装

--開始安装(当中。v表示显示具体安装信息,h表示显示用#表示安装进度)

rpm -ivh MySQL-*





--看到例如以下信息已成功安装

A RANDOM PASSWORD HAS BEEN SET FOR THE MySQL root USER !

You will find that password in '/root/.mysql_secret'.

...

...

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将随机生成一个root用户的password,放在/root/.mysql_secret 文件里





--查看port(默认3306)

[root@localhost init.d]# netstat -nat

Active Internet connections (servers and established)

Proto Recv-Q Send-Q Local Address           Foreign Address         State      

tcp        0      0 0.0.0.0:3690            0.0.0.0:*               LISTEN     

tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN     

tcp        0      0 192.168.1.110:22        192.168.1.119:50608     ESTABLISHED

tcp6       0      0 :::3306                 :::*                    LISTEN     

tcp6       0      0 :::22                   :::*                    LISTEN





三、安装位置

用RPM进行安装的时候,MySQL下的子文件夹被分散开,分别放在了下面几个文件夹下:

/etc/logrotate.d/mysql

/etc/rc.d/init.d/mysql // mysql启动配置脚本,当中仅仅有一个叫mysql的可运行文件 与mysql有关

/var/lib/mysql // Mysql中的数据库存放文件夹

/var/lock/subsys/mysql

/usr/lib/mysql                  //  该目录下是mysql链接库

/usr/include/mysql //  mysql 头文件

/usr/share/mysql //  mysql 安装文件夹

/usr/bin // 当中有mysql的多个可运行程序,如mysql、mysql_config_editor、mysqlcheck、mysqladmin等





四、mysql停止与重新启动

/etc/rc.d/init.d/mysql restart

/etc/rc.d/init.d/mysql stop

/etc/rc.d/init.d/mysql start





五、错误排查

[root@localhost rpm]# mysql -uroot

--出现故障

(1)报错:ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

--停止服务

/etc/rc.d/init.d/mysql stop

--安全模式进入mysql

[root@localhost rpm]# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &

[root@localhost rpm]# mysql -u root mysql

--更改username

mysql> UPDATE user SET Password=PASSWORD('root') where User='root';

mysql> FLUSH PRIVILEGES;

mysql> quit

[root@localhost rpm]# mysql -uroot -p

mysql> show databases;

(2)报错:ERROR 1820 (HY000): You must SET PASSWORD before executing this statement

--又一次设置rootpassword

mysql> SET PASSWORD = PASSWORD('root');

Query OK, 0 rows affected (0.00 sec)

mysql> show databases;

+--------------------+

| Database           |

+--------------------+

| information_schema |

| mysql              |

| performance_schema |

| test               |

+--------------------+

4 rows in set (0.00 sec)





(3)navicat报错:Host '192.168.1.*' is not allowed to connect to this MySQL server

原因:mysql下user表中不同意外部链接

--暂时把port增加防火墙

firewall-cmd --permanent --zone=public --add-port=3306/tcp

systemctl restart firewalld.service

--更改host

[root@localhost rpm]# mysql -uroot -p

mysql> use mysql

mysql> select host, user from user;

+-----------------------+------+

| host                  | user |

+-----------------------+------+

| 127.0.0.1             | root |

| ::1                   | root |

| localhost             | root |

| localhost.localdomain | root |

+-----------------------+------+

4 rows in set (0.00 sec)

--更改localhost为%

mysql> update user set host = '%' where host='localhost';

Query OK, 1 row affected (0.00 sec)

Rows matched: 1  Changed: 1  Warnings: 0



mysql> select host, user from user;

+-----------------------+------+

| host                  | user |

+-----------------------+------+

| %                     | root |

| 127.0.0.1             | root |

| ::1                   | root |

| localhost.localdomain | root |

+-----------------------+------+

4 rows in set (0.00 sec)

--重新启动mysql服务

/etc/rc.d/init.d/mysql restart



至此mysql已能够正常使用!





六、开机启动

使用命令:sbin/chkconfig --list,查看启动项

使用命令:sbin/chkconfig --add mysql,将mysql加入到开机启动项中:

使用命令:sbin/chkconfig --del mysql,将mysql从启动项删除:

版权声明:本文博客原创文章,博客,未经同意,不得转载。

CentOS7下一个mysql安装的更多相关文章

  1. CentOS7 下的mysql安装与配置

    之前虽然也安装过多次mysql,但每次都会遇到各种小问题,这次记录下来,以备后查. 首先是下载与安装 # wget http://dev.mysql.com/get/mysql-community-r ...

  2. centos7下使用yum安装mysql

    CentOS7的yum源中默认好像是没有mysql的.为了解决这个问题,我们要先下载mysql的repo源. 1. 下载mysql的repo源 wget http://repo.mysql.com/m ...

  3. Centos7 下的SVN安装与配置

    Centos7 下的SVN安装与配置 1.关闭防火墙 临时关闭防火墙 systemctl stop firewalld 永久防火墙开机自关闭 systemctl disable firewalld 临 ...

  4. CentOS7 下源码安装 python3

    CentOS 7 下源码安装 python3   在CentOS7下,默认安装的是python2.7:为满足项目要求,安装python3 的方法如下:   1. 首先安装python3.6可能使用的依 ...

  5. CentOS7下NFS服务安装及配置固定端口

    CentOS7下NFS服务安装及配置 系统环境:CentOS Linux release 7.4.1708 (Core) 3.10.0-693.el7.x86_64 软件版本:nfs-utils-1. ...

  6. [转]Centos7下caffe的安装

    Centos7下caffe的安装 原文地址:http://blog.csdn.net/s2392735818/article/details/49796017   版权声明:本文为博主原创文章,未经博 ...

  7. Memcahce(MC)系列(两)Linux下一个Memcache安装

    Linux下一个memcache安装 memcache是高性能.分布式的内存对象缓存系统,用于在动态应用中降低数据库负载.提升訪问速度.眼下用memcache解决互联网上的大用户读取是很流行的一种使用 ...

  8. Linux 下一个 Mysql error 2002 错误解决

    Linux 下一个 Mysql error 2002 错误解决     首先查看 /etc/rc.d/init.d/mysqld status 查看mysql它已开始.     假设启动的的话,先将数 ...

  9. centos7下搜狗输入法的安装教程

    相信用过centos自带的输入法的朋友都会感叹这也实在是太难用了吧,使用拼音打出来的词总是不能在前几个匹配到,即使是一些常用词也是如此,简直无法忍受跟个zz似的.吐槽完了,这里给出centos7下搜狗 ...

随机推荐

  1. Android中特殊图形的生成样例

    import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.Color; impor ...

  2. Struts 2.x仍然明显落后于时代。 Struts 2.x这一类老牌Web MVC开发框架仅能用于开发瘦客户端应用,无法用来开发对于交互体验要求更高的应用。

    后来我在工作中陆续使用过Struts 1.x和Struts 2.x.我曾经把一个开源的基于Struts 1.x的自助式广告联盟应用移植到Spring MVC,还基于Struts 2.x做过网站开发.S ...

  3. poj3177(边双连通分量+缩点)

    传送门:Redundant Paths 题意:有n个牧场,Bessie 要从一个牧场到另一个牧场,要求至少要有2条独立的路可以走.现已有m条路,求至少要新建多少条路,使得任何两个牧场之间至少有两条独立 ...

  4. swift-switch使用方法

    // Playground - noun: a place where people can play import UIKit //--------------------------------- ...

  5. 对Kalman(卡尔曼)滤波器的理解

    1.简单介绍(Brief Introduction) 在学习卡尔曼滤波器之前,首先看看为什么叫"卡尔曼". 跟其它著名的理论(比如傅立叶变换.泰勒级数等等)一样.卡尔曼也是一个人的 ...

  6. c# Unicode字符串的解码

    前两天工作中遇到个奇怪的问题,一个unicode字符串(即“\uXXXX”形式)变量,调用HttpUtility.UrlDecode解码过后,还是原样,要么就是乱码状态.无奈之下只能自己写一个解码函数 ...

  7. bzoj(矩阵快速幂)

    题意:定义Concatenate(1,N)=1234567……n.比如Concatenate(1,13)=12345678910111213.给定n和m,求Concatenate(1,n)%m. (1 ...

  8. MapReduce 异常 LongWritable cannot be cast to Text

    有一个txt文件,内容格公式是这样的: 深圳订做T恤 5729944 深圳厂家t恤批发 5729945 深圳定做文化衫 5729944 文化衫厂家 5729944 订做文化衫 5729944 深圳t恤 ...

  9. 关于Platinum库的MediaRender具体C++代码实现探讨

    接上篇博文 NDK下 将Platinum SDK 编译成so库 (android - upnp) 讲述了如何利用该代码库编译给android程序调用的so库,其中也提到了,在使用sample-upnp ...

  10. MySQLdb 连接Mysql 数据库出错解决

      #coding=utf-8 import MySQLdb if __name__ == "__main__": db = MySQLdb.connect(host=<sp ...