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

前端之家收集整理的这篇文章主要介绍了linux – 当我重新启动Ubuntu服务器时如何重新启动sphinx?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的ubuntu 9.04服务器上构建并安装了sphinx搜索.

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

解决方法

我不知道Sphinx,但这是基本的方法.使用以下内容创建一个文件/etc/init.d/searchd(也有 this script,但您可能需要稍微调整一下):
  1. #!/bin/bash
  2.  
  3. case "${1:-''}" in
  4. 'start')
  5. # put the command to start sphinx
  6. # i.e.,/usr/bin/searchd start or /usr/bin/searchd --daemon or whatever the command is
  7. ;;
  8. 'stop')
  9. # stop command here
  10. ;;
  11. 'restart')
  12. # restart command here
  13. ;;
  14. *)
  15. echo "Usage: $SELF start|stop|restart"
  16. exit 1
  17. ;;
  18. esac

后执行以下操作:

  1. $sudo update-rc.d searchd defaults

要手动控制服务:

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

猜你在找的Linux相关文章