33 lines
1.2 KiB
Markdown
33 lines
1.2 KiB
Markdown
# Server Connection Procedures
|
|
|
|
## Primary Application Host
|
|
- **IP Address**: 192.168.50.11
|
|
- **Hostname**: hosting-manager
|
|
- **Username**: jcbeasley
|
|
- **Connection Method**: SSH
|
|
- **Command**: `ssh jcbeasley@192.168.50.11`
|
|
|
|
## Connection Documentation References
|
|
1. USER.md - "Primary app host access: SSH, e.g. `ssh jcbeasley@192.168.50.11`"
|
|
2. SERVER_APPLICATIONS_INVENTORY.md - Contains detailed inventory of applications on this server
|
|
3. HOSTING_MODULE_FIX_SUMMARY.md - Contains information about hosting module fixes
|
|
|
|
## Key Applications on Server
|
|
1. Projects Manager (hosting-manager.service)
|
|
- Location: /home/jcbeasley/applications/active/projects-manager/
|
|
- Port: 3456
|
|
- Service File: /etc/systemd/system/hosting-manager.service
|
|
|
|
2. IT Site Survey AI
|
|
- Port: 3003
|
|
- Location: /home/jcbeasley/.openclaw/workspace/Projects/site-survey-ai
|
|
|
|
3. Client Onboarding Application
|
|
- Port: 5000
|
|
- Location: /home/jcbeasley/.openclaw/workspace/Projects/client-onboarding
|
|
|
|
## Common Troubleshooting Commands
|
|
- Check service status: `systemctl status hosting-manager.service`
|
|
- Restart service: `sudo systemctl restart hosting-manager.service`
|
|
- View logs: `journalctl -u hosting-manager.service -f`
|
|
- Check listening ports: `netstat -tlnp | grep :3456` |