How to start - stop services on a Linux Harvester
search cancel

How to start - stop services on a Linux Harvester

book

Article ID: 9993

calendar_today

Updated On:

Products

CA Network Flow Analysis (NetQos / NFA)

Issue/Introduction

How to start - stop services on a Linux Harvester



Environment

Release: RAIB1H99000-9.3-Network Flow Analysis-Interface Bundle-Hardware
Component:

Resolution

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