
System Access
Managing remote systems securely and efficiently is essential for IT professionals and administrators. Whether accessing Linux servers, transferring files, or monitoring system performance, the right tools make all the difference.
​
-
SSH (Secure Shell): A fundamental protocol for secure remote access to servers, enabling command-line control and automation.
-
Cockpit: A web-based management tool that provides an intuitive dashboard for monitoring and administering Linux servers, making remote system management more accessible.
-
WinSCP: A reliable file transfer utility for Windows, supporting SFTP, SCP, and FTP protocols for secure file management between local and remote systems.
-
Xshell: A powerful SSH client offering advanced session management, scripting capabilities, and enhanced security for efficient remote administration.
-
Xftp: A fast and user-friendly file transfer solution that integrates seamlessly with Xshell, enabling secure and efficient data exchange between local and remote systems.
RHEL & Ubuntu Server Administration
SSH Access
Ubuntu
-
sudo apt install openssh-server
-
sudo systemctl enable ssh
-
sudo systemctl status ssh
-
sudo ufw allow ssh
RHEL 9
Found that SSH was installed and running by default.
Also firewall rule was in place.
-
sudo dnf install openssh-server
-
sudo systemctl start sshd
-
sudo systemctl enable sshd
-
systemctl status sshd
Cockpit
Ubuntu
-
sudo apt update
-
sudo apt install cockpit -y
-
sudo apt install cockpit -y
-
sudo systemctl start cockpit
-
sudo systemctl start cockpit
-
sudo ufw status
-
sudo ufw allow 9090/tcp
RHEL 9.5
I found this is installed by default and just had to enable it.
Also, there was a firewall rule already enabled for it.
-
sudo dnf install cockpit
-
systemctl enable --now cockpit.socket
-
firewall-cmd --add-service=cockpit --permanent
-
firewall-cmd --reload

WinSCP is a free GUI tool for transferring files to and from a Linux server to Windows.
This utilizes the same SSH channel on port 22 and authentication.
xShell is a free GUI tool for managing multiple SSH sessions
xFTP is a free GUI tool for managing multiple SFTP sessions
