9951 explained code solutions for 126 technologies


sphinxsearchHow do I restart Sphinxsearch?


To restart Sphinxsearch, you will need to stop the searchd service and then start it again.

  1. Stop the service:

    sudo service searchd stop
  2. Start the service:

    sudo service searchd start
  3. Check the status of the service:

    sudo service searchd status

    Output:

    searchd (pid  1187) is running...

This will restart the Sphinxsearch service.

Helpful links

Edit this code on GitHub