centos 7二进制安装mysql5.7.26

一、环境准备

1.1 关闭防火墙

#停止防火墙

systemctl stop firewalld.service

#禁止firewall开机启动

systemctl disable firewalld.service

#查看默认防火墙状态

firewall-cmd--state

1.2 安装必备软件

#更新软件包

yum -y update

#安装上传下载lszrz

yum -y install lszrz

#安装wget

yum -y install wget




二、安装mysql过程

1.1 检查是否安装MySQL,如果安装 卸载之


rpm -qa |grep mysql

yum  remove mysql*

1.2 检查是否安装MariaDB,如果安装 卸载之(重要)

rpm -qa |grep mariadb

yum remove mariadb*

1.3 wget下载mysql5.7.26

#建立目录用来放需要安装的软件(自己习惯来建目录)

mkdir -p /app

#下载    

wget https://cdn.mysql.com//Downloads/MySQL-5.7/mysql-5.7.26-linux-glibc2.12-x86_64.tar.gz

有点慢,可以到官网下载,在rz  -y上传

1.4  解压并且改名为mysql

[root@mysql app]# ls

mysql-5.7.26-linux-glibc2.12-x86_64.tar.gz

[root@mysql app]# tar -xzvf mysql-5.7.26-linux-glibc2.12-x86_64.tar.gz

[root@mysql app]# mv mysql-5.7.26-linux-glibc2.12-x86_64/ mysql

1.5 修改环境变量

[root@mysql app]# vi /etc/profile

#在最后添加即可

exportPATH=/app/mysql/bin:$PATH

#生效

[root@mysql app]# source /etc/profile

1.6  建立mysql用户和组

useradd mysql

1.7 创建相关目录并修改权限

[root@mysql app]# mkdir /data/mysql -p

[root@mysql app]# chown -R mysql.mysql /app/*

[root@mysql app]# chown -R mysql.mysql /data/*


1.8 初始化数据库

[root@mysql mysql]# rm -rf /data/mysql/*

[root@mysql mysql]# mysqld --initialize-insecure --user=mysql --basedir=/app/mysql --datadir=/data/mysql

2019-08-20T03:29:54.126839Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).

2019-08-20T03:29:55.345568Z 0 [Warning] InnoDB: New log files created, LSN=45790

2019-08-20T03:29:55.536508Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.

2019-08-20T03:29:55.617830Z 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: c77fff90-c2fa-11e9-bb4a-080027383c74.

2019-08-20T03:29:55.624489Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened.

2019-08-20T03:29:55.627494Z 1 [Warning] root@localhost is created with an empty password ! Please consider switching off the --initialize-insecure option.

1.9 修改添加配置文件my.cnf

[root@mysql tmp]# vi /etc/my.cnf

[client]

port = 3306

socket = /tmp/mysql.sock

[mysqld]

user=mysql

basedir=/app/mysql

datadir=/data/mysql

server_id=1

port=3306

socket=/tmp/mysql.sock

tmpdir  = /tmp

skip_name_resolve = 1

character-set-server = utf8mb4

collation-server = utf8mb4_general_ci

init_connect='SET NAMES utf8mb4'

lower_case_table_names = 1

max_connections = 400

max_connect_errors = 1000

interactive_timeout = 1800

wait_timeout = 1800

tmp_table_size = 134217728

max_heap_table_size = 134217728

log_error = /tmp/error.log

[mysql]

socket=/tmp/mysql.sock

prompt=3306 [\\d]>

1.10 使用systemd管理mysql

[root@mysql mysql]# vi /etc/systemd/system/mysqld.service

[Unit]

Description=MySQL Server

Documentation=man:mysqld(8)

Documentation=http://dev.mysql.com/doc/refman/en/using-systemd.html

After=network.target

After=syslog.target

[Install]

WantedBy=multi-user.target

[Service]

User=mysql

Group=mysql

ExecStart=/app/mysql/bin/mysqld --defaults-file=/etc/my.cnf

LimitNOFILE = 5000

systemctl start/stop/restart/status mysqld

1.11 简单使用

#直接mysql命令进入(此时密码为空)

[root@mysql mysql]# mysql

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 3

Server version: 5.7.26 MySQL Community Server (GPL)

Copyright (c) 2000, 2019, 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.

#用户信息  descmysql.user;

5.6版本:

select user,password,hostfrommysql.user;

5.7中用户基本信息

3306 [(none)]>select user,authentication_string,host from mysql.user;

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

| user          | authentication_string                    | host      |

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

| root          |                                          | localhost |

| mysql.session | *THISISNOTAVALIDPASSWORDTHATCANBEUSEDHERE | localhost |

| mysql.sys    | *THISISNOTAVALIDPASSWORDTHATCANBEUSEDHERE | localhost |

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

3 rows in set (0.00 sec)

#修改密码

[root@mysql mysql]# mysqladmin -uroot -p password '*******';

Enter password:

mysqladmin: [Warning] Using a password on the command line interface can be insecure.

Warning: Since password will be sent to server in plain text, use ssl connection to ensure password safety

#查看连接线程情况

3306 [(none)]>show processlist;

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

| Id | User | Host      | db  | Command | Time | State    | Info            |

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

| 10 | root | localhost | NULL | Query  |    0 | starting | show processlist |

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

1 row in set (0.00 sec)

1.12 外部第三方管理软件连接(SQLyog)

数据库IP地址为 192.168.0.11 不能连接


#查看授权

3306 [(none)]>show grants for root@'192.168.0.%';

ERROR 1141 (42000): There is no such grant defined for user 'root' on host '192.168.0.%'

#主要是由于用户和权限管理的问题,后面配置

1.13 用户

#用户的增删改查

3306 [(none)]>create user victor@'192.168.0.%' identified by 'victor';

Query OK, 0 rows affected (0.00 sec)

3306 [(none)]>desc mysql.user;

3306 [(none)]>select user ,host ,authentication_string from mysql.user;

------

3306 [(none)]>alter user victor@'192.168.0.%' identified by '123456';

Query OK, 0 rows affected (0.00 sec)

3306 [(none)]>drop user victor@'192.168.0.%';

Query OK, 0 rows affected (0.00 sec)

1.14 权限管理

#先创建test 用户

3306 [(none)]>create user test@'192.168.0.%' identified by 'test';

Query OK, 0 rows affected (0.00 sec)

#分配test用户权限

3306 [(none)]>grant all on *.* to 'test'@'192.168.0.%';

Query OK, 0 rows affected (0.00 sec)

#用SQLyog连接 

ip地址:

192.168.0.11

用户名

test

密码

test


#权限介绍

ALL:SELECT,INSERT, UPDATE, DELETE, CREATE, DROP, RELOAD, SHUTDOWN, PROCESS, FILE, REFERENCES, INDEX, ALTER, SHOW DATABASES, SUPER, CREATE TEMPORARY TABLES, LOCK TABLES, EXECUTE, REPLICATION SLAVE, REPLICATION CLIENT, CREATE VIEW, SHOW VIEW, CREATE ROUTINE, ALTER ROUTINE, CREATE USER, EVENT, TRIGGER, CREATE TABLESPACEALL : 以上所有权限,一般是普通管理员拥有的withgrant option:超级管理员才具备的,给别的用户授权的功能

#查看授权

3306 [(none)]>show grants for test@'192.168.0.%';

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

| Grants for test@192.168.0.%                        |

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

| GRANT ALL PRIVILEGES ON *.* TO 'test'@'192.168.0.%' |

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

1 row in set (0.00 sec)

#回收授权

revoke delete on *.*  from test@'192.168.0.%';

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,254评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,875评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,682评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,896评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,015评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,152评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,208评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,962评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,388评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,700评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,867评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,551评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,186评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,901评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,689评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,757评论 2 351