📝 Logging#
All installation activities are logged with unified format:
- Log Location:
/var/log/sspserver/sspserver_1click_standalone.log - Log Format:
[TIMESTAMP] [TYPE] Message - Log Types:
[ERROR],[INFO],[OK]
🔍 Service Management#
Ubuntu/Debian (systemd)#
# Check service status
systemctl status sspserver
# Start/stop/restart service
sudo systemctl start sspserver
sudo systemctl stop sspserver
sudo systemctl restart sspserver
# View logs
journalctl -u sspserver -f
macOS (launchd)#
# Check service status
sudo launchctl list | grep sspserver
# Start/stop service
sudo launchctl load /Library/LaunchDaemons/com.sspserver.plist
sudo launchctl unload /Library/LaunchDaemons/com.sspserver.plist
# View logs
tail -f /var/log/sspserver/sspserver_1click_standalone.log
🆘 Troubleshooting#
Common Issues#
- Permission Denied: Ensure you have sudo/root privileges
- Network Issues: Check internet connectivity and firewall settings
- Port Conflicts: Ensure required ports are available
- Disk Space: Verify sufficient free space (minimum 10GB)
Debug Information#
# Check system requirements
./install.sh --help
# View installation logs
tail -f /var/log/sspserver/sspserver_1click_standalone.log
# Check service status
# Ubuntu/Debian: systemctl status sspserver
# macOS: sudo launchctl list | grep sspserver
🔄 Updates#
To update SSP Server, simply re-run the installation script:
Interactive update#
bash <(curl -sSL https://raw.githubusercontent.com/sspserver/deploy/refs/heads/main/standalone/install.sh)
Automated update#
curl -sSL https://raw.githubusercontent.com/sspserver/deploy/refs/heads/main/standalone/install.sh | bash -s -- -y
📁 Project Structure#
standalone/
├── install.sh # Universal installer with system checks
├── systems/
│ ├── ubuntu.sh # Ubuntu/Debian specific installer
│ └── darwin.sh # macOS/Darwin specific installer
└── README.md # Documentation
📞 Support#
- Documentation: SSP Server Docs
- Issues: GitHub Issues
- Community: SSP Server Community
⚖️ License#
This project is licensed under the terms specified in the LICENSE file.
