代码之家  ›  专栏  ›  技术社区  ›  Yevgeniy Afanasyev

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

  •  0
  • Yevgeniy Afanasyev  · 技术社区  · 7 年前

    我正在使用laravelhomestead进行开发,但是我的QA服务器在amazonlinux上。它是基于CentOS-7的。

    我在我的设备上安装了Supervisor,就像上面说的那样 Laravel docs

    sudo apt-get install supervisor 
    

    现在我是斯塔克。

    它没有说明如何卸载它,也没有说明如何在amazonlinux上安装它。

    如何从Homestead卸载Laravel Supervisor? 如何在amazonlinux上安装/卸载它?

    1 回复  |  直到 6 年前
        1
  •  8
  •   newUserName02    7 年前

    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

    https://stackoverflow.com/a/47322239/3095084