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

前端之家收集整理的这篇文章主要介绍了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>

猜你在找的Linux相关文章