CentOs 7 Mysql单机搭建攻略

哈喽大家好,我是热心的大肚皮

1、下载mysql安装包,版本为5.6.26 地址:

http://dev.mysql.com/get/Downloads/MySQL-5.6/MySQL-5.6.26-1.linux_glibc2.5.x86_64.rpm-bundle.tar

2、将下载后的包上传到安装好CentOS虚拟机上去,然后将包解压出来

[root@locahost]# tar xvf MySQL-5.6.26-1.linux_glibc2.5.x86_64.rpm-bundle.tar 
MySQL-server-5.6.26-1.linux_glibc2.5.x86_64.rpm
MySQL-shared-5.6.26-1.linux_glibc2.5.x86_64.rpm
MySQL-devel-5.6.26-1.linux_glibc2.5.x86_64.rpm
MySQL-client-5.6.26-1.linux_glibc2.5.x86_64.rpm
MySQL-shared-compat-5.6.26-1.linux_glibc2.5.x86_64.rpm
MySQL-embedded-5.6.26-1.linux_glibc2.5.x86_64.rpm
MySQL-test-5.6.26-1.linux_glibc2.5.x86_64.rpm

3、先看下当前服务器是否含有默认mariadb,cenos7貌似默认自带了mariadb,要先将其卸载掉在进行安装,如果grep没有的话则略过;

[root@localhost ]# rpm -qa | grep mariadb
mariadb-libs-5.5.41-2.el7_0.x86_64
[root@localhost ]# rpm -e --nodeps mariadb-libs-5.5.41-2.el7_0.x86_64

4、开始安装(解压出来有很多rpm包,可以选择一次性全部安装,也可以只安装server和client),这里进行全部安装

[root@localhost~]# rpm -ivh MySQL-*.rpm
warning: MySQL-client-5.6.26-1.linux_glibc2.5.x86_64.rpm: Header V3 DSA/SHA1 Signature, key ID 5072e1f5: NOKEY
Preparing...                          ################################# [100%]
Updating / installing...
   1:MySQL-devel-5.6.26-1.linux_glibc2################################# [ 14%]
   2:MySQL-client-5.6.26-1.linux_glibc################################# [ 29%]
   3:MySQL-test-5.6.26-1.linux_glibc2.################################# [ 43%]
   4:MySQL-embedded-5.6.26-1.linux_gli################################# [ 57%]
   5:MySQL-shared-compat-5.6.26-1.linu################################# [ 71%]
   6:MySQL-shared-5.6.26-1.linux_glibc################################# [ 86%]
   7:MySQL-server-5.6.26-1.linux_glibc################################# [100%]
warning: user mysql does not exist - using root
warning: group mysql does not exist - using root
FATAL ERROR: please install the following Perl modules before executing /usr/bin/mysql_install_db:
Data::Dumper

这里报了两个警告和一个错误,其中警告是提示本机不存在mysql账户和mysql用户组
错误则是提示初始化数据错误
这里我们建立mysql用户,提示都已经存在了,看来在上面警告的时候就已经帮我们安装好了,也可以在开始安装之前就提前安装好,这样就不会警告了

[root@localhost ~]# groupadd mysql
groupadd: group 'mysql' already exists
[root@localhost ~]# useradd -r -g mysql mysql
useradd: user 'mysql' already exists

解决:FATAL ERROR: please install the following Perl modules before executing /usr/bin/mysql_install_db:

Data::Dumper

这个错误暂时不知道什么,不过既然提示安装perl modules,那就进行安装,安装好了在进行初始化

[root@localhost ~]# yum install -y perl-Module-Install.noarch
Loaded plugins: fastestmirror, langpacks
base

5、修改配置文件

修改配置文件路径

[root@localhost~]# cp /usr/share/mysql/my-default.cnf /etc/my.cnf
在配置文件中增加一下配置项
[root@localhost~]# vim /etc/my.cnf
[mysqld]
default-storage-engine = innodb
innodb_file_per_table
collation-server = utf8_general_ci
init-connect = 'SET NAMES utf8'
character-set-server = utf8

6、初始化数据库,在上面解决掉”FATAL ERROR”即可进行初始化了

[root@localhost~]# /usr/bin/mysql_install_db
Installing MySQL system tables...2016-09-24 16:28:49 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2016-09-24 16:28:49 0 [Note] /usr/sbin/mysqld (mysqld 5.6.26) starting as process 7938 ...
2016-09-24 16:28:49 7938 [Note] InnoDB: Using atomics to ref count buffer pool pages
...中间省略
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

WARNING: Default config file /etc/my.cnf exists on the system
This file will be read by default by the MySQL server
If you do not want to use this, either remove it, or use the
--defaults-file argument to mysqld_safe when starting the server

7、启动mysql服务

[root@localhost~]# service mysql start
Starting MySQL.. ERROR! The server quit without updating PID file (/var/lib/mysql/xxx.pid).
进入到mysql所在的目录可以看到一个.err结尾的问价可以看到具体的错误信息
[root@hadoop3 ~]# cd /var/lib/mysql/
打开之前前几行就看到错误信息
160924 16:44:34 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
2016-09-24 16:44:34 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2016-09-24 16:44:34 0 [Note] /usr/sbin/mysqld (mysqld 5.6.26) starting as process 9816 ...
2016-09-24 16:44:34 9816 [Note] Plugin 'FEDERATED' is disabled.
^G/usr/sbin/mysqld: Can't find file: './mysql/plugin.frm' (errno: 13 - Permission denied)
2016-09-24 16:44:34 9816 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.
2016-09-24 16:44:34 9816 [Note] InnoDB: Using atomics to ref count buffer pool pages...
有可能是权限的关系进入到/var/lib/mysql/mysql下把所有文件改为mysql用户的所属,再次启动成功

[root@localhost mysql]# chown mysql *
[root@localhost mysql]# service mysql start
Starting MySQL. SUCCESS! 

设置开机启动

[root@localhost mysql]# chkconfig mysql on

8、登录mysql并且修改密码,首次登录没有密码

[root@localhost~]# mysql -uroot
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.6.26 MySQL Community Server (GPL)


Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.


Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.


Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.


mysql> 
mysql> select host,user,password from user;
+-----------+------+----------+
| host      | user | password |
+-----------+------+----------+
| localhost | root |          |
| 127.0.0.1 | root |          |
| ::1       | root |          |
| localhost |      |          |
+-----------+------+----------+
6 rows in set (0.00 sec)

修改用户密码

mysql> update user set password=password("123456") where user='root';
Query OK, 4 rows affected (0.00 sec)
Rows matched: 4  Changed: 4  Warnings: 0
mysql>  flush privileges;
Query OK, 0 rows affected (0.00 sec)

退出重新登录

[root@localhost~]# mysql -uroot -p
Enter password:  [输入刚刚set的密码即可]

9、设置mysql允许远程登录

mysql> update user set host='%' where user='root' and host='localhost';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1  Changed: 1  Warnings: 0


mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

打开本地的navicat for mysql,然后添加新的连接,输入用户名root和刚刚设置的密码,其中ip填写虚拟机地址,然后连接测试连接成功!!!!

重要提示:一定要开启3306的端口访问权限

友情提示

1、table ‘mysql.host’不存在的原因是因为新安装的mysql服务后,一般需要执行数据库初始化操作 ,从而生成与权限相关的表,执行命令如下:

 /usr/bin/mysql_install_db --user=mysql

2、忘记root密码

1、先 停止mysql   /etc/init.d/mysql stop
2、编辑配置文件  vim /etc/my.cnf
找到 [mysqld]这个模块:
在最后面添加一段代码
skip-grant-tables   ##忽略mysql权限问题,直接登录
3、/etc/init.d/mysql start 再启动
4、直接进入mysql    [root@web1 ~]# mysql
use mysql数据库重置密码:
update user set password=password("123456") where user="root";
然后刷新
flush privileges;
若遇到ERROR 1820 (HY000): You must SET PASSWORD before executing this statement就直接再设置一次密码SET PASSWORD = PASSWORD('Lxtd808#2018');
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,711评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,079评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,194评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,089评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,197评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,306评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,338评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,119评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,541评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,846评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,014评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,694评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,322评论 3 318
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,026评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,257评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,863评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,895评论 2 351

推荐阅读更多精彩内容