记录安装mysql 5.6的全过程

下载安装包(尝试过使用mysql的yum源去安装--如果你的网络够好的话。。。)

注:我的系统是Centos 7.2的 如下,根据自己的需求去下载

CentOS Linux release 7.2.1511 (Core)
3.10.0-327.el7.x86_64

下载下面的rpm 捆绑包,下载这一个

Centos服务器上安装MySQL依赖包

yum -y install perl perl-devel net-tools

将下载好的捆绑包上传到服务器

解压

[root@WCY mysql56]# ls
MySQL-5.6.41-1.el7.x86_64.rpm-bundle.tar
[root@WCY mysql56]# tar xf MySQL-5.6.41-1.el7.x86_64.rpm-bundle.tar
[root@WCY mysql56]# ls
MySQL-5.6.41-1.el7.x86_64.rpm-bundle.tar MySQL-embedded-5.6.41-1.el7.x86_64.rpm MySQL-shared-compat-5.6.41-1.el7.x86_64.rpm
MySQL-client-5.6.41-1.el7.x86_64.rpm MySQL-server-5.6.41-1.el7.x86_64.rpm MySQL-test-5.6.41-1.el7.x86_64.rpm
MySQL-devel-5.6.41-1.el7.x86_64.rpm MySQL-shared-5.6.41-1.el7.x86_64.rpm

创建MySQL用户与组

useradd -M -s /sbin/nologin mysql

安装

rpm -ivh MySQL-client-5.6.41-1.el7.x86_64.rpm
rpm -ivh MySQL-shared-5.6.41-1.el7.x86_64.rpm
rpm -ivh MySQL-devel-5.6.41-1.el7.x86_64.rpm
rpm -ivh MySQL-shared-compat-5.6.41-1.el7.x86_64.rpm
rpm -ivh MySQL-embedded-5.6.41-1.el7.x86_64.rpm
rpm -ivh MySQL-test-5.6.41-1.el7.x86_64.rpm
rpm -ivh MySQL-server-5.6.41-1.el7.x86_64.rpm

创建mysql配置文件my.cnf

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

初始化MySQL

[root@WCY ~]# /usr/bin/mysql_install_db
FATAL ERROR: please install the following Perl modules before executing /usr/bin/mysql_install_db:
Data::Dumper

报错解决:

[root@WCY ~]# yum install -y perl-Module-Install.noarch

解决完报错别忘了 再执行初始化

启动MySQL

[root@WCY ~]# systemctl start mysql
Job for mysql.service failed because the control process exited with error code. See "systemctl status mysql.service" and "journalctl -xe" for details.

启动报错,查看下

[root@WCY ~]# journalctl -xe
9月 20 21:25:03 WCY.local yum[18450]: Installed: perl-HTTP-Daemon-6.01-7.el7.noarch
9月 20 21:25:03 WCY.local yum[18450]: Installed: perl-HTTP-Negotiate-6.01-5.el7.noarch ································· 9月 20 21:31:18 WCY.local mysql[18635]: Starting MySQL. ERROR! The server quit without updating PID file (/var/lib/mysql/WCY.local.pid).
9月 20 21:31:18 WCY.local systemd[1]: mysql.service: control process exited, code=exited status=1
9月 20 21:31:18 WCY.local systemd[1]: Failed to start LSB: start and stop MySQL.

可以看到

ERROR! The server quit without updating PID file (/var/lib/mysql/WCY.local.pid).

先设置下目录权限

[root@WCY ~]# chown -R mysql:mysql /var/lib/mysql/

再启动

[root@WCY ~]# systemctl start mysql.service
[root@WCY ~]# netstat -anpt | grep mysql
tcp6 0 0 :::3306 :::* LISTEN 18891/mysqld

已启动

设置MySQL密码

[root@WCY ~]# /usr/bin/mysqladmin -u root password 'mima'

‘mima’替换为你要设置的密码

如果你的系统版本是CentOS6.x的

安装完MySQL5.6.x后密码为自动生成的保存在本用户目录下隐藏文件.mysql_secret

[root@Check1 ~]# cat .mysql_secret
# The random password set for the root user at Sat Oct 20 11:37:06 2018 (local time): c5SoTcrXmMYFBMsU

更改root密码

[root@Check1 ~]# mysql -uroot -pc5SoTcrXmMYFBMsU    使用生成的密码登录数据库测试一下
Warning: Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 5.6.41 Copyright (c) 2000, 2018, 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> quit
Bye
[root@Check1 ~]# mysqladmin -uroot -p password '123123' 设置新的密码为123123 回车后输入上面生成的密码
Enter password:
Warning: Using a password on the command line interface can be insecure.
[root@Check1 ~]# mysql -uroot -p123123 用新密码登录
Warning: Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 10
Server version: 5.6.41 MySQL Community Server (GPL) Copyright (c) 2000, 2018, 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 5.6的更多相关文章

  1. Centos6.5下编译安装mysql 5.6

    一:卸载旧版本 使用下面的命令检查是否安装有MySQL Server rpm -qa | grep mysql 有的话通过下面的命令来卸载掉 rpm -e mysql //普通删除模式 rpm -e ...

  2. 在Ubuntu 16.10安装mysql workbench报未安装软件包 libpng12-0错误

    1.安装mysql workbench,提示未安装软件包 libpng12-0 下载了MySQL Workbench 6.3.8   在安装的时候报错: -1ubu1604-amd64.deb 提示: ...

  3. ubuntu安装mysql

    好记性不如烂笔头,记录一下,ubuntu安装mysql的指令. 安装MySQL: sudo apt-get install mysql-server sudo apt-get install mysq ...

  4. Linux1 在Linux(CentOS)上安装MySql详细记录

    前记:  毕业两年了,前两天换了份工作,由以前的传统行业跳到了互联网行业.之前的公司一直在用WinServer2003+Tomcat+SqlServer/Oracle这套部署环境.对于Linux+To ...

  5. PHP安装mysql.so扩展

    在PHP中mysql_connect模块已经逐渐被弃用,我在搭建环境时也没有再安装mysql扩展,但是今天在维护一个老项目时,出现报错 Fatal error: Uncaught Error: Cal ...

  6. 安装MySql for Visual Studio的坑

    阅读目录 问题描述 解决过程 解决方案 总结 回到顶部 问题描述 安装MySql for Visual Studio 一般来说是为了能在VS的服务器数据连接的数据源中能选择MySql类型,如下图: 但 ...

  7. CentOS 7 安装MySQL 5.6遇到的疑难杂症小结

    在一测试服务器(CentOS Linux release 7.2.1511)上安装MySQL 5.6(5.6.19 MySQL Community Server)时遇到下面错误,这个是因为CentOS ...

  8. Mac上安装MySQL记录

    下载最新的MySQL社区版 官方下载地址:http://dev.mysql.com/downloads/mysql/ 为了安装更方便,建议下载dmg安装包. 最新的版本是5.7.9. 安装MySQL ...

  9. linux 安装mysql数据库——yum安装法

    mysql数据库有多种安装方式,本文只介绍在Linux服务器上最实用.最快捷的mysql server安装方法.一.Linux服务器yum安装(CentOS6.3 64位) 所有在服务器上执行的命令, ...

  10. 二进制包安装MySQL数据库

    1.1二进制包安装MySQL数据库 1.1.1 安装前准备(规范) [root@Mysql_server ~]# mkdir -p /home/zhurui/tools ##创建指定工具包存放路径 [ ...

随机推荐

  1. webpack中引入的path[require('path')]是node.js内置的package,用来处理路径的。

    http://www.runoob.com/nodejs/nodejs-path-module.html

  2. iOS 7.1 UITapGestureRecognizer 不好用的解决办法

    UITapGestureRecognizer *tap3 = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(o ...

  3. JavaScript-烂笔头

    JavaScript 对大小写敏感 注释单行用:// 注释多汗用:/* */ 声明变量:var 变量名 (未使用值来声明的变量,值为undefined) JavaScript 变量均为对象 可以使用关 ...

  4. 学习使用turtlebot2——调试Hokuyo激光雷达(型号UST-10LX)

    目标 在ROS上调试使用Hokuyo激光雷达传感器 配置情况     电脑使用Ubuntu 14.04版本,ROS为 Indigo,激光雷达为Hokuyo(型号UST-10LX,网口型接口)   如果 ...

  5. 巨蟒python全栈开发-第18天 核能来袭-类和类之间的关系

    一.今日主要内容: 1.类与类之间的关系 在我们的世界中事物和事物之间总会有一些联系. 在面向对象中,类和类之间也可以产生相关的关系 (1)依赖关系 执行某个动作(方法)的时候,需要xxx来帮助你完成 ...

  6. KMS Event LOG

    The 12290 event entry gives a significant amount of information that can be used to figure out what ...

  7. visual studio 下 C++生成dump文件

    1 lib配置 项目-->属性-->配置属性-->链接器-->输入-->附加依赖项 增加dbghelp.lib 2 头文件 #include <imagehlp.h ...

  8. 【转】清空mysql一个库中的所有表的数据

    方法1:重建库和表 用mysqldump --no-data把建表SQL导出来,然后drop database再create database,执行一下导出的SQL文件: 方法2:生成清空所有表的SQ ...

  9. unix_timestamp 和 from_unixtime 时间戳函数 区别

    1.unix_timestamp 将时间转化为时间戳.(date 类型数据转换成 timestamp 形式整数) 没传时间参数则取当前时间的时间戳 mysql> select unix_time ...

  10. 洛谷 [BJOI2012]最多的方案

    洛谷 这题是旁边同学介绍的,听他说记忆化搜索可以过... 不过我还是老老实实的想\(dp\)吧- 先看看数据范围,\(n\leq10^{18}\)相当于\(n \leq fib[86]\). 以前打\ ...