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

溫馨提示×

溫馨提示×

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

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

MySQL5.7安裝

發布時間:2020-08-02 10:46:04 來源:網絡 閱讀:825 作者:aix6180 欄目:MySQL數據庫

1、下載安裝包

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

2、解壓到/opt下

[root@Master opt]# tar xvf mysql-5.7.22-linux-glibc2.12-x86_64.tar.gz
[root@Master opt]# ll
total 628712
drwxr-xr-x. 9 root root      4096 Jul  6 19:47 mysql-5.7.22-linux-glibc2.12-x86_64
-rw-r--r--. 1 root root 643790848 Jul  6 11:44 mysql-5.7.22-linux-glibc2.12-x86_64.tar.gz

3、作軟鏈接到/usr/local/mysql

[root@Master opt]# ln -s /opt/mysql-5.7.22-linux-glibc2.12-x86_64  /usr/local/mysql
[root@Master opt]# ll /usr/local/
total 40
drwxr-xr-x. 2 root root 4096 Sep 23  2011 bin
drwxr-xr-x. 2 root root 4096 Sep 23  2011 etc
drwxr-xr-x. 2 root root 4096 Sep 23  2011 games
drwxr-xr-x. 2 root root 4096 Sep 23  2011 include
drwxr-xr-x. 2 root root 4096 Sep 23  2011 lib
drwxr-xr-x. 2 root root 4096 Sep 23  2011 lib64
drwxr-xr-x. 2 root root 4096 Sep 23  2011 libexec
lrwxrwxrwx. 1 root root   40 Jul  6 20:01 mysql -> /opt/mysql-5.7.22-linux-glibc2.12-x86_64
drwxr-xr-x. 2 root root 4096 Sep 23  2011 sbin
drwxr-xr-x. 5 root root 4096 Feb 16  2017 share
drwxr-xr-x. 2 root root 4096 Sep 23  2011 src

4、創建用戶

[root@Master opt]# groupadd mysql 
[root@Master opt]#  useradd -g mysql  -s  /sbin/nologin -d /usr/local/mysql/  -M mysql

5、環境變量

[root@Master opt]# echo PATH=$PATH:/usr/local/mysql/bin >>/etc/profile 
[root@Master opt]# source /etc/profile

6、創建必須的目錄

mkdir -p /data/mysql/mysql3306/{data,tmp,logs}

7、生成my.cnf(根據自己需求自動生成)
葉總的配置文件生成工具
http://imysql.com/my-cnf-wizard.html
8、目錄權限

[root@Master /]# chown -R mysql:mysql /data/mysql/mysql3306/
[root@Master /]# chown -R mysql:mysql /usr/local/mysql

9、數據庫初始化

[root@Master /]# mysqld --defaults-file=/etc/my.cnf --initialize --user=user --basedir=/usr/local/mysql/  --datadir=/data/mysql/mysql3306/data/

10、數據庫密碼(.lZ!-2t2-n9s)

[root@Master data]# more /data/mysql/mysql3306/data/dataerror.log
2018-07-06T13:46:32.795821Z 1 [Note] A temporary password is generated for root@localhost: .lZ!-2t2-n9s

11、啟動數據庫

[root@Master support-files]# pwd
/usr/local/mysql/support-files
[root@Master support-files]# cp mysql.server   /etc/init.d/mysqld
[root@Master support-files]# /etc/init.d/mysqld start
Starting MySQL.. SUCCESS!

12、登錄數據庫

輸入第10步的密碼
Starting MySQL.. SUCCESS! 
[root@Master support-files]# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.22-log

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.

root@Master 21:57:  [(none)]> 
root@Master 21:57:  [(none)]> show databases;
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement

13、改root密碼

[root@Master support-files]# mysqladmin -uroot -p password 'root'
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

14、登錄數據庫

[root@Master support-files]# mysql -uroot -proot                 
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.7.22-log 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.

root@Master 22:01:  [(none)]> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
4 rows in set (0.00 sec)

問題:

初始化時遇到報錯
error while loading shared libraries: libnuma.so.1: cannot open shared object file: No such file or directory

解決:

yum -y install numactl.x86_64
向AI問一下細節

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

AI

通海县| 祁东县| 松溪县| 镇巴县| 临城县| 甘泉县| 惠东县| 进贤县| 罗城| 松溪县| 托里县| 栖霞市| 南投县| 东至县| 马龙县| 花莲县| 旅游| 鸡西市| 德清县| 克拉玛依市| 莱芜市| 始兴县| 伊川县| 浠水县| 青岛市| 睢宁县| 榆树市| 阿拉善右旗| 齐齐哈尔市| 佳木斯市| 沈丘县| 胶南市| 澜沧| 东安县| 高碑店市| 边坝县| 虞城县| 陇南市| 塔河县| 章丘市| 江永县|