我已在我的 WordPress Ubuntu EC2 实例中安装了 Varnish,如本指南所述:
http://jeffreifman.com/detailed-wordpress-guide-for-aws/install-varnish/
我确实遇到了许多有关 Varnish 的问题并且想禁用 Varnish。
我尝试撤消指南中描述的步骤,例如将端口从:8080
重新设置为:80
,然后重新启动 Apache 并重新启动 Ubuntu。不幸的是,由于我的 WordPress 网站在执行这些步骤后不再工作,所以我一定是错过了什么。
当我在浏览器中打开我的网站时,出现以下错误消息:
Error 503 Service Unavailable
Service Unavailable
Guru Meditation:
XID: 513637370
从我的 WordPress 安装中禁用(甚至卸载) Varnish 的正确方法是什么?
答案1
如果你使用 CentOS 或 Red Hat,请使用以下命令:
service varnish stop
如果你想卸载 varnish,试试这个:
yum erase varnish
或参考https://stackoverflow.com/questions/27739853/varnish-cache-server-error-503-service-unavailable
答案2
查看消息,似乎您忘记将 varnish 端口改回其默认值 6081,因此您应该编辑/etc/default/varnish
文件并更改VARNISH_LISTEN_PORT
或-a
适用的参考。
如果你想卸载 varnish,应该很简单sudo apt-get remove varnish