Learn how to start, stop, disable, or restart services for Symantec Data Loss Prevention (DLP) for Linux.
DLP runs as a set of services in Linux. There are commands that simplify managing these DLP services.
To stop, start, or restart a service, use the service command as root:
# service < option > | --status-all | [ service_name [ command | --full-restart ] ]
For example:
service SymantecDLPDetectionServerControllerService stop
service SymantecDLPIncidentPersisterService stop
service SymantecDLPManagerService stop
service SymantecDLPNotifierService stop
You can also use this command to see the status of the DLP services:
# service --status-all |grep -i dlp
Example output:
SymantecDLPDetectionServerControllerService is running (3497)
SymantecDLPIncidentPersisterService is running (3987)
SymantecDLPManagerService is running (3077)
SymantecDLPNotifierService is running (3150)
To stop, start, or restart a service, you can use also the systemctl command as root:
# systemctl [ option ] [ service_name ]
For example:
systemctl stop SymantecDLPDetectionServerControllerService
systemctl stop SymantecDLPIncidentPersisterService
systemctl stop SymantecDLPManagerService
systemctl stop SymantecDLPNotifierService
You can also use this command to see the status of the DLP services:
# systemctl | grep SymantecDLP
Example output:
SymantecDLPDetectionServerControllerService.service loaded active running SYSV: Controls Detection Servers in the Symantec DLP Platform
SymantecDLPIncidentPersisterService.service loaded active running SYSV: Writes incidents generated by the Symantec DLP Platform to the database
SymantecDLPManagerService.service loaded active running SYSV: Provides reporting and management for the Symantec DLP Platform
SymantecDLPNotifierService.service loaded active running SYSV: Provides database notification services for the Symantec DLP Platform
To disable a DLP service so that it does not start after restarting the computer, use chkconfig(8). You can also use this command to enable it later.
# chkconfig [--level <levels>] <name> <on|off|reset>
To disable a service, use the following command:
# chkconfig <service> off
To enable a service, use the following command:
# chkconfig <service> on