How to start - stop services on a Linux Harvester
Check the status of the Harvester services:
service mysql status
service nfa_collpollws status
service nfa_dataretention status
service nfa_filewebservice status
service nfa_harvester status
service nfa_mysqlCSE status
service nfa_poller status
service nfa_proxies status
service nfa_reaper status
Start the Harvester services:
service mysql start
service nfa_collpollws start
service nfa_dataretention start
service nfa_filewebservice start
service nfa_harvester start
service nfa_mysqlCSE start
service nfa_poller start
service nfa_proxies start
service nfa_reaper start
Stop the Harvester services:
service mysql stop
service nfa_collpollws stop
service nfa_dataretention stop
service nfa_filewebservice stop
service nfa_harvester stop
service nfa_mysqlCSE stop
service nfa_poller stop
service nfa_proxies stop
service nfa_reaper stop
Additional Information:
You can easily create batch files of each of these by doing the following:
- vi statusnfa
- hit the 'i' key
- paste in:
service mysql status
service nfa_collpollws status
service nfa_dataretention status
service nfa_filewebservice status
service nfa_harvester status
service nfa_mysqlCSE status
service nfa_poller status
service nfa_proxies status
service nfa_reaper status
- hit the 'esc' key
- shift z z
- chmod +rwx statusnfa
- ./statusnfa