zoukankan      html  css  js  c++  java
  • Warning: fsockopen(): unable to connect to tcp://localhost:3306 (Permission denied)

    ecstore网页安装报不能连接mysql数据库

    原因

    http://www.vbulletin.com/forum/forum/vbulletin-3-8/vbulletin-3-8-questions-problems-and-troubleshooting/3945336-can-t-get-email-working-again-after-server-move

    http://www.vbulletin.com/forum/forum/vbulletin-legacy-versions-products/legacy-vbulletin-versions/vbulletin-3-6-questions-problems-and-troubleshooting/223336-smtp-mail-and-selinux-in-enforcing-mode?s=182f71624b82111a30417cdc5d07876b

    就是因为没关selinux

    解决办法

    root@centos ~]# getenforce ← SELinux状態確認
    Enforcing ← SELinux有効
    
    
    [root@centos ~]# setenforce 0 ← SELinux無効化
    
    
    [root@centos ~]# getenforce ← SELinux状態確認
    Permissive ← SELinux無効
    
    
    [root@centos ~]# vi /etc/sysconfig/selinux ← SELinux設定ファイル編集
    SELINUX=enforcing
    ↓
    SELINUX=disabled ← システム起動時にSELinuxを無効化
  • 相关阅读:
    浅析跨域请求
    python虚拟环境--virtualenv
    centos7下使用yum安装pip
    centos下python安装与虚拟环境配置
    ES6基础语法
    CCI_chapter 19 Moderate
    CCI_chapter 16 Low level
    CCI_chapter 13C++
    CCI_chapter 8 Recurision
    LeetCode_Generate Parentheses
  • 原文地址:https://www.cnblogs.com/limonyun/p/7777294.html
Copyright © 2011-2022 走看看