Restart a stalled DriveClient agent
This article provides instructions to restart a stalled Cloud Backup DriveClient agent by stopping and restarting the service on your server.
Resolve a stalled Cloud Backup DriveClient
Use the following instructions to resolve a stalled Cloud Backup DriveClient:
-
Log in to your Cloud Control Panel and manually stop all jobs by using your Cloud Backups control panel.
-
Stop the DriveClient service on the server.
Windows method
Command Prompt method
Use the following commands at the command prompt to stop and restart the DriveClient agent:
-
Stop the DriveClient:
sc stop driveclient
-
Query the DriveClient until it returns
STOPPED
:sc query driveclient
-
Restart the DriveClient:
sc start driveclient
-
Verify the DriveClient agent is connected through the Cloud Backup control panel.
Powershell method
Use the following commands in Powershell to stop and restart the DriveClient agent:
-
Stop the DriveClient:
Stop-Service -Name "driveclient"
-
Query the DriveClient until it returns
STOPPED
:Get-Service | where-object {$_.name -like '*driveclient*'}
-
Restart the DriveClient:
Start-Service -Name "driveclient"
-
Verify the DriveClient agent is connected through the Cloud Backup control panel.
Task Manager method
Use the following commands in the Task Manager to stop and restart the DriveClient agent:
- Right-click driveclient.exe and select End Process or End Process Tree.
- Right-click driveclient.exe and select Start.
- Verify the DriveClient agent is connected through the Cloud Backup control panel.
Linux method
Use the following commands in Linux® to stop and restart the DriveClient agent:
Init.d method
-
Stop the DriveClient:
[user@server ~]$ sudo service driveclient stop
-
Verify the DriveClient is stopped:
[user@server ~]$ sudo ps -ef | grep driveclient
If the DriveClient does not stop, you can force DriveClient to stop by running the following command:
[user@server ~]$ sudo killall -9 driveclient
-
Restart the DriveClient service:
[user@server ~]$ sudo service driveclient start
-
Verify the DriveClient agent is connected through the Cloud Backup control panel.
Systemd method
-
Stop the DriveClient:
[user@server ~]$ sudo systemctl stop driveclient
-
Verify the DriveClient is stopped:
[user@server ~]$ sudo ps -ef | grep driveclient
If the DriveClient does not stop, you can force DriveClient to stop by running the following command:
[user@server ~]$ sudo killall -9 driveclient
-
Restart the DriveClient service:
[user@server ~]$ sudo systemctl start driveclient
-
Verify the DriveClient agent is connected through the Cloud Backup control panel.
Use the Feedback tab to make any comments or ask questions. You can also start a conversation with us.
Updated 12 months ago