91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

mysql8.0.11安裝、啟動與基本設置操作方法

發布時間:2020-05-28 15:46:15 來源:網絡 閱讀:572 作者:三月 欄目:MySQL數據庫

下面講講關于mysql8.0.11安裝、啟動與基本設置操作方法,文字的奧妙在于貼近主題相關。所以,閑話就不談了,我們直接看下文吧,相信看完mysql8.0.11安裝、啟動與基本設置操作方法這篇文章你一定會有所受益。                                                          

    此次演示的是mysql 8.0.11的安裝、啟動與基本設置。
    下載mysql-8.0.11-el7-x86_64.tar.gz

1、解壓并重命名
[root@localhost ~]# cd /data
[root@localhost data]# ls
mysql-8.0.11-el7-x86_64.tar.gz
[root@localhost data]# tar -zxf mysql-8.0.11-el7-x86_64.tar.gz
[root@localhost data]# mv mysql-8.0.11-el7-x86_64 mysql

2、創建mysql用戶
[root@localhost data]# useradd -M -s /sbin/nologin mysql

3、初始化數據庫
[root@localhost data]# cd mysql/
[root@localhost mysql]# ./bin/mysqld --initialize --user=mysql --datadir=/data/mysql/data
2018-04-26T03:06:01.637456Z 0 [Warning] [MY-011070] [Server] 'Disabling symbolic links using --skip-symbolic-links (or equivalent) is the default. Consider not using this option as it' is deprecated and will be removed in a future release.
2018-04-26T03:06:01.637709Z 0 [System] [MY-013169] [Server] /data/mysql/bin/mysqld (mysqld 8.0.11) initializing of server in progress as process 53030

    2018-04-26T03:06:17.384428Z 5 [Note] [MY-010454] [Server] A temporary password is generated for root@localhost: *wbnbphswv8>K*此為數據庫初始密碼
    2018-04-26T03:06:26.959938Z 0 [System] [MY-013170] [Server] /data/mysql/bin/mysqld (mysqld 8.0.11) initializing of server has completed

4、編輯配置文件
[root@localhost mysql]# vim /etc/my.cnf
[client]
port      = 3306
socket    = /tmp/mysql.sock

    [mysqld]
    datadir=/data/mysql/data
    socket=/tmp/mysql.sock
    port=3306
    user=mysql
    basedir=/data/mysql
    symbolic-links=0

    [mysqld_safe]
    log-error=/data/mysql/data/error.log
    pid-file=/data/mysql/data/mysql.pid

5、啟動
[root@localhost mysql]# ./bin/mysqld --defaults-file=/etc/my.cnf &
[1] 53216
[root@localhost mysql]# 2018-04-26T03:18:05.050872Z 0 [Warning] [MY-011070] [Server] 'Disabling symbolic links using --skip-symbolic-links (or equivalent) is the default. Consider not using this option as it' is deprecated and will be removed in a future release.
2018-04-26T03:18:05.051064Z 0 [System] [MY-010116] [Server] /data/mysql/bin/mysqld (mysqld 8.0.11) starting as process 53216
2018-04-26T03:18:06.208674Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed.
2018-04-26T03:18:06.240611Z 0 [System] [MY-010931] [Server] /data/mysql/bin/mysqld: ready for connections. Version: '8.0.11'  socket: '/tmp/mysql.sock'  port: 3306  MySQL Community Server - GPL.

6、查看進程
[root@localhost mysql]# ps aux| grep mysql
qiang    10783  0.0  0.2 165020  4452 pts/0    S+   14:38   0:00 /data/mysql/bin/mysql -uroot -p
qiang    12866  0.0  0.0 112664   972 pts/1    R+   15:19   0:00 grep --color=auto mysql
root     14040  0.0  0.0 113252  1528 ?        S    8月07   0:00 /bin/sh /data/mysql/bin/mysqld_safe --datadir=/data/mysql/data --pid-file=/data/mysql/data/baobao.pid
mysql    14231  0.3 20.3 1365424 382536 ?      Sl   8月07  14:47 /data/mysql/bin/mysqld --basedir=/data/mysq --datadir=/data/mysql/data --plugin-dir=/data/mysql/lib/plugin --user=mysql --log-error=/data/mysql/data/mysql_error.log --pid-file=/data/mysql/data/baobao.pid --socket=/tmp/mysql.sock --port=13306

7、設置啟動腳本
[root@localhost mysql]# cp ./support-files/mysql.server /etc/init.d/mysqld
修改啟動參數
[root@localhost mysql]# vi /etc/init.d/mysqld
basedir=/data/mysql
datadir=/data/mysql/data

8、關閉與啟動
停止
[root@localhost data]# /etc/init.d/mysqld stop
Shutting down MySQL... SUCCESS!
啟動
[root@localhost ~]# /etc/init.d/mysqld start
Starting MySQL.... SUCCESS!

9、數據庫簡單設置
[root@localhost mysql]# ./bin/mysql -uroot -p
Enter password: wbnbphswv8>K
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 9
Server version: 8.0.11

    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> show databases;
    ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
    mysql> alter user root@localhost identified by '123123';
    Query OK, 0 rows affected (0.14 sec)

    mysql> show databases;
    +--------------------+
    | Database           |
    +--------------------+
    | information_schema |
    | mysql              |
    | performance_schema |
    | sys                |
    +--------------------+
    4 rows in set (0.10 sec)

   mysql>  

對于以上mysql8.0.11安裝、啟動與基本設置操作方法相關內容,大家還有什么不明白的地方嗎?或者想要了解更多相關,可以繼續關注我們的行業資訊板塊。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乌鲁木齐市| 昆山市| 汉中市| 双城市| 阜南县| 武平县| 阜宁县| 大丰市| 铜川市| 临湘市| 察哈| 阳谷县| 伽师县| 桂阳县| 阜康市| 鸡西市| 浦县| 洛浦县| 喀喇沁旗| 夏津县| 贞丰县| 潼关县| 墨玉县| 玛沁县| 大渡口区| 岗巴县| 祁阳县| 西畴县| 大邑县| 云霄县| 高台县| 丽江市| 思南县| 沂源县| 福海县| 阳新县| 隆化县| 南乐县| 河北省| 泸溪县| 房产|