婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > CentOS7安裝調試Mysql數據庫的步驟詳解【實例】

CentOS7安裝調試Mysql數據庫的步驟詳解【實例】

熱門標簽:AI電銷機器人 源碼 外呼系統打哪顯哪 新邵電銷機器人企業 江西外呼系統 北海市地圖標注app 湖北ai智能電銷機器人 新科美甲店地圖標注 高德地圖標注論壇 蘭州ai電銷機器人招商

本實例要求下載并安裝調試Mysql數據庫。

第一步:下載Mysql數據庫安裝所需的全部軟件。

我已提前下載好數據庫軟件,直接在服務器下載即可,如下:

通過scp直接下載:

[root@agt20 ~]# scp root@192.168.122.10:/root/mysql* /root/

軟件如下圖:

[root@agt20 ~]# ls mysql-*
mysql-5.7.17.tar
mysql-community-client-5.7.17-1.el7.x86_64.rpm
mysql-community-common-5.7.17-1.el7.x86_64.rpm
mysql-community-devel-5.7.17-1.el7.x86_64.rpm
mysql-community-embedded-5.7.17-1.el7.x86_64.rpm
mysql-community-embedded-compat-5.7.17-1.el7.x86_64.rpm
mysql-community-embedded-devel-5.7.17-1.el7.x86_64.rpm
mysql-community-libs-5.7.17-1.el7.x86_64.rpm
mysql-community-libs-compat-5.7.17-1.el7.x86_64.rpm
mysql-community-minimal-debuginfo-5.7.17-1.el7.x86_64.rpm
mysql-community-server-5.7.17-1.el7.x86_64.rpm
mysql-community-test-5.7.17-1.el7.x86_64.rpm

第二步:通過yum進行安裝,起服務器并查看

[root@agt20 ~]# yum -y install mysql-*.rpm
[root@agt20 ~]# systemctl restart mysqld
[root@agt20 ~]# systemctl enable mysqld
[root@agt20 ~]# systemctl status mysqld.service 
\u25cf mysqld.service - MySQL Server
Loaded: loaded (/usr/lib/systemd/system/mysqld.service; enabled; vendor preset: disabled)
Active: active (running) since \u4e8c 2019-10-15 11:29:11 CST; 1min 15s ago
Docs: man:mysqld(8)
http://dev.mysql.com/doc/refman/en/using-systemd.html
Main PID: 31584 (mysqld)
CGroup: /system.slice/mysqld.service
\u2514\u250031584 /usr/sbin/mysqld --daemonize --pid-file=/var/run/mysqld/mysqld.pid...

10\u6708 15 11:28:42 agt20.tedu.cn systemd[1]: Starting MySQL Server...
10\u6708 15 11:29:11 agt20.tedu.cn systemd[1]: Started MySQL Server.
[root@agt20 ~]#

第三步:連接MySQL服務器,修改密碼;

1)查看初始密碼

[root@agt20 ~]# grep -i 'password' /var/log/mysqld.log 
2019-10-15T03:28:55.200931Z 1 [Note] A temporary password is generated for root@localhost: r3qhDysMrM)

2)使用初始密碼連接mysql服務

[root@agt20 ~]# mysql -uroot -p'r3qhDysMrM)'
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 4
Server version: 5.7.17
Copyright (c) 2000, 2016, 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>

3)重置數據庫管理員roo本機登錄密碼

mysql> alter user root@localhost identified by 'Pwd@123...';
Query OK, 0 rows affected (0.00 sec)

4)修改密碼策略

mysql> set global validate_password_policy=0;
Query OK, 0 rows affected (0.01 sec)
mysql> set global validate_password_length=6;
Query OK, 0 rows affected (0.00 sec)
mysql> alter user root@localhost identified by 'pwd@123';
Query OK, 0 rows affected (0.00 sec)

5)使用修改后的密碼登錄

[root@agt20 ~]# mysql -uroot -ppwd@123
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.17 MySQL Community Server (GPL)
Copyright (c) 2000, 2016, 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>

至此Mysql數據庫安裝調試完成!!!!

總結

以上所述是小編給大家介紹的CentOS7安裝調試Mysql數據庫的步驟詳解,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網站的支持!
如果你覺得本文對你有幫助,歡迎轉載,煩請注明出處,謝謝!

標簽:自貢 海南 阿克蘇 黔東 南陽 池州 黃石 大理

巨人網絡通訊聲明:本文標題《CentOS7安裝調試Mysql數據庫的步驟詳解【實例】》,本文關鍵詞  CentOS7,安裝,調試,Mysql,數據庫,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《CentOS7安裝調試Mysql數據庫的步驟詳解【實例】》相關的同類信息!
  • 本頁收集關于CentOS7安裝調試Mysql數據庫的步驟詳解【實例】的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 万全县| 福鼎市| 新兴县| 措美县| 澄迈县| 新沂市| 福清市| 新余市| 闸北区| 兰州市| 泗水县| 雷波县| 广饶县| 郧西县| 延安市| 澄城县| 中卫市| 丽水市| 吉安市| 虞城县| 龙南县| 铜川市| 天柱县| 北海市| 镇沅| 安乡县| 合作市| 沿河| 屏边| 新田县| 渭南市| 临桂县| 博湖县| 巧家县| 汉中市| 青龙| 无锡市| 昔阳县| 家居| 晋州市| 平昌县|