网站地图    收藏   

主页 > 后端 > wordpress教程 >

LNMP WordPress 建立数据库连接时出错 - WordPress

来源:自学PHP网    时间:2014-11-28 23:42 作者: 阅读:

[导读] 帮朋友的博客网站从apache 换成 nginx 之后wordpress 出错提示 建立数据库连接时出错.而apache 是可以正常连接,本地mysql 也可以正常登录上去.1、使用 mysql -uroot -p 登录上mysql 并......

LNMP WordPress 建立数据库连接时出错

帮朋友的博客网站从apache 换成 nginx 之后wordpress 出错提示 “建立数据库连接时出错”.

而apache 是可以正常连接,本地mysql 也可以正常登录上去.

1、使用 mysql -uroot -p 登录上mysql 并用 show variables like ‘socket'; 查询mysql socket的文件存在什么地方,代码如下:

  1. [root@iZ23482kqn1Z default]# mysql -uroot -p 
  2. Enter password 
  3.  
  4. Welcome to the MySQL monitor.  Commands end with ; or \g. 
  5.  
  6. Your MySQL connection id is 18509 
  7.  
  8. Server version: 5.1.73 MySQL Community Server (GPL) 
  9.    
  10. Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. 
  11.   
  12. Oracle is a registered trademark of Oracle Corporation and/or its 
  13.  
  14. affiliates. Other names may be trademarks of their respective 
  15.  
  16. owners. 
  17.    
  18. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. 
  19.    
  20. mysql> show variables like 'socket'
  21.  
  22. +---------------+-----------------+ 
  23.  
  24. | Variable_name | Value           | 
  25.  
  26. +---------------+-----------------+ 
  27.  
  28. | socket        | /tmp/mysql.sock | 
  29.  
  30. +---------------+-----------------+ 
  31.  
  32. 1 row in set (0.00 sec) 

2、编辑 /etc/php.ini 文件找到 mysql.default_socket =,修改成以下代码:

  1. Default socket name for local MySQL connects.  If empty, uses the built-in 
  2. ; MySQL defaults. 
  3. ; http://php.net/mysql.default-socket 
  4. --phpfensi.com 
  5. mysql.default_socket =/tmp/mysql.sock 

3、重起php-fpm 服务

service php-fpm restart

问题解决.

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论