微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

linux – 当我重新启动Ubuntu服务器时如何重新启动sphinx?

我在我的ubuntu 9.04服务器上构建并安装了sphinx搜索.

重启后如何让sphinx守护程序自动启动?

解决方法

我不知道Sphinx,但这是基本的方法.使用以下内容创建一个文件/etc/init.d/searchd(也有 this script,但您可能需要稍微调整一下):
#!/bin/bash

case "${1:-''}" in
  'start')
        # put the command to start sphinx
        # i.e.,/usr/bin/searchd start or /usr/bin/searchd --daemon or whatever the command is
        ;;
  'stop')
        # stop command here
        ;;
  'restart')
        # restart command here
        ;;
  *)
        echo "Usage: $SELF start|stop|restart"
        exit 1
        ;;
esac

后执行以下操作:

$sudo update-rc.d searchd defaults

要手动控制服务:

$sudo /etc/init.d/searchd <start|stop|restart>

原文地址:https://www.jb51.cc/linux/401092.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐