Please enter search query.
Search <product_name> all support & community content...
Article: 100017909
Last Published: 2018-04-04
Ratings: 3 5
Product(s): Backup Exec
Problem
How to stop and start the UNIX or LINUX Agent service (process).
Solution
Sometimes for trouble shooting issues about the UNIX or LINUX agent, we need to restart the agent service on the particular UNIX or LINUX machine. This information can help to perform this action.
1. To determine whether this process is running, from a command prompt type
2. To end the process, type
3. To restart the service, you must change to the directory where the agent is installed.
Type:
Then type:
1. To determine whether this process is running, from a command prompt type
ps -ef | grep agent.be
. This will tell you if the process is running.
2. To end the process, type
kill <pid>
. This will stop the process (<pid> is the process identifier found in the first column.)
3. To restart the service, you must change to the directory where the agent is installed.
Type:
cd /etc/bkupexec
(default location of the UNIX or LINUX agent, unless specified otherwise during install).
Then type:
./agent.be &
( This will restart the service, the "&" sign is to specify the agent to run in the background).