Setup order
- Configure — APIs, sequencer backend, TLS, and storage
- Start — Deploy and start sequencer and mediator
- Bootstrap — Initialize synchronizer topology
- Connect — Attach validators / participants
- Verify — Health, topology, and a test transaction
- Harden (optional) — HA, monitoring, backups, and related ops
Who this guide is for
Use this guide when:- You need a dedicated synchronizer for privacy, performance, governance, or cost reasons
- A single organization will own and operate the sequencer and mediator (the default path below)
- You may later connect the same validators to the Global Synchronizer (hybrid pattern)
Choose your topology
Default path for this guide: one sequencer + one mediator, single owner, BFT sequencer backend (minimal single-node network). Background on the orderer is in BFT Orderer Architecture. API, backend, and TLS details are in Synchronizer Operations — configure.
The database sequencer backend is unsupported. Use the BFT sequencer backend for new private synchronizers. Multi-node BFT peer networks and advanced backend options are covered under Configure Sequencer Backend.
Prerequisites
Before you begin:- Familiarity with Canton’s synchronizer architecture
- PostgreSQL 14+ — separate databases for sequencer and mediator; for production, a managed service with automated backups, at least 4 vCPUs / 16 GB memory, and SSD-backed storage
- TLS certificates for the sequencer public API (validators connect here)
- Canton release artifacts (container images or JARs) for sequencer and mediator
- Access to the Canton Console for the sequencer (and mediator if it runs separately)
1. Configure APIs, backend, and TLS
Write configuration before starting nodes. At minimum you need:- Sequencer and mediator APIs — public and admin ports/addresses (Configure Synchronizer APIs)
- Sequencer backend —
sequencer.type = BFTfor the default path (Configure Sequencer Backend) - TLS on the sequencer public API (Secure Synchronizer APIs)
- Storage — Postgres for each node (next section)
2. Set up databases
Create separate PostgreSQL databases and dedicated users, for examplesequencer_db / sequencer_user and mediator_db / mediator_user. Each node stores its own state independently.
Point the sequencer and mediator storage configuration at those databases before you start the nodes.
3. Deploy and start sequencer and mediator
The Helm examples below are illustrative packaging of the same settings. Adjust chart names, value keys, and image repositories to match the Canton / CN release artifacts you use.Sequencer (Helm)
Mediator (Helm)
Confirm nodes are healthy
Before bootstrap:- Sequencer and mediator processes/pods are running
- Sequencer health endpoint returns HTTP 200 (when exposed)
- You can open a Canton Console against the sequencer admin API
Non-Helm starts
Start the sequencer and mediator with your Canton distribution and the config files from Configure, then continue with bootstrap. Console commands are the same.4. Bootstrap (initialize) the synchronizer
Nodes must be fresh (not previously initialized), started, and already configured with backend, APIs, TLS, and storage. Using the Canton Console connected to the sequencer (default centralized bootstrap — single owner, threshold 1):my-private-sync (or the name you chose).
Other bootstrap flows (do not inline here):
- Decentralized synchronizer
- Decentralized with a subset of sequencers as owners
- Permissioned synchronizer
5. Connect validators
Once the synchronizer is initialized, connect each validator (participant). On the Canton Console:my-private-sync) consistently in console and Helm. After changing connection config at runtime, disconnect and reconnect the synchronizer on the participant so the update takes effect.
For validators that also stay on the Global Synchronizer, see linking a validator to multiple synchronizers.
6. Verify the deployment
Work through this checklist:- Sequencer health — HTTP health endpoint returns 200
- Mediator in topology — Mediator is registered on the synchronizer
- Participant connected —
participant.synchronizers.list_connected()shows your alias - Ping — Participant can ping across the synchronizer (see bootstrap examples in Synchronizer Operations)
- Optional smoke test — Allocate a test party and create a contract assigned to the private synchronizer
Production hardening and next steps
- TLS everywhere — Validators to sequencer public API; prefer TLS for peer and admin paths in production (Secure Synchronizer APIs)
- Network policies — Restrict sequencer endpoint access to known validator networks
- Monitoring — Synchronizer monitoring; reuse your validator metrics stack where possible
- Backups — Back up sequencer and mediator databases regularly (Backup and Restore)
- HA — High Availability in Synchronizer
- Traffic management — If you enable traffic controls on a private synchronizer, see Sequencer Traffic Management
- Pruning — Synchronizer Pruning
Related reference
- Private Synchronizers — Why and when to use them
- Hybrid Synchronizer Pattern — Private + Global Synchronizer
- Linking Validators — Multi-synchronizer participants
- Synchronizer Operations — Configure, bootstrap variants, HA, traffic, pruning, backup
- BFT Orderer Architecture — Ordering backend background
- Synchronizer Monitoring — Observability