...
Code Block |
---|
[Unit] Description=Parasoft DTP Server # Wait for the network services to be started first Wants=network.target After=network.target # When the database is MySQL and on the local machine... # Wants=mysql.service # After=mysql.service [Service] # User/Group should be consistent with DTP installation owner User=devtest Group=devtest Type=simple ExecStart=/home/devtest/parasoft/dtp/bin/dtp.sh run ExecStop=/home/devtest/parasoft/dtp/bin/dtp.sh stop # Set maximum file descriptor limit to max LimitNOFILE=65536 SuccessExitStatus=143 SIGKILL Restart=on-failure [Install] WantedBy=multi-user.target |
For DTP Data Collector: Scroll Pagebreak
Code Block |
---|
[Unit] Description=Parasoft DTP Data Collector Service # Wait for the network services to be started first Wants=network.target After=network.target # When the database is MySQL and on the local machine... # Wants=mysql.service # After=mysql.service [Service] # User/Group should be consistent with DTP installation owner User=devtest Group=devtest Type=simple ExecStart=/home/devtest/parasoft/dtp/bin/datacollector.sh run ExecStop=/home/devtest/parasoft/dtp/bin/datacollector.sh stop # Set maximum file descriptor limit to max LimitNOFILE=65536 SuccessExitStatus=143 SIGKILL Restart=on-failure [Install] WantedBy=multi-user.target |
For DTP Enterprise Pack (if installed): Scroll Pagebreak
...