Tutorials Overview
Tutorials
Section titled “Tutorials”Step-by-step guides for common SSH-KLM tasks.
Getting Started
Section titled “Getting Started”| Tutorial | Time | Description |
|---|---|---|
| Add Hosts | 10 min | Add servers to inventory |
| Rotate Keys | 15 min | Manual and automated rotation |
| Setup Bastion | 20 min | Configure bastion integration |
Tutorial: Add Your First Host
Section titled “Tutorial: Add Your First Host”Step 1: Prepare the Host
Section titled “Step 1: Prepare the Host”Ensure SSH access is available:
ssh user@your-server.example.comStep 2: Install Agent (Optional)
Section titled “Step 2: Install Agent (Optional)”For full functionality, install the agent:
curl -fsSL https://get.qcecuring.com/ssh-agent | sudo bashStep 3: Add to Inventory
Section titled “Step 3: Add to Inventory”Via UI:
- Go to Inventory → Add Host
- Enter hostname and credentials
- Click Add Host
Via SDK:
await client.ssh.addHost({ hostname: 'server.example.com', port: 22, labels: { env: 'production' }});Step 4: Run Discovery
Section titled “Step 4: Run Discovery”await client.ssh.startDiscovery({ hosts: ['server.example.com']});