lnmp下phpmyadmin报错
环境:
VirtualBox最新版
centos6.5
nginx1.4.4
php-fpm5.3.3
mysql5.1
phpmyadmin最新版
虚拟主机配置
server { listen 80; server_name db.dev www.db.dev; charset utf8; access_log /var/log/nginx/db.dev.access.log main; error_log /var/log/nginx/db.dev.error.log debug; location / { root /home/www/db.dev; index index.html index.htm index.php; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } location ~ .php$ { root html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /home/www/db.dev$fastcgi_script_name; include fastcgi_params; } }错误码:
2013/12/20 10:34:46 [info] 1394#0: *115 client prematurely closed connection, so upstream connection is closed too while connecting to upstream, client: 192.168.56.101, server: db.dev, request: "GET / HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "db.dev"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题找到了,是phpmyadmin版本太高了,都怪自己下载的时候不长眼.
没用哦