Stopping and starting services for DLP on Linux
search cancel

Stopping and starting services for DLP on Linux

book

Article ID: 160469

calendar_today

Updated On:

Products

Data Loss Prevention Endpoint Prevent Data Loss Prevention Network Monitor Data Loss Prevention Enforce Data Loss Prevention Network Protect Data Loss Prevention

Issue/Introduction

Learn how to start, stop, disable, or restart services for Symantec Data Loss Prevention (DLP) for Linux.

Resolution

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