My Sql的安装

  1. 下载适合的MySQL版本。

    https://downloads.mysql.com/archives/community/

    这是我使用的版本:

    mysql-5.7.24-linux-glibc2.12-x86_64.tar.gz
    
  2. 先创建一个目录,用于存放下载软件,然后将下载的软件存放于此:

    [root@db01-51 ~]# mkdir -p /server/tools
    
  3. 创建一个目录用于安装mysql:

    [root@db01-51 /]# mkdir application
    
  4. 解压软件并移动软件到目录\application之下并且命名为mysql.

    [root@db01-51 tools]# tar xf mysql-5.7.24-linux-glibc2.12-x86_64.tar.gz 
    [root@db01-51 tools]# mv mysql-5.7.24-linux-glibc2.12-x86_64 /application/
    [root@db01-51 application]# mv mysql-5.7.24-linux-glibc2.12-x86_64/ mysql
    
  5. 设置mysql的密码:

    [root@db01-51 application]# mysqladmin -uroot -p password 123
    
  6. 创建mysql用户,不需要密码,不需要登陆,仅仅是做为服务:

    [root@db01-51 bin]# useradd -s /sbin/nologin mysql
    
  7. 设置环境变量:

    vim /etc/profile
    export PATH=/application/mysql/bin:$PATH
    [root@db01 bin]# source /etc/profile
    
  8. 进行路径授权:

    [root@db01-51 /]# chown -R mysql.mysql /application/*
    [root@db01-51 /]# chown -R mysql.mysql /data
    
  9. 初始化数据(创建系统数据):

    [root@db01-51 /]# mkdir /data/mysql/data -p
    [root@db01-51 /]# chown -R mysql.mysql /data[root@db01-51 /]# mysqld --initialize --user=mysql --basedir=/application/mysql --datadir=/data/mysql/data
    2021-02-01T12:29:04.353665Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
    2021-02-01T12:29:05.266430Z 0 [Warning] InnoDB: New log files created, LSN=45790
    2021-02-01T12:29:05.352616Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.
    2021-02-01T12:29:05.420295Z 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: 12d55f80-6489-11eb-9440-000c295727dc.
    2021-02-01T12:29:05.421609Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened.
    2021-02-01T12:29:05.423812Z 1 [Note] A temporary password is generated for root@localhost: TajE=,w#<7mu
    
配置无密码:
[root@db01-51 /]# mysqld --initialize-insecure --user=mysql --basedir=/application/mysql --datadir=/data/mysql/data
2021-02-01T12:36:51.522350Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --  explicit_defaults_for_timestamp server option (see documentation for more details).
2021-02-01T12:36:51.525097Z 0 [ERROR] --initialize specified but the data directory has files in it. Aborting.
2021-02-01T12:36:51.525145Z 0 [ERROR] Aborting --
此处报错,解决方式如下: 清除上次初始化时留下的内容,然后进行重新初始化。
[root@db01-51 /]# rm -rf /data/mysql/data/*
[root@db01-51 data]# mysqld --initialize-insecure --user=mysql --basedir=/application/mysql --datadir=/data/mysql/data
2021-02-01T12:40:22.208343Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2021-02-01T12:40:22.500108Z 0 [Warning] InnoDB: New log files created, LSN=45790
2021-02-01T12:40:22.541941Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.
2021-02-01T12:40:22.598505Z 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: a67691b2-648a-11eb-a426-000c295727dc.
2021-02-01T12:40:22.599220Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened.
2021-02-01T12:40:22.599871Z 1 [Warning] root@localhost is created with an empty password ! Please consider switching off the --initialize-insecure option.
  1. 编辑配置文件:

    [root@db01-51 etc]# cat >/etc/my.cnf <<EOF
    >[mysqld]
    >user=mysql
    >basedir=/application/mysql
    >datadir=/data/mysql/data
    >socket=/tmp/mysql.sock
    >server_id=6
    >port=3306
    >[mysql]
    >socket=/tmp/mysql.sock
    >EOF
    
  1. 启动数据库:

    [root@db01-51 init.d]# cp /application/mysql/support-files/mysql.server /etc/init.d/mysqld
    [root@db01-51 etc]# service mysqld restart
     ERROR! MySQL server PID file could not be found!
    Starting MySQL.. SUCCESS! 
    或者:
    [root@db01-51 /]# /etc/init.d/mysqld start
    Starting MySQL. SUCCESS! 
    
  1. 查找是否已启动:

    [root@db01-51 etc]# netstat -lnp|grep 3306
    tcp6       0      0 :::3306                 :::*                    LISTEN      11155/mysqld 
    [root@db01-51 etc]# ps -ef|grep 3306
    或者直接登陆:
    [root@db01-51 /]# mysql
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 3
    Server version: 5.7.24 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> 
    
  1. 停止MySQL:

    [root@db01-51 /]# service mysqld stop
    Shutting down MySQL.. SUCCESS! 
    或:
    [root@db01-51 /]# /etc/init.d/mysqld stop
    Shutting down MySQL.. SUCCESS! 
    
  1. 使用systemd来管理mysql,使用后就可以通过systemctl start mysqld来进行管理mysql.

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

推荐阅读更多精彩内容