- ggCircuit Help Center
- ggRock User Manual
- Administration - Debian OS
-
ggLeap User Manual
- Sales - Point of Sale
- Management - Users
- Configuration - Games and Apps
- Troubleshooting
- Management - Machines
- Management - Consoles
- Sales - Client Orders
- Reporting - Finance
- Getting Started
- Configuration - ggLeap Client
- Configuration - ggLeap Web Admin
- Start Up Commands
- Sales - Prize Redemption
- ggLeap Client
- Web Admin Settings
- Single Sign On (SSO)
- Configuration - Game Licenses
- Management - Machine Groups
- Getting Started with ggLeap
- Reporting - Statistics
- Management - Employee
- Sales - Guest Accounts
- Loyalty System
- Booking
- Events / Arcade
-
ggRock User Manual
- General
- Installation - Debian OS
- Installation - ggRock Server Application
- Administration - ggRock
- Administration - ggLeap
- Administration - Windows
- Administration - Debian OS
- Administration - Games
- Administration - Hardware
- Administration - Network
- Troubleshooting - ggRock
- Troubleshooting - Network
- Troubleshooting - ggLeap
- Troubleshooting - Hardware
- Troubleshooting - Boot
- Troubleshooting - Windows
- Troubleshooting - Games
- Troubleshooting - Debian OS
-
ggLeap Product Tours
Cannot perform a remote backup to a Debian target server due to disabled root SSH access
Unlocking SSH Under Root on Debian OS Target Server Via Terminal for Remote Backup
Problem
Cannot perform a remote backup to a Debian target server.
Debian has SSH access under root user disabled by default.
Solution
Enable SSH access under the root user.
-
Access the terminal/console of the remote server.
-
Run the following command to permit root login:
sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/g' /etc/ssh/sshd_config
3. Run the following command to restart the SSH service:
systemctl restart sshd.service
NOTE:
After performing your backup operation, it may be desirable to disable root access again for security reasons.
To re-secure the root account:
-
Access the terminal/console of the remote server.
-
Run the following command to permit root login:
sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin no/g' /etc/ssh/sshd_config
-
Run the following command to restart the SSH service:
systemctl restart sshd.service