validate service

validate service administers the Validate Servers.

You can manage the Validate servers remotely on Unix with SSH, or on Windows with Windows Services administration. Otherwise, you must issue the start, restart and stop commands locally.

For the remaining validate service subcommands, the projects_root directory must be visible from the machine you're logged into.

Usage

validate service [common-options] <subcommand> [options]

Example

validate service --projects-root C:\Validate 2024.1 Server\projects_root start license

Common options

Name (and short name) Description
--help display this help
--projects-root (-r) path to projects_root directory where the servers are running. Mandatory for all validate service commands.
--verbose print verbose information about program execution, which can help to troubleshoot errors
--version print version information

Examples variables

The examples in this article use the following variables:

  • <service_name> can be one of:
    • database
    • license
    • klocwork
  • <projects_root> is the projects_root where the servers are running

validate service check

Use the validate service check command to check the status of all of the Validate Servers, or an individual Validate Server.

If you are running the Validate Servers as Windows Services, which is the default setup, you must use Windows Services administration to start, stop, and check the Validate Servers, instead of validate service.

Usage

validate service --projects-root <projects_root> check [<service_name>]

Examples

To check the status of all Validate Servers:

validate service --projects-root C:\Validate\projects_root check

To check the status of the License Server:

validate service --projects-root C:\Validate\projects_root check license 

validate service get-service-properties

Use the validate service get-service-properties command to view the host name and port number of the Validate servers.

Usage

validate service --projects-root <projects_root> get-service-properties <service_name>

Examples

validate service --projects-root C:\Validate\projects_root get-service-properties klocwork

validate service list-services

Use this command to list the Validate Servers.

Usage

validate service --projects-root <projects_root> list-services 

Examples

validate service --projects-root C:\Validate\projects_root list-services 

validate service migrate

Use this command to migrate your projects_root. Migrating a project will also migrate all the streams nested under it. For supported upgrade paths and specific migration use cases, see Migrate your projects_root directory.

Usage

validate service --migrate

Examples

validate service --migrate --exclude-projects-file C:/exclude.txt --priority-projects-file C:/priority.txt

Options

Name (and short name) Description
--migrate (-m) migrate projects_root
--exclude-projects-file (-x) <string> specify an exclusion file to exclude projects from migration. Only base projects can be excluded. Individual streams cannot be excluded
--priority-projects-file (-y) <string> specify a priority projects file to prioritize migration order. Only base projects can be prioritized. Individual streams cannot be prioritized

validate service restart

Use this command to stop and then restart all or individual Validate Servers in one step.

If you are running the Validate Servers as Windows Services, which is the default, you must use Windows Services administration to start, stop, and check the Validate Servers, instead of validate service.

You can manage the Validate Servers remotely on Unix with SSH, or on Windows with Windows Services administration. Otherwise, you must issue the start, restart, and stop commands servers locally.

Usage

validate service --projects-root <projects_root> restart [<service_name>] 

Examples

To restart all Validate Servers:

validate service --projects-root C:\Validate\projects_root restart 

To restart the License server:

validate service --projects-root C:\Validate\projects_root restart license 

validate service set-service-property

Use this command to set properties for the Validate servers.

Important: You must stop the relevant server before running this command. See validate service stop

Usage

validate service --projects-root <projects_root> set-service-property <service_name> <property> <value> 
  • <service_name> is one of:
    • database
    • license
    • klocwork
  • <property> is one of the properties from the table below
Property Description Default value Applies to these servers
append.license.logging

To append instead of overwrite the <projects root>/logs/license.report.log file when restarting the server, use this property set to "true" in conjunction with the license service.

Example: validate service set-service-property license append.license.logging true

This setting is needed when running a license server from the configured projects root. It is not used if you configure your projects root to use a license server hosted elsewhere.

   
host the host name of the specified server localhost all
memory The amount of memory available for the server. Must be a valid Java -Xmx value, for example 2G. 1G Tomcat
port the port number used by the specified server License Server: 27000 Database Server: 3306 Validate Server: 8080 all

validate service setup

Use this command to set up and initialize additional projects_root directories.

A single projects_root directory is created automatically during installation.

A projects_root directory is the data location for the Validate servers and applications. It contains Validate server settings and information about integration projects and build analysis runs. It also stores the Validate license file. The default location is <Server_install>/projects_root.

If your project_root directory is not in the default location, you need to specify its location, as well as the location of the additional projects_root you want to create.

If you need to create additional projects_root directories, contact Perforce Customer Support for more information.

Usage

validate service --projects-root <new_projects_root> setup [options] 

where:

  • <new_projects_root> is the path to the projects_root you want to create. Note that the parent directory of this directory must already exist.

Important: The maximum length of the path to the projects_root is 68-72 characters, depending on the length of the Database server port number (1-5 digits).

Example 1 (default location used for projects_root)

validate service --projects-root C:\Validate\projects_root_2 setup 

Example 2 (non-default location used for projects_root)

validate service setup --old-pr C:\mydatabase\projects_root --projects-root C:\mydatabase\projects_root_2 

Options

Name Description
--license <arg> specify the license file. Use this option to copy the specified license file to the new projects_root directory.
--old-pr <arg> specify an existing projects_root directory. Use this option to copy server settings from an existing projects_root.

validate service start

Use this command to start all or individual Validate Servers.

If you are running the Validate Servers as Windows Services, which is the default setup, you must use Windows Services administration to start, stop, and check the Validate Servers, instead of validate service.

You can manage the Validate Servers remotely on Unix with SSH, or on Windows with Windows Services administration. Otherwise, you must issue the start, restart, and stop commands on the servers locally.

Usage

validate service --projects-root <projects_root> start [<service_name>] 

Examples

To start all Validate Servers:

validate service --projects-root C:\Validate\projects_root start 

To start the Validate Server:

validate service --projects-root C:\Validate\projects_root start web

Note on migrate option

The --migrate option is used to migrate a projects_root from a previous version of Validate. For information on upgrading, see Upgrading from a previous version.

validate service stop

Use this command to stop all or individual Validate Servers.

If you are running the Validate Servers as Windows Services, which is the default setup, you must use Windows Services administration to start, stop, and check the Validate Servers, instead of validate service.

You can manage the Validate Servers remotely on Unix with SSH, or on Windows with Windows Services administration. Otherwise, you must issue the start, restart, and stop commands servers locally.

Usage

validate service --projects-root <projects_root> stop [<service_name>]

Examples

To stop all Validate Servers:

validate service --projects-root C:\Validate\projects_root stop 

To stop the Validate Server:

validate service --projects-root C:\Validate\projects_root stop web