1. 程式人生 > >在 CentOS 中 開啟 MySQL 的 3306 埠

在 CentOS 中 開啟 MySQL 的 3306 埠

相關連結:

在 CentOS 1804 中 使用 yum 安裝 MySQL 5.7 最新版

在 CentOS 1804 中 安裝 MySQL 5.7.20 (或任意MySQL版本)

在 CentOS 1804 中 修改 MySQL 密碼策略

在 CentOS 中 開啟 MySQL 的 3306 埠

在不開啟 MySQL 3306 埠的情況下,使用 Navicat 進項遠端連線(使用22埠)

在 Ubuntu 中安裝 MySQL5.7.20(任意版本)

在 Ubuntu 中安裝 MySQL5.7.** 最新版

CentOS 6/7 安裝 MySQL 8 最新版

CentOS 6/7 安裝 MySQL 8.0.11 (或任意版)

 


  1. 檢視已開啟的埠:

    [[email protected] doc]# firewall-cmd --list-ports
    
    

    如果埠未開啟,請執行下面的程式碼(如果已開啟,請出門右轉)。
     

  2. 檢視防火牆是否開啟:

    [[email protected] doc]# systemctl status firewalld

     

  3. 開啟防火牆:

    [[email protected] doc]# systemctl start firewalld

     

  4. 檢視防火牆開機自啟狀態:

    [[email protected]
    doc]# systemctl list-unit-files |grep firewalld firewalld.service enabled

     

  5. 新增埠3306:

    [[email protected] doc]# firewall-cmd --zone=public --add-port=3306/tcp --permanent
    success
    

     

  6. 重啟防火牆:

    [[email protected] doc]# firewall-cmd --reload
    success
    

     

  7. 再次檢視以開放的埠:

    [[email protected] doc]# firewall-cmd --list-ports
    3306/tcp
    

     


相關連結:

在 CentOS 1804 中 使用 yum 安裝 MySQL 5.7 最新版

在 CentOS 1804 中 安裝 MySQL 5.7.20 (或任意MySQL版本)

在 CentOS 1804 中 修改 MySQL 密碼策略

在 CentOS 中 開啟 MySQL 的 3306 埠

在不開啟 MySQL 3306 埠的情況下,使用 Navicat 進項遠端連線(使用22埠)

在 Ubuntu 中安裝 MySQL5.7.20(任意版本)

在 Ubuntu 中安裝 MySQL5.7.** 最新版

CentOS 6/7 安裝 MySQL 8 最新版

CentOS 6/7 安裝 MySQL 8.0.11 (或任意版)