= Perforce Helix Server Deployment Package (for Windows) Perforce Professional Services :revnumber: v2021.2 :revdate: 2022-04-19 :doctype: book :icons: font :toc: :toclevels: 5 :sectnumlevels: 4 :xrefstyle: full == Preface The Server Deployment Package (SDP) is the implementation of Perforce's recommendations for operating and managing a production Perforce Helix Core Version Control System. It is intended to provide the Helix Core administration team with tools to help: * Simplify Management * High Availability (HA) * Disaster Recovery (DR) * Fast and Safe Upgrades * Production Focus * Best Practice Configurables * Optimal Performance, Data Safety, and Simplified Backup This guide is intended to provide instructions of setting up the SDP to help provide users of Helix Core with the above benefits. This guide assumes some familiarity with Perforce and does not duplicate the basic information in the Perforce user documentation. This document only relates to the Server Deployment Package (SDP) all other Helix Core documentation can be found here: https://www.perforce.com/support/self-service-resources/documentation[Perforce Support Documentation] *Please Give Us Feedback* Perforce welcomes feedback from our users. Please send any suggestions for improving this document or the SDP to consulting@perforce.com. :sectnums: == Overview The SDP has four main components: * Hardware and storage layout recommendations for Perforce. * Scripts to automate critical maintenance activities * Scripts to aid the setup and management of replication (including failover for DR/HA) * Scripts to assist with routine administration tasks. Each of these components is covered, in detail, in this guide. === Windows SDP vs Unix SDP The principles of the SDP are the same on both operating systems. The similarities are: * Similar logical structure for file/directory layout (starting from `/p4` and `c:\p4` respectively) * This logical structure can be mapped to flexible physical structure for desired performance and redundancy criteria * Support for offline checkpointing (`root` vs `offline_db`) using an automated daily script * Support for regular archive verification using an automated script * Emailing of results for basic monitoring * Some things like triggers written in Python or Perl are cross platform The differences are: * Unix scripts/tools are mainly written in Bash, whereas Windows mainly uses Powershell * Windows Perforce Helix Core deployments tend to be simpler than Unix ones (fewer replicas etc), so there are more scripts for Unix SDP to manage replicas. === Downloading SDP This is available: https://swarm.workshop.perforce.com/files/guest/perforce_software/sdp/downloads/sdp.Windows.zip The above can be downloaded using a browser, or with PowerShell: $src = 'https://swarm.workshop.perforce.com/files/guest/perforce_software/sdp/downloads/sdp.Windows.zip' $dest = 'sdp.Windows.zip' # The following statement speeds up the download considerably $ProgressPreference = "SilentlyContinue" Invoke-WebRequest -Uri $src -OutFile $dest See <<_clean_installation>> for where to put it after downloading. === Checking the SDP Version Once installed, the SDP `Version` file exists as `C:\p4\sdp\Version`. This is a simple text file that contains the SDP version string. The version can be checked using a command like `TYPE`, as in this sample command: C:\p4\sdp> TYPE Version Rev. SDP/MultiArch/2020.1/27955 (2021/08/13) That string can be found in Change History section of the link:ReleaseNotes.html[SDP Release Notes]. This can be useful in determining if your SDP is the latest available, and to see what features are included. == Configuring the Perforce Server This chapter tells you how to configure a Perforce server machine and an instance of the Perforce Server. These topics are covered more fully in the https://community.perforce.com/s/article/2529[Knowledge Base]; this chapter covers the details most relevant to the SDP. The SDP can be installed on multiple server machines, and each server machine can host one or more Perforce server instances. (In this guide, the term _server_ refers to a Perforce server instance unless otherwise specified.) Each server instance is assigned a number. This guide uses instance number 1 in the example commands and procedures. Other instance numbers can be substituted as required. This chapter also describes the general usage of SDP scripts and tools. === Volume Layout and Hardware To ensure maximum data integrity and performance, use three different physical volumes for each server instance. Three volumes can be used for all instances hosted on one server machine, but using three volumes per instance reduces the chance of hardware failure affecting more than one instance. NOTE: While re recommend 3 volumes (drives), it is often practical to put all the files onto a single physical volume. We do NOT recommend the use of the C: drive (operating system root)! * *Perforce metadata (database files):* Use the fastest volume possible, ideally RAID 1+0 on a dedicated controller with the maximum cache available on it. This volume is normally called `metadata`. * *Journals and logs:* Use a fast volume, ideally RAID 1+0 on its own controller with the standard amount of cache on it. This volume is normally called `logs`. If a separate logs volume is not available, put the logs on the depotdata volume. * *Depot data, archive files, scripts, and checkpoints*: Use a large volume, with RAID 5 on its own controller with a standard amount of cache or a SAN or NAS volume. This volume is the only volume that MUST be backed up (although we recommend also backing up `logs`). The backup scripts place the metadata snapshots on this volume. This volume can be backed up to tape or another long term backup device. This volume is normally called `depotdata`. If three controllers are not available, put the logs and depotdata volumes on the same controller. Do not run anti-virus tools or back up tools against the metadata volume(s) or logs volume(s), because they can interfere with the operation of the Perforce server. NOTE: The SDP assumes (but does not require) the three volumes described above. It can easily be configured to use a single volume on which all data is stored. View Figure 2: Volume Layout (below), viewed from the top down, displays a Perforce _application_ administrator's view of the system, which shows how to navigate the directory structure to find databases, log files, and versioned files in the depots. Viewed from the bottom up, it displays a Perforce _system_ administrator's view, emphasizing the physical volume where Perforce data is stored. Both Unix and Windows installation of the SDP now use symlinks (on Windows this is via the mklink tool). image:media/fs_layout.png[fs_layout.png,width=576,height=435] Figure 2: Volume Layout The links are shown as below on a Windows installation. Directory of c:\p4 20/06/2020 15:05 . 20/06/2020 15:05 .. 20/06/2020 15:05 common [f:\p4\common] 20/06/2020 15:05 config [f:\p4\config] 20/06/2020 15:05 1 [f:\p4\1] Directory of c:\p4\1 20/06/2020 15:05 . 20/06/2020 15:05 .. 20/06/2020 15:05 bin 20/06/2020 15:05 checkpoints 20/06/2020 15:05 depots 20/06/2020 15:05 logs [g:\p4\1\logs] 20/06/2020 15:05 offline_db [e:\p4\1\offline_db] 20/06/2020 15:05 root [e:\p4\1\root] 20/06/2020 15:05 ssl 20/06/2020 15:05 tmp === Instance Names Traditionally the SDP has used integers for instance names which show up in the paths above, for example C:\p4\ *1*\root. However it is increasingly the case that alphanumeric names are used for instances, e.g. C:\p4\ *_Acme_*\root. Commonly organizations strive to use a single Perforce instance, one logical data set, which may be replicated around the globe. Using a single instance optimizes collaboration and simplifies code access for all development activity. When there is a single instance, the name ‘*_1_*' is as good as any. When there is more than one instance, e.g. if there are isolated silos of development activity, an alphanumeric name may be more helpful than an integer for identifying the data set, such as *_Acme_* or perhaps *_LegacyApps_*. Another instance is sometimes to develop and test things like Perforce trigger scripts before rolling them out to the live production instance, or to provide a standing internal training data set. In any case it is worth thinking and planning your naming, particularly if you have multiple instances including replicas of different types and these are located on different hosts. If you are using instance numbers, then an example configuration where there are 2 master server instances, each with a replica, might be: [cols=",,",options="header",] |=== |*Server hostname* |*Instance ID* |*Port* |p4d-sfo-01 |1 |1666 |sfo-p4d-01 |2 |2666 |sfo-p4d-02 |1 |1666 |sfo-p4d-02 |2 |2666 |=== For consistency, instances with same ID should refer to the same logical data set, they just run on different machines. Alternatively, alphanumeric names can be clearer and easier: [cols=",,",options="header",] |=== |*Server hostname* |*Instance ID* |*Port* |sfo-p4d-01 |Acme |5000 |sfo-p4d-01 |Test |5999 |sfo-p4d-02 |Acme |5000 |sfo-p4d-02 |Test |5999 |=== Some sites apply a convention to the port number to identify whether the P4PORT value is that of a master server, a broker, replica, edge server, or proxy. In such cases the first digit is reserved to identify the instance, and the remaining 3 digits identify the target service, e.g. 666 for a broker, 999 for a master server, 668 for a proxy. Host naming conventions vary from site to site, and often have local naming preferences or constraints. These examples the the code of the nearest major airport, sfo in this case, as a location code. Using location in the hostname is merely an example of a site preference, not necessarily a best practice. End user *P4PORT* values typically do not reference the actual machine names. Instead they reference an alias, e.g. perforce or sfo-p4d (without the -01). This helps make failover operations more transparent. == Installing the Perforce Server and the SDP This chapter tells you how to install a Perforce server instance in the SDP framework. For more details about server installation, refer to the https://www.perforce.com/perforce/doc.current/manuals/p4sag/Content/P4SAG/install.windows.html[Perforce System Administrator's Guide]. Many companies use a single Perforce Server to manage their files, while others use multiple servers. The choice depends on network topology, the geographic distribution of work, and the relationships among the files being managed. If multiple servers are run, assign each instance a number and use that number as part of the name assigned to depots, to make the relationship of depots and servers obvious. See the discussion above on Instance Names. === Clean Installation In this section we describe the server and SDP installation process on Windows. The process consists of: [arabic] . Initial setup of the file system and configuration files. . Running the SDP configuration script. . Starting the server and performing initial configuration. ==== Pre-requisites The following are required (details mentioned below): * Administrator account on the server * Python installed (see below) * Perforce Helix Core executables (p4.exe/p4d.exe - see below) * Powershell 5.x or greater (default on Windows 10 or Windows Server 2016+) Optional (but recommended): * Perforce Helix Visual client (P4V - optional but very useful, together with P4Admin - the Admin tool) * An editor (Notepad will do, but https://notepad-plus-plus.org/downloads/[Download Notepad++]) * https://github.com/bmatzelle/gow/releases[GOW (Gnu on Windows)] - optional but very useful for parsing log files etc. ==== Configuring Powershell The scripts now use Powershell rather than .BAT files due to improved error handling and options, and code re-use (via a single included module rather than duplication of functionality in every script). This also allows us to keep the scripts more closely aligned with the functionality of the Unix scripts. It is important to enable local scripts to be run. The following command must be run within an Powershell Administrator prompt: get-executionpolicy The result needs to be either `RemoteSigned` or `Unrestricted`. If not then set it as below. For Windows 10, Windows Server 2016 or later, run the following commands as Administrator: * _x86_ + Open `C:\Windows\SysWOW64\cmd.exe` + Run the command: powershell Set-ExecutionPolicy RemoteSigned * _x64_ + Open `C:\Windows\system32\cmd.exe` + Run the command: powershell Set-ExecutionPolicy RemoteSigned Use `get-executionpolicy` to check the policy has been updated. You may need to ensure that the various scripts are not "blocked" - right click in Windows Explorer and check Properties options. ==== Initial setup Prior to installing the Perforce server, perform the following steps. [arabic] . Mount the volumes for the three-volume configuration described in Volume Layout and Hardware. The procedure assumes the drives are mapped as follows: * Metadata on `e:` * Depotdata on `f:` * Logs on `g:` TIP: If you do not have a logs volume, put the logs on the depot data volume. If you have only a single data volume, e.g. `d:` then set all the values to that volume. [start=2] . Copy the SDP to the `f:\sdp` directory (let us call this `%SDP%`). IMPORTANT: It is likely that Windows will have blocked the various scripts and files for security reasons. It is important to run the following command (in Powershell window as Administrator) dir -Path f:\sdp -Recurse | Unblock-File [start=3] . Customize the following for your environment. It requires you to identify the master server and all replicas that we need to setup for the SDP, including instance names, hostnames, etc. This information is all in a single file: %SDP%\Server\Windows\setup\sdp_master_config.ini . Download and install Python, e.g. from http://www.python.org[www.python.org]. We use Python 2.7.x (latest) and 3.10.x (latest). 64-bit version is fine. Typically we install to default dir, e.g. c:\python27. For initial installation we only require base Python. For subsequent scripting you may wish to install P4Python (e.g. using pip). . Other tools we find useful: Notepad++ and GOW (Gnu on Windows - Unix command line utilities such as wc, head, tail). These are recommended but not strictly required. . Download to directory `%SDP%\Server\Windows\setup` the desired release of p4.exe and p4d.exe. See next section <<_downloading_p4d>> ===== Downloading p4d For example, for Helix Core for release 2021.2 on 64 bit Windows, use this URL: http://ftp.perforce.com/perforce/r21.2/bin.ntx64 From that directory listing, select `p4.exe` and then `p4d.exe` to download each of those files. If you are using 32 bit Windows (unusual these days), substitute `bin.ntx86` for `bin.ntx64` in the URL above. The following works within Powershell (note the first statement will speed up the downloads considerably): $ProgressPreference = "SilentlyContinue" Invoke-WebRequest "http://ftp.perforce.com/perforce/r21.2/bin.ntx64/p4.exe" -OutFile "p4.exe" Invoke-WebRequest "http://ftp.perforce.com/perforce/r21.2/bin.ntx64/p4d.exe" -OutFile "p4d.exe" Optional - reset progress bar to default for the active powershell session: $ProgressPreference = "Continue" Validate what you have downloaded - the following should output suitable information, including a line with the version: .\p4.exe -V Rev. P4/NTX64/2021.2/2273812 (2022/04/14). .\p4d.exe -V ==== Running Configuration script The `create_env.py` script, available in `%SDP%\Server\Windows\setup`, sets up the basic directory structure used by the SDP. It creates .bat files to register the Perforce service as Windows services. It parses and validates the `sdp_master_config.ini` file in the same directory. You need to customize this `sdp_master_config.ini` file. It contains lots of comments as to how to set the various configuration values. The following shows a sample config after editing: [source,ini] ---- [DEFAULT] SDP_P4SUPERUSER=perforce SDP_P4SUPERUSER_PASSWORD=SomeRandomPassword ADMIN_PASS_FILENAME=adminpass.txt mailfrom=perforce@example.com maillist=p4ra@example.com mailhost=mail.example.com mailhostport=25 EMAIL_PASS_FILENAME=emailpass.txt EMAIL_PASSWORD= KEEPCKPS=10 KEEPLOGS=20 LIMIT_ONE_DAILY_CHECKPOINT=false SDP_GLOBAL_ROOT=c: # Assuming output of `hostname` is this value, and we are using instance `1` [1:perforce-svr-01] SDP_SERVERID=Master SDP_SERVICE_TYPE=standard SDP_P4PORT_NUMBER=1666 # Everything on D: drive METADATA_ROOT=D: DEPOTDATA_ROOT=D: LOGDATA_ROOT=D: REMOTE_DEPOTDATA_ROOT= ---- Review the contents of `template_configure_new_server.bat` file which defines the recommended default configurable values for any server, and make any desired changes. This file will be parsed and used to create instance specific configuration files. After updating the configuration file, run `create_env.py` from the same directory. IMPORTANT: You must run this command from a CMD window which has *administrator* rights. cd %SDP%\Server\Windows\setup Edit and save changes: notepad sdp_master_config.ini Run the command to create the environment (by default it looks for the config file sdp_master_config.ini but this can be changed with -c option): Create_env.py The output will look something like this: D:\sdp\Server\Windows\setup>create_env.py INFO: Found the following sections: ['1:EC2AMAZ-LJ68A4I'] INFO: Config file written: sdp_config.ini INFO: The following directories/links would be created with the -y/--yes flag INFO: Creating target dir 'c:\p4' INFO: Creating target dir 'D:\p4\1' INFO: Creating target dir 'D:\p4\1' INFO: Creating link 'c:\p4\1' to 'D:\p4\1' INFO: Creating target dir 'D:\p4\common' INFO: Creating link 'c:\p4\common' to 'D:\p4\common' INFO: Creating target dir 'D:\p4\config' INFO: Creating link 'c:\p4\config' to 'D:\p4\config' INFO: Creating target dir 'c:\p4\common\bin' INFO: Creating target dir 'c:\p4\common\bin\triggers' INFO: Creating target dir 'c:\p4\1\bin' INFO: Creating target dir 'c:\p4\1\tmp' INFO: Creating target dir 'c:\p4\1\depots' INFO: Creating target dir 'c:\p4\1\checkpoints' INFO: Creating target dir 'c:\p4\1\ssl' INFO: Creating target dir 'D:\p4\1\root' INFO: Creating link 'c:\p4\1\root' to 'D:\p4\1\root' INFO: Creating target dir 'c:\p4\1\root\save' INFO: Creating target dir 'D:\p4\1\offline_db' INFO: Creating link 'c:\p4\1\offline_db' to 'D:\p4\1\offline_db' INFO: Creating target dir 'D:\p4\1\logs' INFO: Creating link 'c:\p4\1\logs' to 'D:\p4\1\logs' INFO: Copying 'D:\sdp\Server\Windows\p4\common\bin\create-filtered-edge-checkpoint.ps1' to 'c:\p4\common\bin\create-filtered-edge-checkpoint.ps1' INFO: Copying 'D:\sdp\Server\Windows\p4\common\bin\create-offline-db-from-checkpoint.bat' to 'c:\p4\common\bin\create-offline-db-from-checkpoint.bat' INFO: Copying 'D:\sdp\Server\Windows\p4\common\bin\create-offline-db-from-checkpoint.ps1' to 'c:\p4\common\bin\create-offline-db-from-checkpoint.ps1' : INFO: Copying 'D:\sdp\Server\Windows\setup\p4.exe' to 'c:\p4\1\bin' INFO: Copying 'D:\sdp\Server\Windows\setup\p4d.exe' to 'c:\p4\1\bin' INFO: Copying 'D:\sdp\Server\Windows\setup\p4d.exe' to 'c:\p4\1\bin\p4s.exe' INFO: Copying 'D:\sdp\Server\Windows\setup\sdp_config.ini' to 'c:\p4\config' INFO: Copying 'D:\sdp\Server\Windows\setup\Master_server.id' to 'c:\p4\1\root\server.id' INFO: Creating instance bat file 'c:\p4\1\bin\daily-backup.bat' INFO: Creating instance bat file 'c:\p4\1\bin\p4verify.bat' INFO: Creating instance bat file 'c:\p4\1\bin\replica-status.bat' INFO: Creating service configure commands on 'ec2amaz-lj68a4i' for instance '1' in install_services_ec2amaz-lj68a4i.bat The following commands have been created - but you are in report mode so no directories have been created install_services_ec2amaz-lj68a4i.bat configure_Master.bat You will also need to seed the replicas from a checkpoint and run the appropriate commands on those machines INFO: Running in reporting mode: use -y or --yes to perform actions. If the output looks correct then re-run the script with `-y` parameter to actually perform the copying of files and creation of directories and links. create_env.py -y ==== sdp_config.ini This file is written to `c:\p4\config`. It will look something like this (note the value `EC2AMAZ-LJ68A4I` is an example of the output of the `hostname` command - your value will be different): [1:EC2AMAZ-LJ68A4I] p4port=EC2AMAZ-LJ68A4I:1777 sdp_serverid=Master sdp_p4serviceuser= sdp_global_root=c: sdp_p4superuser=perforce admin_pass_filename=adminpass.txt email_pass_filename=emailpass.txt mailfrom=perforce@example.com maillist=p4ra@example.com mailhost=mail.example.com mailhostport=25 python=None remote_depotdata_root= keepckps=10 keeplogs=20 limit_one_daily_checkpoint=false remote_sdp_instance= p4target= The above are the values for a single master/commit server. If you configure a replica then these fields should be set to appropriate values: [1:EC2AMAZ-REPLICA] : sdp_p4serviceuser=svc_p4d_ha_aws : remote_depotdata_root=\\EC2AMAZ-LJ68A4I\d$ remote_sdp_instance=1 p4target=EC2AMAZ-LJ68A4I:1777 ==== Installing service(s) The above command will create a couple of files in that directory. The first is `install_services_.bat`, so on a machine where the hostname is `svrp4master`, it will be `install_services_svrp4master.bat` Validate the contents of this file and run it if it looks appropriate - this installs the service(s) with appropriate parameters. Please note that it is specific to the *hostname* that you specified inside `sdp_master_config.ini` - so it will only run on the correct host server. It should look something like: D:\sdp\Server\Windows\setup>install_services_ec2amaz-lj68a4i.bat D:\sdp\Server\Windows\setup>c:\p4\common\bin\instsrv.exe p4_1 "c:\p4\1\bin\p4s.exe" The service was successfully added! Make sure that you go into the Control Panel and use the Services applet to change the Account Name and Password that this newly installed service will use for its Security Context. D:\sdp\Server\Windows\setup>c:\p4\1\bin\p4.exe set -S p4_1 P4ROOT=c:\p4\1\root D:\sdp\Server\Windows\setup>c:\p4\1\bin\p4.exe set -S p4_1 P4JOURNAL=c:\p4\1\logs\journal D:\sdp\Server\Windows\setup>c:\p4\1\bin\p4.exe set -S p4_1 P4NAME=Master D:\sdp\Server\Windows\setup>c:\p4\1\bin\p4.exe set -S p4_1 P4PORT=1777 D:\sdp\Server\Windows\setup>c:\p4\1\bin\p4.exe set -S p4_1 P4LOG=c:\p4\1\logs\Master.log Note that if you have defined multiple instances in `sdp_master_config.ini` to run on this same hostname, then they will all be installed by this .bat file. ==== Start the server to test Having installed the service, we now test that it will start: `c:\p4\common\bin\svcinst start -n p4_`, e.g. c:\p4\common\bin\svcinst start -n p4_1 Or c:\p4\common\bin\svcinst start -n p4_Master If the service fails to start, then examine the log file for the reason (e.g. missing license file) in `c:\p4\\logs`. Ensure the server is running (specify appropriate port): p4 -p 1666 info Use `c:\p4\common\bin\svcinst stop -n p4_` to stop the service if required. ==== Converting the p4d service to use SSL There are several things to do: . Edit `c:\p4\config\sdp_config.ini` file: + Change the value of `p4port` to include `ssl:` prefix + E.g. p4port=ssl:EC2AMAZ-LJ68A4I:1777 . Update the service to define the `P4PORT` value with `ssl:` prefix: D:\sdp\Server\Windows\setup>c:\p4\1\bin\p4.exe set -S p4_1 P4PORT=ssl:1777 . Specify `P4SSLDIR` for service: D:\sdp\Server\Windows\setup>c:\p4\1\bin\p4.exe set -S p4_1 P4SSLDIR=c:\p4\1\ssl . Set your environment appropriately and generate a local certificate for p4d: c:\p4\common\bin\p4env.bat 1 set P4SSLDIR=c:\p4\1\ssl p4d -Gc . Validate that there is a file `certificate.txt` in `c:\p4\1\ssl` . Stop and restart the service: c:\p4\common\bin\svcinst stop -n p4_1 c:\p4\common\bin\svcinst start -n p4_1 . Try and connect to the service, and save trust values: p4 info p4 trust ==== Create P4Admin Shortcuts Desktop shortcuts simplify setting up the SDP shell environment, making it easy to interact with the configured Helix Core service. Create a shortcut for each SDP instance on the Desktop of the user account used to manage the Perforce Helix services, and/or the human administrators who login directly to the server machine. The shortcut brings up a Windows Command Prompt (`cmd.exe`) with the SDP environment configured. For each SDP instance configured, create a separate shortcut named `P4Admin N`, replacing `N` with the SDP instance name. For example, if the instance name is `1` (the default), create a shortcut named `P4Admin 1`. ===== Create the `PromptSetup.bat` File In the `C:\p4\N\bin` directory for the instance (e.g. `C:\p4\1\bin\PromptSetup.bat` for SDP instance `1`), create a file named `PromptSetup.bat`. It should have these contents: @ECHO OFF CLS CALL C:\p4\common\bin\p4env.bat 1 In the file contents, replace the `1` with the appropiate SDP instance name. ===== Create the Shortcut To create each `P4Admin N` shortcut: On the Windows Desktop, point the mouse anywhere in the desktop background, right-click, and select `New` -> `Shortcut`. The `Create Shortcut` dialog will come up prompting: `Type the location of the item:`. In the text box, enter: `C:\Windows\System32\cmd.exe /K C:\p4\N\bin\PromptSetup.bat` replacing the `N` with the appropriate instance name, and then click Next. Then when it prompts `Type a name for this shortcut:`, enter: `P4Admin N` again replacin the `N` with the appropriate instance name, and then click `Finish`. Next, right-click on the new shortcut, and click `Properties`. On the `P4Admin Properties` dialog, click the `Advanced` button. On the `Advanced Properties` dialog, check the `Run as administrator` checkbox, and then click OK. Next, back on the `P4Admin Properties`, in the `Start in:` field, enter the value `C:\p4\N\bin` (replacing `N` with the instance name), and then click `Apply` and then `OK`. TIP: Note: Changing the `Start in` is only informational, as a command prompt that starts as Administrator will start in the `C:\Windows\System32` folder. But then it will call the `PromptSetup.bat`, which does a CD into that folder, so you do end up in a folder like `C:\p4\1\bin`. ==== Applying configurables to the server instance For each instance defined in `sdp_master_config.ini`, a configuration .bat file will be created, called `configure_.bat`, so for instance master, it will be `configure_master.bat`. Review the contents of the file and make any desired changes. You will only be able to run the .bat file if you have started the server instance as per previous section. If an instance is a replica (or similar), then you should apply the configurables to the master server and then checkpoint it before seeding the replica - see the Distributing Perforce guide. ==== Configuring the server To configure the server, perform the following steps: [arabic] . Make sure your server is running (specify appropriate port below): p4 -p 1666 info . Create your Perforce administrator account within the Perforce repository, using the user name and password specified in `sdp_master_config.ini`. . Optional. To create a Perforce stream depot called PerforceSDP and load the SDP, issue the following commands: p4 depot -t stream -o PerforceSDP | p4 depot -i p4 stream -t mainline -o //PerforceSDP/main | p4 stream -i cd /d C:\sdp p4 client -S //Perforce/main -o PerforceSDP_ws | p4 client -i p4 -c PerforceSDP_ws reconcile p4 -c PerforceSDP_ws submit -d "Added SDP." . Optional. To create a Perforce spec depot, issue the following commands: p4 depot -t spec -o spec | p4 depot -i + Then add the following to the Protections table, near the bottom (about super user entries), to hide specs which could have security implications: list user * * -//spec/protect.p4s list user * * -//spec/triggers.p4s + Then update specs in the depot with this command: p4 admin updatespecdepot -a . Optional. To create an unload depot, issue the following command: p4 depot -t unload -o unload | p4 depot -i . Optional. To delete the default Perforce depot named depot, issue the following command: `p4 depot -d depot`. Create one or more depots as required to store your files, following your site's directory naming conventions. ==== Verifying your server installation To verify your installation, perform these steps: . Issue the p4 info command, after setting appropriate environment variables. If the server is running, it will display details about its settings. . Create a client workspace and verify that it is archived in the spec depot and written to the `c:\p4\1\depots\specs\client` (assuming instance `1`) directory. . Add a file to the server and verify that the archive file gets created in the corresponding directory under `c:\p4\1\depots`. ==== Scheduling maintenance scripts In Windows 2012 or later you should use the Task Scheduler. We recommend that you create a folder called Perforce at the top level in which to create your tasks (otherwise they can be hard to find when you next look in Task scheduler!). Note that the `schtasks` command can be useful from command line, or `taskschd.msc` to get the control panel equivalent. The recommendation is to run the following scheduled tasks on a master server: * `daily-backup.bat` every day at say 1:00 am (or similar time). * `p4verify.bat` to run once a week, say at 2:00am on a Saturday. + TIP: Monitor `p4verify.bat` to see how long it takes to run (the log file is `c:\p4\\logs\p4verify.log`). It is possible to run this script on a replica instead of the master if you have a replica setup, and if it runs for too long. If you are on a replica server, then the recommendation is to run these scheduled tasks: * `replica-status.bat` to run nightly. * `c:\p4\common\bin\rotate-log-files.bat ` to run nightly. This prevents log files getting too big. These are all setup in a similar way to the screenshots below <<_daily_backup_bat>>, with the exception of 'rotate-log-files.bat' which requires an argument to be specified which is the , e.g. `1` or `master`. IMPORTANT: By default Windows Scheduled Tasks are run with a lower priority than normal tasks. To have your daily-backup prioritised as normal tasks, follow this advice (customers report 4 hours reduced to 1 hour!) - reset priority e.g. from 7 to 5: https://aavtech.site/2018/01/windows-task-scheduler-changing-task-priority/ ===== Daily-backup.bat ====== Task Basics image:media/task_basics.png[task_basics.png,width=426,height=324] ====== Trigger screen Set the time to run like this: image:media/task_trigger.png[task_trigger.png,width=427,height=373] ====== Action Program: `c:\p4\\bin\daily-backup.bat` e.g. Program: `c:\p4\1\bin\daily-backup.bat` Program: `c:\p4\master\bin\daily-backup.bat` Where `1` or `master` is your instance name. Note that no parameter is required as those scripts hard code the instance id. ==== Saving your configuration files in Perforce It is sensible to create a Perforce workspace and to store the configuration files in Perforce. Typically the depot root might be something like `//perforce/sdp`. If you have many machines, then you might use `//perforce/sdp/` using either a physical or a logical name for the machine. A typical workspace view (e.g. for workspace called p4admin.sdp and for instance master), might be: Root: c:\p4 View: //perforce/sdp/p4/*1*/bin/... //p4admin.sdp/*1*/bin/... //perforce/sdp/p4/common/bin/... //p4admin.sdp/common/bin/... //perforce/sdp/p4/config/... //p4admin.sdp/config/... You would have appropriate workspaces for each machine, and appropriate lines for each instance on that machine. ==== Archiving configuration files Now that the server is running properly, copy the following configuration files to the depotdata volume for backup: * The scheduler configuration. * Cluster configuration scripts, failover scripts, and disk failover configuration files. ==== Configuring a New Instance on an existing machine It is possible to add a new instance to an existing machine. Edit the `sdp_master_config.ini` and add a new section for the new instance. The run `create_env.py`, specifying to just create the new instance. cd %SDP%\Server\Windows\setup notepad sdp_master_config.ini create_env.py -c sdp_master_config.ini --instance Replica2 If the output looks correct then re-run the script with `-y` parameter to actually perform the copying of files and creation of directories and links. ==== Upgrading an existing (non SDP) Windows installation The easiest way to upgrade a service instance is: [arabic] . Create new `sdp_master_config.ini` file to describe the existing installations. . Run `create_env.py` to create the new environment . Run `install_services_.bat` to create new services. [loweralpha] .. Stop existing services .. Manually move the following files from their existing to new locations: [lowerroman] ... `db.*` files ... `license` ... log file(s) ... `journal` ... checkpoints and archived journals .. Start new service and check it runs successfully .. Adjust the depot root paths (with 2014.1 or greater use the configurable `server.depot.root`, otherwise manually edit depot specs and install the appropriate trigger for new depot specs) Simple reporting commands to compare before/after include: p4 changes -m20 -l -t > changes.txt p4 depots > depots.txt p4 verify -q //...@yyyy/mm/dd,#head (specifying a few days before the cutover) ==== Upgrading an older Windows SDP installation Older versions of the Windows SDP (pre June 2014) stored configuration values for each instance in a p4env.bat file within the `p4\common\bat` directory. They also didn't link all directories from `c:\p4`, but instead used drives such as `E:`, `F:` and `G:` and paths on those drives. The easiest way to upgrade (most of the work can be done without stopping the service) is: . Ensure that existing instance files are checked in to Perforce (`instance\bin` and `common\bin` files), for example in workspace p4admin.sdp.orig (use a root directory of %DEPOTDATA% - see next step). . Extract existing values from `p4env.bat` such as mailfrom, mailhost, mailto, and also METADATA, LOGDATA and DEPOTDATA . Edit `sdp_master_config.ini` and set the appropriate values using extracted ones, and appropriate instance specific values. . Set the values for `METADATA_ROOT`, `DEPOTDATA_ROOT` and `LOGDATA_ROOT` to the same (dummy) value, e.g. `c:\p4assets` . Run 'create_env.py` to generate the new structure. . Manually edit `c:\p4assets\p4\config\sdp_config.ini` and set the ROOT values to the existing values taken from step 2. . Using a different but similar workspace p4admin.sdp.new, which has a root directory of `c:\p4`, run `p4 sync -k`, then do a `p4 reconcile` to identify all the changed files - this will include most of the .bat files, but it shouldn't include `p4d.exe` or `p4s.exe` as we are not updating these files. . Submit the new changes. . In workspace `p4admin.sdp.orig`, carefully check the updated files that need to be synced (recommend you review diffs one by one), and then sync them. . Manually remove and recreate the links (using `del` and `mklink /d`) for directories under `c:\p4` so that they point to the existing directories on `e:`, `f:` or `g:` (the original DEPOTDATA). . Review existing configurables and adjust as appropriate. . Setup the scheduled tasks for daily/weekly backup and verify as appropriate. Validate that the daily backup works (typically wait until the next day) . At an appropriate point, stop the existing service, adjust the service paths to use the new paths starting from `c:\p4`. ==== Configuring protections, file types, monitoring and security After the server is installed and configured, most sites will want to modify server permissions (protections) and security settings. Other common configuration steps include modifying the file type map and enabling process monitoring. To configure permissions, perform the following steps: [arabic] . To set up protections, issue the p4 protect command. The protections table is displayed. . Delete the following line: write user * * //depot/... . Define protections for your server using groups. Perforce uses an inclusionary model. No access is given by default, you must specifically grant access to users/groups in the protections table. It is best for performance to grant users specific access to the areas of the depot that they need rather than granting everyone open access, and then trying to remove access via exclusionary mappings in the protect table even if that means you end up generating a larger protect table. . To set the server's default file types, run the `p4 typemap` command and define your typemap to override Perforce's default behavior. + Add any file type entries that are specific to your site. Suggestions: * For already-compressed file types (such as .zip, .gz, .avi, .gif), assign a file type of binary+Fl to prevent the server from attempting to compress them again before storing them. * For regular binary files, add binary+l to make so that only one person at a time can check them out. * A sample file is provided in `$SDP/Server/config/typemap` . For large, generated text files (e.g. postscript files), assign the text+C file type, to avoid causing server memory issues. NOTE: Perforce provides most IT required password management practices internally. It is recommend to use internal passwords over LDAP/AD to avoid exposing LDAP/AD passwords to the Perforce admin via the auth trigger. === General SDP Usage This section presents an overview of the SDP scripts and tools. Details about the specific scripts are provided in later sections. Most tools reside in `c:\p4\common\bin`. The directory `c:\p4\\bin` contains scripts and executables that are specific to a server instance, such as the `p4.exe` client. The scripts in `c:\p4\\bin` generally set the environment for an instance correctly, then invoke the corresponding script in `c:\p4\common\bin`. Run important administrative commands using the scripts in `c:\p4\\bin`, when available. Then, use the `p4.exe` executable located in `c:\p4\\bin`. Below are some usage examples for instance 1 or instance master. [cols=",",options="header",] |=== |Example |Remarks |c:\p4\common\bin\live-checkpoint.ps1 1 |Take a checkpoint of the live database on instance *_1_* |c:\p4\common\bin\daily-backup.ps1 master |A daily checkpoint of the *_master_* instance. |=== == Backup, Replication, and Recovery Perforce servers maintain _metadata_ and _versioned files_. The metadata contains all the information about the files in the depots. Metadata resides in database (db.*) files in the server's root directory (P4ROOT). The versioned files contain the file changes that have been submitted to the server. Versioned files reside on the depotdata volume. This section assumes that you understand the basics of Perforce backup and recovery. For more information, consult the Perforce https://www.perforce.com/perforce/doc.current/manuals/p4sag/Content/P4SAG/chapter.backup.html[System Administrator's Guide] and https://www.perforce.com/perforce/doc.current/manuals/p4sag/Content/P4SAG/failover.html#Failover[failover]. === Typical Backup Procedure The SDP's maintenance scripts, run as _cron_ tasks on Unix/Linux or as Windows _scheduled tasks_, periodically back up the metadata. The weekly sequence is described below. See also <<_scheduling_maintenance_scripts>>. *Seven nights a week, perform the following tasks.* [arabic] . Rotate/truncate the active journal. . Replay the journal to the offline database. (Refer to Figure 2: Volume Layout for more information on the location of the live and offline databases.) . Create a checkpoint from the offline database. . Recreate the offline database from the last checkpoint. *Once a week, perform the following tasks.* [arabic] . Verify all depots. + This normal maintenance procedure puts the checkpoints (metadata snapshots) on the depotdata volume, which contains the versioned files. Backing up the depotdata volume with a normal backup utility like _robocopy_ or _rsync_ provides you with all the data necessary to recreate the server. + To ensure that the backup does not interfere with the metadata backups (checkpoints), coordinate backup of the depotdata volume using the SDP maintenance scripts. + The preceding maintenance procedure minimizes server downtime, because checkpoints are created from offline or saved databases while the server is running. NOTE: With no additional configuration, the normal maintenance prevents loss of more than one day's metadata changes. To provide an optimal http://en.wikipedia.org/wiki/Recovery_point_objective[Recovery Point Objective] (RPO), the SDP provides additional tools for replication. === Planning for HA and DR include::SDP_Guide.Unix.adoc[tag=HA_and_DR] ==== Pre-requisites for Failover include::SDP_Guide.Unix.adoc[tag=prerequisites_for_failover] === Full One-Way Replication Perforce supports a full one-way https://www.perforce.com/perforce/doc.current/manuals/p4sag/Content/P4SAG/replication.html[replication] of data from a master server to a replica, including versioned files. The https://www.perforce.com/manuals/cmdref/Content/CmdRef/p4_pull.html#p4_pull[p4 pull] command is the replication mechanism, and a replica server can be configured to know it is a replica and use the replication command. The p4 pull mechanism requires very little configuration and no additional scripting. As this replication mechanism is simple and effective, we recommend it as the preferred replication technique. Replica servers can also be configured to only contain metadata, which can be useful for reporting or offline checkpointing purposes. See the Distributing Perforce Guide for details on setting up replica servers. If you wish to use the replica as a read-only server, you can use the https://www.perforce.com/perforce/doc.current/manuals/p4sag/Content/P4SAG/chapter.broker.html[P4Broker] to direct read-only commands to the replica or you can use a forwarding replica. The broker can do load balancing to a pool of replicas if you need more than one replica to handle your load. ==== Replication Setup To configure a replica server, first configure a machine identically to the master server (at least as regards the link structure such as `/p4`, `/p4/common/bin` and `/p4/**_instance_**/*`), then install the SDP on it to match the master server installation. Once the machine and SDP install is in place, you need to configure the master server for replication. Perforce supports many types of replicas suited to a variety of purposes, such as: * Real-time backup, * Providing a disaster recovery solution, * Load distribution to enhance performance, * Distributed development, * Dedicated resources for automated systems, such as build servers, and more. We always recommend first setting up the replica as a read-only replica and ensuring that everything is working. Once that is the case you can easily modify server specs and configurables to change it to a forwarding replica, or an edge server etc. === Replication Setup Details Note, it is required that you set P4TICKETS for the service and for the users on the machine to a common location for replication to work. To set this up, run the following on both the master and the replica: p4 set -s P4TICKETS=c:\p4\1\p4tickets.txt p4 set -S p4_1 P4TICKETS=c:\p4\1\p4tickets.txt Once the machine and SDP install is in place, you need to configure the master server for replication. We will assume the following for the setup: The replica name will be `p4d_ha_lon`, the service user name is `svc_rp4d_ha_lon`, and the master server's name is `master`, and the metadata volume is `e:`, the depotdata volume is `f:`, and the logs volume is `g:`. You will run the following commands on the master server: p4 configure set P4TICKETS=c:\p4\1\p4tickets.txt p4 configure set p4d_ha_lon#P4PORT=1667 p4 configure set p4d_ha_lon#P4TARGET=master:1667 p4 configure set p4d_ha_lon#journalPrefix=c:\p4\1\checkpoints\p4_1 p4 configure set p4d_ha_lon#server=3 p4 configure set "p4d_ha_lon#startup.1=pull -i 1" p4 configure set "p4d_ha_lon#startup.2=pull -u -i 1" p4 configure set "p4d_ha_lon#startup.3=pull -u -i 1" p4 configure set "p4d_ha_lon#startup.4=pull -u -i 1" p4 configure set "p4d_ha_lon#startup.5=pull -u -i 1" p4 configure set "p4d_ha_lon#db.replication=readonly" p4 configure set "p4d_ha_lon#lbr.replication=readonly" p4 configure set p4d_ha_lon#serviceUser=svc_p4d_ha_lon The following commands will also need to be run: * `p4 user -f svc_p4d_ha_lon` (You need to add the `Type: service` field to the user form before saving) * `p4 passwd svc_p4d_ha_lon` (Set the service user's password) * `p4 group ServiceUsers` (Add the service user to the `Users:` section and set the `Timeout:` to unlimited.) * `p4 protect` (Give `super` rights to the group `ServiceUsers` to `//...`) Now that the settings are in the master server, you need to create a checkpoint to seed the replica. Run: c:\p4\common\bin\daily-backup.ps1 1 When the checkpoint finishes, copy the checkpoint plus the versioned files over to the replica server. You can use xcopy or something like robocopy for this step. xcopy c:\p4\1\checkpoints\p4_1.ckp.###.gz replica_f_drive:\p4\1\checkpoints xcopy c:\p4\1\depots replica_f_drive:\p4\1\depots /S (### is the checkpoint number created by the daily backup) Once the copy finishes, go to the replica machine run the following: c:\p4\1\bin\p4d -r c:\p4\1\root -jr -z c:\p4\1\checkpoints\p4_1.ckp.###.gz c:\p4\1\bin\p4 -p master:1667 -u svc_p4d_ha_lon login (enter the service user's password) c:\p4\common\bin\svcinst start -n p4_1 Now, you check the log on the master server (`c:\p4\1\logs\log`) to look for the rmt-Journal entries that show you the replication is running. If you see those entries, then you can make some changes on the master server, and then go to the replica server and check to see that they changes were replicated across. For example, you can submit a change to the master server, then go to the replica server and check to see that the change was replicated over to the replica by running p4 describe on the changelist against the replica server. The final steps for setting up the replica server are to set up the task scheduler to run the replica sync scripts. This has to be done via task scheduler running as a regular AD user so that the scripts can access the network in order to get to the drives on the replica machine. You need to configure a task to run `c:\p4\common\bin\sync-replica.ps1 ` every day. The task should be set up to run after the master server finishes running `daily-backup.ps1`. Be sure to give it some buffer for the length of time it takes the master to run that script is likely to become gradually longer over time. === Recovery Procedures There are three scenarios that require you to recover server data: [cols=",,",options="header",] |=== |Metadata |Depotdata |Action required |lost or corrupt |intact |Recover metadata as described below |Intact |lost or corrupt |Call Perforce Support |lost or corrupt |lost or corrupt a| Recover metadata as described below. Recover the depotdata volume using your normal backup utilities. |=== Restoring the metadata from a backup also optimizes the database files. ==== Recovering from a checkpoint and journal(s) The checkpoint files are stored in the `c:\p4\\checkpoints` directory, and the most recent checkpoint is named `p4_.ckp..gz`. Recreating up-to-date database files requires the most recent checkpoint, from c:\p4\\checkpoints, and the journal file from c:\p4\\logs. To recover the server database manually, perform the following steps from the root directory of the server (`c:\p4\\root`). In the examples below we assume the is `1`. . Stop the Perforce Server by issuing the following command: c:\p4\1\bin\p4 admin stop . Delete the old database files in `c:\p4\1\root\save` directory (note there may not be any files there as they will typically be cleared out *after* successful completion of the previous invocation of the recovery process - see below). . Move the live database files (db.*) to the save directory. . Use the following command to restore from the most recent checkpoint. c:\p4\1\bin\p4d -r c:\p4\1\root -jr -z c:\p4\1\checkpoints\p4_1.ckp..gz . To replay the transactions that occurred after the checkpoint was created, issue the following command: c:\p4\1\bin\p4d -r c:\p4\1\root -jr c:\p4\1\logs\journal . Restart your Perforce server. If the Perforce service starts without errors, delete the old database files from `c:\p4\1\root\save`. If problems are reported when you attempt to recover from the most recent checkpoint, try recovering from the preceding checkpoint and journal. If you are successful, replay the subsequent journal. If the journals are corrupted, contact mailto:support-helix-core@perforce.com[Perforce Technical Support]. For full details about back up and recovery, refer to the https://www.perforce.com/perforce/doc.current/manuals/p4sag/Content/P4SAG/chapter.backup.html[Perforce System Administrator's Guide]. ==== Recovering from a tape backup This section describes how to recover from a tape or other offline backup to a new server machine if the server machine fails. The tape backup for the server is made from the depotdata volume. The new server machine must have the same volume layout and user/group settings as the original server. In other words, the new server must be as identical as possible to the server that failed. To recover from a tape backup, perform the following steps. [arabic] . Recover the depotdata volume from your backup tape. . As a super-user, reinstall and enable the Windows services that run the Perforce instance. . Find the last available checkpoint, under `c:\p4\\checkpoints`. . Recover the latest checkpoint by running: c:\p4\\bin\p4d_ -r c:\p4\\root -jr -z _last_ckp_file_ [arabic, start=5] . Recover the checkpoint (as shown in the preceding step) into the offline_db directory rather than the root directory. c:\p4\\bin\p4d_ -r c:\p4\\offline_db -jr -z _last_ckp_file_ [arabic, start=6] . Reinstall the Perforce server license to the server root directory. . Start the Perforce service. . Verify that the server instance is running. . Reinstall the server crontab or scheduled tasks. . Perform any other initial server machine configuration. . Verify the database and versioned files by running the p4verify script. Note that files using the https://www.perforce.com/manuals/cmdref/Content/CmdRef/file.types.synopsis.modifiers.html[+k] file type modifier might be reported as BAD! after being moved. Contact Perforce Technical Support for assistance in determining if these files are actually corrupt. ==== Failover to a replicated standby machine See link:SDP_Failover_Guide.pdf[SDP Failover Guide (PDF)] or link:SDP_Failover_Guide.html[SDP Failover Guide (HTML)] for detailed steps. == Server Maintenance This section describes typical maintenance tasks and best practices for administering server machines. The directory `c:\p4\sdp\Unsupported` contains scripts for several common maintenance tasks. The user running the maintenance scripts must have administrative access to Perforce for most activities. All of these scripts can be run from any client machine. === Server upgrades Upgrading a server instance in the SDP framework is a simple process involving a few steps. * Download the new p4 and p4d executables <<_downloading_p4d>>, and place them in `c:\p4\common\bin` * Run `c:\p4\common\bin\upgrade.ps1 `, e.g. powershell -f c:\p4\common\bin\upgrade.ps1 1 WARNING: If upgrading a pre-2013.3 server, then this will require a checkpoint restore and the script cannot be used. Contact Perforce Support if in doubt. ==== Database Modifications Occasionally modifications are made to the Perforce database. For example, server upgrades and some recovery procedures modify the database. When upgrading the server, replaying a journal patch, or performing any activity that modifies the db.* files, you must restart the offline checkpoint process so that the files in the offline_db directory match the ones in the live server directory. The easiest way to restart the offline checkpoint process is to run the live-checkpoint script after modifying the db.* files <<_live_checkpoint_ps1>> ==== Unloading and Reloading labels Archiving labels is a best practice for large installations, with hundreds of users and Perforce checkpoints that are gigabytes in size. Smaller sites need not necessarily concern themselves with archiving labels to maintain performance, though doing so will minimize database size if labels are used extensively. To use the `p4 unload` and `p4 reload` commands for archiving clients and labels, you must first create an unload depot using the p4 depot command. Run: p4 depot unload Set the type of the depot to unload and save the form. After the depot is created, you can use the following command to archive all the clients and labels that have been accessed since the given date: p4 unload -f -L -z -a -d For example, to unload all clients and labels that haven't been accessed since Jan. 1, 2019, you would run: p4 unload -f -L -z -a -d 2019/01/01 Users can reload their own clients/labels using the reload command. They can run: p4 reload -c or p4 reload -l As a super user, you can reload and unloaded item by adding the -f flag to the reload command as follows: p4 reload -f -c|l In addition, you can avoid having to unload/reload labels by creating a trigger to set the autoreload option as the default on all new labels. That will cause the server to use the unload depot for storing the labels rather than storing them in db.label. This helps with performance of the server by not increasing the size of the database for label storage. You can automate these tasks with $SDP/Maintenance/unload_clients.py and $SDP/Maintenance/unload_labels.py ==== Workspace management The simplest option is to use create a template client workspace (usual name is `template.client`) and then set configurable `template.client` to that name. This will mean that all new client workspaces created after that time will have the same options and view, unless otherwise explicitly updated. p4 client template.client [edit and save] p4 configure set template.client=template.client Alternatively the old fashioned way is to install a trigger from the Unsupported/Samples/triggers folder. The https://www.perforce.com/perforce/doc.current/manuals/p4sag/Content/P4SAG/scripting.triggers.basics.html[form-out trigger] $SDP/Unsupported/Sample/triggers/SetWsOptions.py contains default https://www.perforce.com/manuals/cmdref/Content/CmdRef/p4_client.html#p4_client[workspace options], such as leaveunchanged instead of submitunchanged. To use the trigger, first copy it to /p4/common/bin/triggers To enable the trigger, first modify the OPTIONS variable in the script, providing the set of desired options. Then insert an entry in the trigger table like the following: setwsopts form-out client "python /p4/common/bin/triggers/SetWsOptions.py %formfile%" The http://www.perforce.com/perforce/doc.current/manuals/p4sag/06_scripting.html#1062348[form-save trigger] $SDP/Server/common/p4/common/bin/triggers/PreventWsNonAscii.py enforces the policy that no workspaces may contain non-ASCII characters. To use the trigger, first copy it to /p4/common/bin/triggers To enable the trigger, insert an entry in the trigger table like the following: nowsascii form-save client "python /p4/common/bin/triggers/PreventWsNonAscii.py %formfile%" ==== Removing empty changelists To delete empty pending changelists, run python remove_empty_pending_changes.py. == Maximizing Server Performance The following sections provide some guidelines for maximizing the performance of the Perforce Server, using tools provided by the SDP. More information on this topic can be found in the https://community.perforce.com/s/article/2529[Knowledge Base]. === Optimizing the database files The Perforce Server's database is composed of b-tree files. The server does not fully rebalance and compress them during normal operation. To optimize the files, you must checkpoint and restore the server. The weekly checkpoint script used as part of the normal server maintenance automates this task. To minimize the size of back up files and maximize server performance, minimize the size of the db.have and db.label files. The scripts described in Unloading and Reloading labels, *Deleting users*, and === Managing server load ==== Limiting large requests To prevent large requests from overwhelming the server, you can limit the amount of data and time allowed per query by setting the maxresults, maxscanrows and maxlocktime parameters to the lowest setting that does not interfere with normal daily activities. As a good starting point, set maxscanrows to maxresults * 3; set maxresults to slightly larger than the maximum number of files the users need to be able to sync to do their work; and set maxlocktime to 30000 milliseconds. These values must be adjusted up as the size of your server and the number of revisions of the files grow. To simplify administration, assign limits to groups rather than individual users. To prevent users from inadvertently accessing large numbers of files, define their client view to be as narrow as possible, considering the requirements of their work. Similarly, limit users' access in the protections table to the smallest number of directories that are required for them to do their job. Finally, keep triggers simple. Complex triggers increase load on the server. ==== Offloading remote syncs For remote users who need to sync large numbers of files, Perforce offers a http://perforce.com/perforce/doc.current/manuals/p4sag/09_p4p.html#1056059[proxy server]. P4P, the Perforce Proxy, is run on a machine that is on the remote users' local network. The Perforce Proxy caches file revisions, serving them to the remote users and diverting that load from the main server. P4P is included in the Windows installer. P4P does not require special hardware because it doesn't use much processing power, and it doesn't need to be backed up. If the P4P instance isn't working, users can switch their port back to the main server and continue working until the instance of P4P is fixed. === P4V performance settings At large sites with hundreds or thousands of simultaneous users, the P4V data retrieval settings can help prevent P4V requests from impacting server performance. As of the 2010.1 release, P4V settings that affect performance can be centrally managed for all users or specific groups of users, using the http://www.perforce.com/perforce/doc.current/manuals/p4jsapi/index.html[JavaScript API] (P4JsApi). The SDP includes a sample P4V settings file, along with the P4JsApi centralsettings file that enables it. These files are located in //Perforce/sdp/JsApi. Follow these steps to provide P4V performance settings for your users. [arabic] . Determine whether you want P4V settings common to all users, or different settings for different groups. If the latter, make a unique copy of //Perforce/sdp/JsApi/p4vsettings.xml for each group of users. For example, you may create //Perforce/sdp/JsApi/p4vsettings_dev.xml for developers and //Perforce/sdp/JsApi/p4vsettings_qa.xml for QA. . Review and set the performance limits in //Perforce/sdp/JsApi/p4vsettings.xml, or in each copy of this file. (The file contains suggested default values.) The available settings are: [loweralpha] .. The ServerRefresh interval in minutes, which defines how often P4V attempts to get updated information from the server. .. The MaxFiles that P4V will retrieve for one fetch command. .. The MaxFilePreviewSize in kilobytes. .. The FetchCount, which affects the number of forms fetched for some operations. . If using common settings for all users, proceed with this step; otherwise proceed to the next step. Install the centralsettings file by adding a line to the protections table like: list group All.G centralsettings //Perforce/sdp/JsApi/centralsettings.js (This line assumes that you have a group called All.G that represents all users.) [arabic, start=4] . (Skip this step if using common settings for all users.) If using different settings for different groups, create a copy of //Perforce/sdp/JsApi/centralsettings.js for each group of users. For example, you may create //Perforce/sdp/JsApi/centralsettings_dev.js for developers and //Perforce/sdp/JsApi/centralsettings_qa.js for QA. Modify the line that references p4vsettings.xml to reference the copy for the group. . (Skip this step if using common settings for all users.) Install each copy of centralsettings.js in the protections table. In our example with separate copies for developers and QA, we would use lines like: list group Dev.G centralsettings //Perforce/sdp/JsApi/centralsettings_dev.js list group QA.G centralsettings //Perforce/sdp/JsApi/centralsettings_qa.js [arabic, start=6] . Each P4V user must follow the instructions in the P4JsApi manual to enable P4V extensions. Of course, the P4JsApi provides many other valuable features. If you choose to use these features, you can use the same centralsettings files for your groups to enable them. Refer to the P4JsApi manual for details. == Tools and Scripts This section describes the various scripts and files provided as part of the SDP package on Windows. Scripts are located typically in the following directory unless otherwise specified: c:\p4\common\bin The following sections describe the scripts in detail. === Standard scripts The scripts are implemented in *Powershell*, and usually have a simple `.bat` wrapper script. Note that for historical reasons there will often be 2 versions of the `.bat` which both call the same underlying Powershell script. For example, one uses '-' and one '_' as separators: daily-backup.bat daily_backup.bat Both are effectively identical and call the same Powershell script like this: powershell -file c:\p4\common\bin\daily-backup.ps1 %1 In the sub-sections below we refer to the `.ps1` scripts. Please assume the `.bat` calling wrappers are present. === Core scripts ==== daily-backup.ps1 link:../Server/Windows/p4/common/bin/daily-backup.ps1[This script] is configured to run seven days a week using the Windows scheduler. The script truncates the journal, replays it into the `offline_db` directory, creates a new checkpoint from the resulting database files, then recreates the `offline_db` directory from the new checkpoint. This procedure rebalances and compresses the database files in the offline_db directory. These can be rotated into the live database directory on an occasional (e.g. monthly) basis using <<_recreate_live_from_offline_db_ps1>>. [source] .Usage ---- include::../Server/Windows/p4/common/bin/daily-backup.ps1[tags=includeManual] ---- ==== p4verify.ps1 link:../Server/Windows/p4/common/bin/p4verify.ps1[This script] verifies the integrity of the depot files. This script is run by Windows scheduler, usually on a weekly basis, e.g. Saturday morning. It emails the resulting report - please check for any errors contained. NOTE: for larger repositories this can take many hours to run, and places some load on the server. Run it at the weekends when this is less of a problem. [source] .Usage ---- include::../Server/Windows/p4/common/bin/p4verify.ps1[tags=includeManual] ---- === Other scripts and tools ==== create-filtered-edge-checkpoint.ps1 link:../Server/Windows/p4/common/bin/create-filtered-edge-checkpoint.ps1[This script] creates a checkpoint from the offline_db files, filtered for use with an edge server. Note restrictions below. See also partner script <<_recover_edge_ps1>> which replays the checkpoint on the edge server machine. [source] .Usage ---- include::../Server/Windows/p4/common/bin/create-filtered-edge-checkpoint.ps1[tags=includeManual] ---- ==== create-offline-db-from-checkpoint.ps1 link:../Server/Windows/p4/common/bin/create-offline-db-from-checkpoint.ps1[This script] recreates offline db from the latest checkpoint found. [source] .Usage ---- include::../Server/Windows/p4/common/bin/create-offline-db-from-checkpoint.ps1[tags=includeManual] ---- ==== grep.exe Windows version of Unix `grep` command. Useful for searching inside files. There is a Windows equivalent which is `findstr` (although not as powerful). ==== gzip.exe Windows version of Unix `gzip` command - useful for checkpoint (de)compression. ==== live-checkpoint.ps1 link:../Server/Windows/p4/common/bin/live-checkpoint.ps1[This script] stops the server, creates a checkpoint from the live database files, recovers from that checkpoint to rebalance and compress the files, then recovers the checkpoint in the offline_db directory to ensure that the database files are optimized. IMPORTANT: This script should only be run on your commit server (it should not be run on edge servers or replicas). Be aware that this script *locks the database* for the duration of the checkpoint. This can take tens of minutes or even hours to run. So be careful! This script makes a new checkpoint of the modified database files in the live root directory, then recovers that checkpoint to the offline_db directory so that both directories are in sync. This script can also be used anytime to create a checkpoint of the live database (with above warnings about locking!). This command may be required to be run when an error occurs during offline checkpointing. It restarts the offline checkpoint process from the live database files to bring the offline copy back in sync. If the live checkpoint script fails, contact Perforce Consulting at consulting@perforce.com. Run this script when creating the server and if an error occurs while replaying a journal during the off-line checkpoint process. [source] .Usage ---- include::../Server/Windows/p4/common/bin/live-checkpoint.ps1[tags=includeManual] ---- ==== p4login.ps1 link:../Server/Windows/p4/common/bin/p4login.ps1[This script] logs the standard superuser account in to the server with their stored password, using the details from <<_sdp_config_ini>>. [source] .Usage ---- include::../Server/Windows/p4/common/bin/p4login.ps1[tags=includeManual] ---- Examples of using the `p4login.bat` wrapper and specifying `SDP Instance` parameter: p4login.bat 1 p4login.bat master ==== recover-edge.ps1 link:../Server/Windows/p4/common/bin/recover-edge.ps1[This script] recreates an edge server from create-filtered-edge-checkpoint, maintaining local data such as workspaces (in edge specific db.have table) plus the other 6+ edge tables. Partner script to <<_create_filtered_edge_checkpoint_ps1>> [source] .Usage ---- include::../Server/Windows/p4/common/bin/recover-edge.ps1[tags=includeManual] ---- ==== recreate-live-from-offline-db.ps1 link:../Server/Windows/p4/common/bin/recreate-live-from-offline-db.ps1[This script] can be scheduled to run every few months - it used to be run weekly, but that is no longer best practice since database files are not fragmented as they used to be. It will move the db.* files from offline to live root (so requires stopping the service). [source] .Usage ---- include::../Server/Windows/p4/common/bin/recreate-live-from-offline-db.ps1[tags=includeManual] ---- ==== replica-status.ps1 link:../Server/Windows/p4/common/bin/replica-status.ps1[This script] sends an email with the results of the latest `p4 pull -lj`. Useful for basic monitoring services. [source] .Usage ---- include::../Server/Windows/p4/common/bin/replica-status.ps1[tags=includeManual] ---- ==== rotate-log-files.ps1 link:../Server/Windows/p4/common/bin/rotate-log-files.ps1[This script] is intended to be run nightly on a replica which may not have any other scheduled tasks running. It ensures that the log files are appropriately rotated and old logs (and journals) are deleted according the settings of KEEP_CKPS in sdp_config.ini [source] .Usage ---- include::../Server/Windows/p4/common/bin/rotate-log-files.ps1[tags=includeManual] ---- ==== SDP-functions.ps1 link:../Server/Windows/p4/common/bin/SDP-functions.ps1[This script] is the main repository of all shared functions used by other scripts. They each source the file and then call individual functions as required. This is not intended by be called directly by the user - just sourced by other scripts. E.g. [source,powershell] ---- # Source the SDP Functions shared between scripts $SDPFunctionsPath = Split-Path -parent $MyInvocation.MyCommand.Path | Join-Path -childpath "SDP-Functions.ps1" . $SDPFunctionsPath ---- It understands how to parse config files, start/stop instances, rotate log files etc. ==== send-test-email.ps1 link:../Server/Windows/p4/common/bin/send-test-email.ps1[This script] is useful for debugging the setup of the sending of emails by the various scripts. It sends a test email using the values found in `c:\p4\config\sdp_config.ini` If successful then it shows other script emails will work correctly. See <<_emails_not_being_sent>> in Appendix A if having problems. ==== svcinst.exe This is used for the Windows service to: * start * stop * create * remove IMPORTANT: It is vital that you should use this utility rather than `net stop p4_1` or other `net` commands. This utility ensures that the service is shut down cleanly, and it will not timeout. .Usage ---- C:\p4\common\bin> svcinst.exe Perforce Service Manager Utility: SVCINST action [-d] [-n name] [-e exe] [-a] -d enables debug messages, (use as first flag) actions - info, create, start, stop, remove info -n name Specify the name of the service. create -n name Specify the name of the service. -e exe Specify the executable for the service, required. -a The service is to be autostart on boot, optional. start -n name Specify the name of the service. stop -n name Specify the name of the service. remove -n name Specify the name of the service. ---- So example usage would be: svcinst stop -n p4_1 ==== sync-replica.ps1 link:../Server/Windows/p4/common/bin/sync-replica.ps1[This script] copies checkpoint files from master to the current replica. [source] .Usage ---- include::../Server/Windows/p4/common/bin/sync-replica.ps1[tags=includeManual] ---- ==== upgrade.ps1 link:../Server/Windows/p4/common/bin/upgrade.ps1[This script] upgrades the `p4d.exe` and related files (including Windows service `p4s.exe`), performing the appropriate `-xu` to upgraded the database. Before running this script you should ensure the new versions of p4.exe and p4d.exe have been downloaded into `c:\p4\common\bin` [source] .Usage ---- include::../Server/Windows/p4/common/bin/upgrade.ps1[tags=includeManual] ---- [appendix] == Frequently Asked Questions This appendix lists common questions and problems encountered by SDP users. Do not hesitate to contact consulting@perforce.com if additional assistance is required. === Journal out of sequence This error is encountered when the offline and live databases are no longer in sync, and will cause the offline checkpoint process to fail. This error can be fixed by running the create-offline-db-from-checkpoint (or if that doesn't work then live-checkpoint script - which blocks live server), as described in Server upgrades. === Emails not being sent The Powershell function `send-email` in <<_sdp_functions_ps1>> sends SDP emails. ==== Gmail Less Secure App Access To send from Gmail, you may need to set the "Less Secure App Access" setting, which is configured in the gmail account. While logged into the gmail account from which you want the SDP scripts to send email, go to this URL: https://myaccount.google.com/lesssecureapps That page should contain a slider button titled `Allow less secure apps:`. If the value is `OFF`, slide the slider button to the right so that it indicates `ON`. ==== Implicit and Explicit Settings Problems have been observed with some SMTP providers. For example on port 465 which is implicit SSL. There are 2 possibilities: * *explicit SSL* - this means that the client first connects to the server using an unsecure channel, requests that conversations be moved to a secure channel, and then both server and client switch to a secure connection and the rest of the communication is encrypted. Though this sounds somewhat lengthy, it’s the standard procedure for setting up an SSL connection (see RFC 2228). Gmail handles explicit SSL without any difficulties, as do many other mail servers; Gmail’s explicit SSL server runs on port 587. * *implicit SSL* - In contrast, implicit SSL drops the SSL negotiation and jumps right into the SSL connection to begin with. Often, this is done through a connection to a specific port that only accepts secure connections. There is no official standard for this mode of communication, though it’s widely implemented; Gmail also handles implicit SSL, this time on port 465. ==== Explicit SSL If the server is *explicit SSL* then the script will just work, e.g. the relevant entries in <<_sdp_config_ini>>: mailhost=smtp.gmail.com mailhostport=587 ==== Implicit SSL The easiest solution for *implicit SSL* is to run a local copy of https://www.stunnel.org/[stunnel] which configures a local port and knows how to talk to the remote server (for example Rackspace, or Gmail). The relevant section in https://www.stunnel.org/config_windows.html[the example Windows config file]: [source,ini] ---- [gmail-smtp] client = yes accept = 127.0.0.1:25 connect = smtp.gmail.com:465 verifyChain = yes CAfile = ca-certs.pem checkHost = smtp.gmail.com OCSPaia = yes ---- Using the above we can set the relevant entries in <<_sdp_config_ini>>: mailhost=localhost mailhostport=25 Since `stunnel` will forward local port 25 to remote port 465. [appendix] == SDP Package Contents and Planning === Memory and CPU Maximum performance is obtained if the server has enough memory to keep all of the database files in memory. Make sure the server has enough memory to cache the *db.rev* database file and to prevent the server from paging during user queries. Below are some approximate guidelines for allocating memory. * 1.5 kilobyte of RAM per file stored in the server. * 32 MB of RAM per user. Use the fastest processors available with the fastest available bus speed. Faster processors with a lower number of cores provide better performance for Perforce. Quick bursts of computational speed are more important to Perforce's performance than the number of processors, but have a minimum of two processors so that the offline checkpoint and back up processes do not interfere with your Perforce server. ==== Monitoring SDP activities The important SDP maintenance and backup scripts generate email notifications when they complete. For further monitoring, you can consider options such as: * Making the SDP log files available via a password protected HTTP server. * Directing the SDP notification emails to an automated system that interprets the logs.