what linux command I run to check if YF is running, And which command I use to start/stop YF?
12 September, 2011
Can you tell me what linux command I run to check if YF is running
And which command I use to start/stop YF?
And which command I use to start/stop YF?
You start Yellowfin by running:
//appserver/bin/startup.sh
You stop Yellowfin by running:
//appserver/bin/shutdown.sh
You can check if Yellowfin is active by running:
netstat -ant | grep "9090"
Where 9090 in this case is the port that Yellowfin is running on.
If it returns a line with the code "LISTEN", then this port is currently in use.
Note: this doesn't determine that Yellowfin is running, it only shows whether the Yellowfin port is currently in use.
//appserver/bin/startup.sh
You stop Yellowfin by running:
//appserver/bin/shutdown.sh
You can check if Yellowfin is active by running:
netstat -ant | grep "9090"
Where 9090 in this case is the port that Yellowfin is running on.
If it returns a line with the code "LISTEN", then this port is currently in use.
Note: this doesn't determine that Yellowfin is running, it only shows whether the Yellowfin port is currently in use.