mysql 安装(二进制)

UTF-8编码在Linux里是3个字节,GBK占2个字节
Emoji 表情需要用utf8mb4,UTF-8最多存3个字节

什么是数据库管理系统(DBMS)?

RDBMS: 关系型数据库管理系统
比较适合于,安全级别要求高的数据以及关系较复杂的数据

NoSQL:非关系型数据库管理系统
适合于高性能存取数据,一般是配合RDBMS进行使用的
针对大数据处理分析,分布式架构更加擅长

数据库管理系统(DBMS)

  • RDBMS :关系型
  • NoSQL :非关系型
  • NewSQL:分布式型

数据库管理系统种类

RDBMS  :
MySQL 、Oracle、MSSQL(SQL Server)、PG
 
NoSQL:Not Only SQL
键-值(key-value):Redis, memcached
文档(document):Mongodb

MySQL行业主流版本:

5.6  
5.7    
8.0(现在开始研究新特性)

企业版本选择(MySQL分支版本),笔试题

Oracle:
      MySQL官方版
红帽  :
      MariaDB
Percona:
      PerconaDB

SQL的种类

(1) DDL 数据定义语言
(2) DCL 数据控制语言
(3) DML 数据操作语言
(4) DQL 数据查询语言

版本选择建议要上新环境

1.一般选择官方主流版本:5.6,5.7 
2.GA(稳定发布版)
3.6-12月的产品版本

MySQL二进制安装

1577685785833.png
1577685917691.png
1577686214840.png
1577686240562.png
1577686448477.png

安装

上传解压
[root@db01 local]# tar xf mysql-5.7.26-linux-glibc2.12-x86_64.tar.gz 
所需目录的创建
[root@db01 local]# mkdir -p /data/mysql/data
创建用户和组
[root@db01 local]# useradd mysql
授权
chown -R mysql.mysql /data  /usr/local/mysql
清理环境
[root@db01 local]# rpm -qa |grep mariadb
mariadb-libs-5.5.60-1.el7_5.x86_64
[root@db01 local]# yum remove -y mariadb-libs
初始化数据
vim /etc/profile 
export PATH=/usr/local/mysql/bin:$PATH
source /etc/profile
  • Oracle MySQL 5.7之前以及MariaDB版本
    /usr/local/mysql/scripts/mysql_install_db --user=mysql --basedir=/usr/local/mysql --datadir=/data/mysql/data

  • Oracle MySQL 5.7之后
    [root@db01 local]# mysqld --initialize-insecure --user=mysql --basedir=/usr/local/mysql --datadir=/data/mysql/data

    • 方法一:
      新特性重要说明:
      5.7开始,MySQL加入了全新的 密码的安全机制:
      1.初始化完成后,会生成临时密码(显示到屏幕上,并且会往日志中记一份)
      2.密码复杂度:长度:超过12位? 复杂度:字符混乱组合
      3.密码过期时间180天

      初始化数据,初始化管理员的临时密码
      mysqld --initialize  --user=mysql --basedir=/app/mysql --datadir=/data/mysql
      
      2019-04-18T03:21:53.381108Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
      2019-04-18T03:21:54.583415Z 0 [Warning] InnoDB: New log files created, LSN=45790
      2019-04-18T03:21:54.697859Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.
      2019-04-18T03:21:54.760821Z 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: 1daa0c57-6189-11e9-bc80-000c294234c8.
      2019-04-18T03:21:54.770856Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened.
      
  • 方法二:
    在mysqld --initialize后面加一个参数,insecure,可以减除安全模式

    方法二 :
    初始化数据,初始化管理员的密码为空
    
    \rm -rf  /data/mysql/*
    [root@db01 ~]# mysqld --initialize-insecure  --user=mysql --basedir=/app/mysql --datadir=/data/mysql
    
    2019-04-18T03:37:43.146018Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
    2019-04-18T03:37:43.892132Z 0 [Warning] InnoDB: New log files created, LSN=45790
    2019-04-18T03:37:43.970412Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.
    2019-04-18T03:37:44.029490Z 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: 5378f3b3-618b-11e9-9164-000c294234c8.
    2019-04-18T03:37:44.041469Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened.
    2019-04-18T03:37:44.042348Z 1 [Warning] root@localhost is created with an empty password ! Please consider switching off the --initialize-insecure option.
    [root@db01 ~]# 
    
    [root@db01 ~]# cd /data/mysql/
    [root@db01 mysql]# ll
    total 110628
    -rw-r----- 1 mysql mysql       56 Apr 18 11:37 auto.cnf
    -rw-r----- 1 mysql mysql      419 Apr 18 11:37 ib_buffer_pool
    -rw-r----- 1 mysql mysql 12582912 Apr 18 11:37 ibdata1
    -rw-r----- 1 mysql mysql 50331648 Apr 18 11:37 ib_logfile0
    -rw-r----- 1 mysql mysql 50331648 Apr 18 11:37 ib_logfile1
    drwxr-x--- 2 mysql mysql     4096 Apr 18 11:37 mysql
    drwxr-x--- 2 mysql mysql     8192 Apr 18 11:37 performance_schema
    drwxr-x--- 2 mysql mysql     8192 Apr 18 11:37 sys
    [root@db01 mysql]# 
    
MySQL安装报错整理
1.mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory

#报错原因:缺少libao-devel包
#解决方法:yum install -y libaio-devel

2.[root@mysql /data/mysql/data]# mysqld --initialize --user=mysql --basedir=/application/mysql --datadir=/data/mysql/data
2019-07-25T13:17:21.338642Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2019-07-25T13:17:21.341533Z 0 [ERROR] --initialize specified but the data directory has files in it. Aborting.
2019-07-25T13:17:21.341574Z 0 [ERROR] Aborting

#报错原因:/data/mysql/data下目录下有文件(mysql的保护措施)
#解决办法:清空/data/mysql/data !!!只在全新环境情况

3.[root@mysql /application/mysql/support-files]# ./mysql.server start
Starting MySQL.sed: -e expression #1, char 19: unknown option to `s'
Logging to '/data/mysql/data/mysql.err'.
.... ERROR! The server quit without updating PID file (/data/mysql/data/mysql.pid).

#解决方法:查看错误日志/data/mysql/data/mysql.err
#/etc/my.cnf配置文件编写错误(参数改错了)

4.MySQL数据库无法启动的原因
without updating PID 类似错误
查看日志:data/mysql/data/主机名.err 找[ERROR] 中括号是ERROR的

#可能原因:
#/etc/my.cnf 路径不对等
#/tmp/mysql.sock 文件修改过 或 删除过
#数据目录权限不是mysql
#参数改错了
配置文件准备
[root@db01 ~]# vim /etc/my.cnf
[mysqld]
user=mysql
basedir=/usr/local/mysql
datadir=/data/mysql/data
socket=/tmp/mysql.sock
port=3306
[mysql]
socket=/tmp/mysql.sock
启动MySQL
[root@db01 ~]# cd /usr/local/mysql/support-files/
#原始方法 
[root@db01 ~]#./usr/local/mysql/support-files/mysql.server

[root@db01 support-files]# cp mysql.server /etc/init.d/mysqld
#centos7 centos6通用
[root@db01 support-files]# service mysqld start
#centos7
[root@db01 ~]# /etc/init.d/mysqld start   
Starting MySQL.Logging to '/data/3306/data/db01.err'.
SUCCESS! 
#systemctl方法
[root@db01 support-files]# chkconfig --add mysqld
[root@db01 support-files]# systemctl start/stop/restart mysqld
使用systemd管理mysql(另外一种方法)
cat > /etc/systemd/system/mysqld.service <<EOF
[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=/application/mysql/bin/mysqld --defaults-file=/etc/my.cnf
LimitNOFILE = 5000
EOF

注意:将原来模式启动mysqld先关闭,然后再用systemd管理。

本地管理员用户设置密码
[root@db01 ~]# mysqladmin -uroot -p password 123
连接管理

(1) socket: 本地登录

前提: 一定创建localhost的用户,并授权

mysql> grant all on *.* to oldguo@'localhost' identified by '123';

[root@db01 ~]# mysql -uoldguo -p123 -S /tmp/mysql.sock

(2) tcpip : 远程登录

前提: 一定创建带有远程地址段的用户,并授权

mysql> grant all on *.* to oldguo@'10.0.0.%' identified by '123';
[root@db01 ~]# mysql -uoldguo -p123 -h 10.0.0.51 -P 3306
忘记root本地管理员密码丢失,处理方法?

(1) 关闭数据库

mysqladmin -uroot -p shutdown

(2) 将数据库启动到无验证模式

[root@db01 ~]# mysqld_safe --skip-grant-tables --skip-networking &

(3) 修改密码

mysql>flush privileges;
mysql>alter user root@'localhost' identified by '123456';

(4)重启数据库为正常模式

[root@db01 ~]# /etc/init.d/mysqld restart

(5)测试新密码

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