Verification

Verify the Bot Started

After running the container, check the logs to confirm the bot started successfully:

docker logs privman-webex-bot

All five lines must appear:

INFO: Bot identity: PrivMan Approvals (privman-approvals@webex.bot)

INFO: Poller started — polling every 30s

INFO: Starting Webex bot with websocket listener...

INFO: Registered new WDM device

INFO: Websocket connected

If all five lines are present, the bot is running and connected to Webex.

Manage the Bot

Action Command
View live logs docker logs -f privman-webex-bot
Stop the bot docker stop privman-webex-bot
Start the bot docker start privman-webex-bot
Update to a newer version

docker stop privman-webex-bot

docker rm privman-webex-bot

docker pull delineaxpm/privman-webex:latest

Then re-run the docker run command from Configuration.

Reset registered spaces

PowerShell: Remove-Item rooms.json -ErrorAction SilentlyContinue

Bash: rm -f rooms.json

Deleting this file forces re-registration of all spaces on next mention.

Press Ctrl+C to stop following live logs. The bot continues running.