CentOS 7 安装 mysql-5.7.14

在centos7上安装 路上遇过各种坑 把在centos7正确安装mysql-5.7.14分享一下

1. CentOs7 默认的数据库为MariaDB,先卸载MariaDB,否则安装mysql,引起冲突

rpm -qa  mariadb
rpm -e --nodeps  mariadb

2. 准备好工作环境 mkdir /application #此目录用来存放需要另外存放的应用程序安装目录

3. 创建mysql用户组与用户,并下载安装包

groupadd mysql
useradd -g mysql  -s /sbin/nologin  -M mysql 

id mysql
uid=1001(mysql) gid=1001(mysql) groups=1001(mysql)

PS.如果已经存在提示错误了  可以先删除

cd /application  下载安装包,
我这里安装的是,mysql-5.7.16.tar.gz
wget -c http://192.168.42.26/install_package/down/mysql-5.7.16.tar.gz

4. 解压并安装mysql

tar xf mysql-5.7.16.tar.gz 
ls
mysql-5.7.16-linux-glibc2.5-x86_64  mysql-5.7.16.tar.gz  
mv mysql-5.7.16-linux-glibc2.5-x86_64  mysql-5.7.16  


cd mysql 
[root@test mysql]# ls
bin  COPYING  docs  include  lib  man  mysql  README  share  support-files

我要把整个mysql都安装在/application目录里,下面是初始化mysql mysql5.7之前使用./bin/mysql_install_db –user=mysql –basedir=[install dir] –datadir=[data dir] 命令,但是 5.7以后已经放弃mysql_install_db,使用新的mysqld

[root@test mysql-5.7.16]#  ./bin/mysqld --user=mysql --basedir=/application/mysql-5.7.16/ --datadir=/application/mysql-5.7.16/data  --initialize
2017-05-07T02:11:06.891174Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2017-05-07T02:11:09.101667Z 0 [Warning] InnoDB: New log files created, LSN=45790
2017-05-07T02:11:09.572053Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.
2017-05-07T02:11:09.795916Z 0 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: 6fc38e6f-32ca-11e7-9717-000c29c8721f.
2017-05-07T02:11:09.812070Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened.
2017-05-07T02:11:09.827010Z 1 [Note] A temporary password is generated for root@localhost: iRctOTz9sr--

特别要注意最后的密码,是进入mysql的密码

PS.如果你的data文件有内容 会报

[ERROR] --initialize specified but the data directory has files in it. Aborting.

这个错误 正确的是把data文件清空 rm -rf *

mv /etc/my.cnf /etc/my.cnf.back.old
cd support-files/ 
cp my-default.cnf /etc/my.cnf
cp mysql.server  /etc/init.d/mysqld

[root@test application]# ln -s mysql-5.7.16 mysql
[root@test application]# ls
mysql  mysql-5.7.16  mysql-5.7.16.tar.gz  svndata  svnpasswd


[root@test support-files]# service mysqld start
/etc/init.d/mysqld: line 251: my_print_defaults: command not found
/etc/init.d/mysqld: line 271: cd: /usr/local/mysql: No such file or directory
Starting MySQL ERROR! Couldn't find MySQL server (/usr/local/mysql/bin/mysqld_safe)

因为默认的目录是/usr/local/mysql 我们换了别的目录 我们修改 vim /etc/my.cnf 

basedir=/application/mysql
datadir=/application/mysql/data
整体配置如下:
# For advice on how to change settings please see
# http://dev.mysql.com/doc/refman/5.7/en/server-configuration-defaults.html
# *** DO NOT EDIT THIS FILE. It's a template which will be copied to the
# *** default location during install, and will be replaced if you
# *** upgrade to a newer version of MySQL.

[mysqld]

# Remove leading # and set to the amount of RAM for the most important data
# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
# innodb_buffer_pool_size = 128M

# Remove leading # to turn on a very important data integrity option: logging
# changes to the binary log between backups.
# log_bin

# These are commonly set, remove the # and set as required.
basedir = /application/mysql ######
datadir = /application/mysql/data ###
port = 3306 ###
# server_id = .....
socket =/var/lib/mysql/mysql.sock ###


# Remove leading # to set options mainly useful for reporting servers.
# The server defaults are faster for transactions and fast SELECTs.
# Adjust sizes as needed, experiment to find the optimal values.
# join_buffer_size = 128M
# sort_buffer_size = 2M
# read_rnd_buffer_size = 2M 

character_set_server=utf8 ###
init_connect='SET NAMES utf8' ###

sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES


[client]
default-character-set=utf8
socket =/var/lib/mysql/mysql.sock

进行修改成现在的目录 之后 ESC , :号后wq回车 保存退出

5. 启动MySQL

[root@test application]# service mysqld start
Starting MySQL.... SUCCESS!

6.加入开机自启动

[root@test application]# systemctl is-enabled mysqld
mysqld.service is not a native service, redirecting to /sbin/chkconfig.
Executing /sbin/chkconfig mysqld --level=5
disabled

systemctl enable  mysqld


[root@test application]# systemctl is-enabled mysqld
mysqld.service is not a native service, redirecting to /sbin/chkconfig.
Executing /sbin/chkconfig mysqld --level=5
enabled

7. 添加环境变量vim /etc/profile.d/mysql.d

export  PATH=$PATH:/application/mysql/bin

logout  退出重新登录

8.更改msyql密码

[root@test ~]# mysql -u root -p
Enter password: [输入安装时的密码]
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.16

Copyright (c) 2000, 2016, 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> use mysql 
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

执行任何命令都提示要更改密码

set password for 'root'@'localhost'=password('root'); ##输入这条命令即可

我们也可以通过mysqladmin来改密码 mysqladmin -u root -h localhost password ‘root’ -p ##按照提示操作即可,需要输入旧密码

重启mysql

9.如果我们想直接通过mysql命令进入mysql,又必须需要密码,怎么办,我们可以这样做,在root家目录创建 隐藏文件.my.cnf,编辑如下,运行mysql命令即可

[client]
default-character-set=utf8
socket =/var/lib/mysql/mysql.sock
user=root
host=localhost
password=root

运行mysql命令,直接进入

[root@test ~]# mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.16 MySQL Community Server (GPL)

Copyright (c) 2000, 2016, 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的安装已经完成

原创文章,作者:srayban,如若转载,请注明出处:http://www.178linux.com/74880

(2)
sraybansrayban
上一篇 2017-05-07
下一篇 2017-05-07

相关推荐

  • shell中的if else语句与文件查找find浅析

    shell中的if else语句与文件查找find浅析    上篇文章中我们讲述了shell脚本编程的初步入门,其中讲到了shell编程中的顺序执行,顺序执行时一种简单的小脚本,如果在编辑脚本的时候遇到要做出条件判断执行的时候要怎么办呢?我们学习过if之后你会发现这会很简单。if 语句通过关系运算符判断表达式的真假来决定执行哪个分支。 S…

    Linux干货 2016-08-16
  • N25-第一周 总结

    linux bassic The first week of blogging 概要 计算机与操作系统、linux发行版及他们之间联系与区别、Linux的哲学思想、linux系统上命令使用格式及基础命令介绍、linux命令帮助说明、FHS 一、计算机与操作系统 什么是计算机? 电子计算机(computer),亦称电脑,是一种利用电子学原理,根据一系列指令对数…

    Linux干货 2016-12-04
  • Linux系统启动过程中grub故障与修复(一)

    GRUB 是引导装入器 — 它负责装入内核并引导 Linux 系统。GRUB 可以引导多种操作系统,如Linux、 DOS、 Windows 。 GRUB共分为三个阶段:stage1主要负责BIOS和GRUB之间的交接,载入存放于各个分区中的开机文件;stage1.5是连接stage1和stage2之间的通道,起着过渡的作用,负责识别stage2所在/bo…

    2017-09-03
  • 高级文件系统管理

    高级文件系统管理 本章内容  设定文件系统配额  设定和管理软RAID设备  配置逻辑卷  设定LVM快照  btrfs文件系统 配置配额系统 综述 • 在内核中执行 • 以文件系统为单位启用 • 对不同组或者用户的策略不同    &nb…

    Linux干货 2016-09-01
  • shell脚本编程之数组

    bash仅支持一维数组,类型声明: declare -i    : 表示数值 declare -a  :表示普通数组(默认,可不用声明类型) declare -A :表示关联数组(必须声明类型,bash需4.0以上版本才支持,可通过bash –version查看版本) 一、普通数组(用数字为下标) 1.1数组赋值(修…

    Linux干货 2015-08-24
  • Linux入门 及Basics基础

    二进制: 0, 1 5大部件: CPU:计算器、控制器 Memory: 存储器(内存) 编址存储单元阵列 输入设备/输出设备:I/O 键盘: VGA: 辅助存储器 网卡 编程: 低级语言:汇编(微码编程) 高级语言:JAVA, C++, C, Scala, Python 转件: 时序复用: 计算机:硬件+软件 硬件:开发,制造 软件:编写,编译 OS: Op…

    Linux干货 2016-08-08