Quickstart¶
This walkthrough takes you from a fresh install to a running PeopleSoft domain managed via psa. It assumes you have a PeopleSoft environment provisioned (or are about to provision one with psa dpk).
1. Configure¶
Run the interactive setup. psa will try to auto-detect PS_HOME, PS_CFG_HOME, and the runtime user:
Or skip prompts and accept all detected defaults:
Or be explicit:
This writes ~/.config/psa/config.yaml. Inspect it any time:
2. Discover domains¶
You should see your provisioned app, web, and process scheduler domains. To pipe into other tools:
3. Check a domain¶
This shows the running state of every server process in the domain.
4. Lifecycle operations¶
psa domain start APPDOM # Start a stopped domain
psa domain stop APPDOM # Stop a running domain
psa domain restart APPDOM # Stop, then start
psa domain bounce APPDOM # Stop, purge, flush, configure, start
The --force flag (alias -f) skips the interactive confirmation on destructive operations.
Run against all domains with --all:
5. Compare configurations¶
psa domain compare diffs a domain's current config against an archived .cfx:
psa domain compare APPDOM # Interactive archive picker
psa domain compare APPDOM --archive /path/to/psappsrv.cfx
6. DPK provisioning (optional)¶
If you need to stand up a fresh environment, see the DPK provisioning workflow.
The 10,000-foot view:
psa dpk stage --version 8.62.04 # Unpack DPK archives
psa dpk setup # OS prereqs + Puppet install
psa dpk init # Generate hiera.yaml + customer dir
psa dpk sync # Pull YAMLs from API / source
psa dpk apply --summary # Run puppet apply, readable output
What's next?¶
- Commands reference — every command + every flag
- DPK workflow — full PeopleSoft DPK provisioning walkthrough