如何安装/卸载 Laravel Supervisor (supervisorctl)?

How to Install / Uninstall Laravel Supervisor (supervisorctl)?

我正在使用 Laravel homestead 进行开发,但我的 QA 服务器在 Amazon Linux 上。这是基于 CentOS-7 的。

我已经按照 Laravel docs

上所说的方式在我的 Dev 上安装了 Supervisor
sudo apt-get install supervisor 

现在我在堆叠。

没有说如何卸载,也没有说如何在亚马逊上安装Linux。

如何从 Homestead 中卸载 Laravel Supervisor? 以及如何在亚马逊上 install/uninstall Linux?

如果您使用 apt-get 安装它,那么您应该可以使用相同的包管理器将其删除。

https://askubuntu.com/a/1144

例如使用以下命令之一:

sudo apt-get remove supervisor  # remove the package
sudo apt-get purge supervisor   # remove the package and all configs

CentOS 试试yum

yum install supervisor
yum remove supervisor

https://www.centos.org/docs/5/html/5.1/Deployment_Guide/s1-yum-useful-commands.html

类似问题: