Windows

You can start and stop DTP Enterprise Pack from the Windows Start menu. Right-click the Start Enterprise Pack application and choose Run as administrator.

You can also use the Windows services interface to start and stop DTP Enterprise Pack.

Linux

  1. Open a command prompt and navigate to the <DTP_INSTALL>/dtpservices directory.
  2. Run the dtpservices.sh script with the start argument:

    ./dtpservices.sh start 

You can also stop and start DTP Enterprise Pack applications from the DTP console. See Starting DTP Services on Linux

The start argument starts Extension Designer and the database.

To stop DTP Enterprise Pack applications, run the dtpservices.sh script with the stop argument:

dtpservices.bat stop

The following table lists all available commands:

CommandOutput
dtpservices.sh startStarts all servers and the database. Also see Configuring Log Rotation for the Database.
dtpservices.sh stopStops all servers and the database.
dtpservices.sh statusReports the status for DTP Enterprise Pack applications and services. If you are experiencing issues with Extension Designer or any of your flows, run this command to verify that components and services are running.

Potential Errors When Stopping on Linux

In some unexpected instances, you may see the following message when running the stop on Linux:    

"Time out on DTP Enterprise Pack process termination. Please kill all processes manually. (Refer to the documentation)"

This message only triggers if any of the children processes of the main DTP Enterprise Pack application (typically one of the service processes) started but was not killed completely. These processes must be terminated before starting DTP Enterprise Pack again. 

  1. Run following command:    
    pgrep node or pgrep -f <installation home>/nodejs/bin/node
    This command will print out all processes that DTP Enterprise Pack started.
  2. Run the kill command using the same argument to kill these process:
    pkill node 
    or
    pkill -f <installation home>/nodejs/bin/node
  • No labels