SSH Management
SSH Access to a Container
SSH access gives you command-line control of application containers for file management, monitoring, process administration, archive handling and runtime configuration. The platform supports browser-based Web SSH as well as access through an SSH gateway from a local client.
SSH Access Methods
Two SSH workflows are available for working with containers.


Root-level management
Most modern containers, including custom Docker-based nodes, provide full administrative access over SSH. Legacy certified stacks may expose a controlled set of privileged commands instead.
Navigate the Container File System
After opening a terminal, you normally start in the server home directory. Use the cd command to move through the file system.
For a visual overview of directories and configuration files, you can also use the built-in File Manager through the node’s Config action.

Manage Files and Directories
Common shell commands can be used to create, inspect, copy, move and remove files and folders.

View Server System Information
Check the current container state
Use w to view a quick summary of the current system state, including uptime, active users and load averages.

Review memory information
Linux memory statistics are available through /proc/meminfo.
This file provides values such as total memory, free memory and cache usage.

View kernel and system details
The output includes information about the kernel, hostname, processor architecture and operating system.
Manage Running Processes
Use standard Linux process-management tools to inspect and terminate running processes.
Stop top
Press Ctrl + C to exit the live process view and return to the normal terminal prompt.

Download and Extract Application Archives
Files can be downloaded directly to the container from an external URL and extracted without using the local computer.
Download a file

Extract an archive
The extracted content is placed in the current working directory or in a folder created by the archive structure.

Configure Custom Environment Variables
Default shell variables can be reviewed from the user profile. Custom variables should be added to the shell startup file used for interactive Bash sessions.

To create custom variables, edit or create the .bashrc file and add entries in the following format:


The new values are loaded automatically in new Bash sessions. To apply them immediately, start a new shell session or reload the configuration.
Certified Container Management Specifics
The platform can use both Docker-based containers and certified software-stack templates. Their SSH privilege model may differ.
Common privileged operations on certified stacks can include service management, firewall control and name-service cache administration.
Supported service names vary by stack
Available service names depend on the selected server template and may include application servers, web servers, databases, caching services and related system components.
Expected Result
After connecting through Web SSH or the SSH gateway, administrators can browse the container file system, manage files and processes, inspect system information, download application packages and configure runtime variables directly from the command line.
Important Notes
- Use Web SSH for fast browser-based access and the SSH gateway when working from a local client.
- Protect private SSH keys and limit access to trusted administrators.
- Use file and process commands carefully when working with production containers.
- Check service-specific documentation before changing system configuration.
- Custom Docker containers normally provide broader root access than legacy certified stacks.
- Use the built-in File Manager when a graphical view is more convenient than terminal navigation.
