{"id":41394,"date":"2024-05-17T12:08:00","date_gmt":"2024-05-17T12:08:00","guid":{"rendered":"https:\/\/accuweb.cloud\/resource\/?post_type=faq&#038;p=41394"},"modified":"2026-02-19T05:30:40","modified_gmt":"2026-02-19T05:30:40","slug":"ssh-access-mangement","status":"publish","type":"faq","link":"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement","title":{"rendered":"SSH Access to Container: Manage Your Server Remotely"},"content":{"rendered":"<h2 class=\"ack-h2\">SSH Access to Container: Manage Your Server Remotely<\/h2>\n<p>Any container in your account can be accessed via SSH thanks to the Jelastic Platform. We&#8217;ll go over a few helpful commands for using the SSH terminal to manage your server in this tutorial.<\/p>\n<p><strong>There Are Two Methods You Can Use SSH to Connect To Your Server In Jelastic Paas<\/strong><\/p>\n<p><strong>Web SSH:<\/strong> To rapidly access and begin managing the chosen environment layer or particular container online through your browser, click the <strong>&#8220;Web SSH&#8221;<\/strong> option next to it. This causes the Jelastic dashboard&#8217;s bottom terminal tab to open.<\/p>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/1-112.png\"><img fetchpriority=\"high\" decoding=\"async\" class=\"ack-article-image aligncenter wp-image-41535 size-full\" title=\"SSH to Connect To Your Server\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/1-112.png\" alt=\"SSH to Connect To Your Server\" width=\"1916\" height=\"684\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/1-112.png 1916w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/1-112-300x107.png 300w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/1-112-1024x366.png 1024w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/1-112-768x274.png 768w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/1-112-1536x548.png 1536w\" sizes=\"(max-width: 1916px) 100vw, 1916px\" \/><\/a><\/p>\n<p><strong>SSH Gate:<\/strong> As an alternative, you can use pre-generated SSH key pairs to access to your server using any chosen local SSH client. To authenticate, retain the matching private key on your local computer and add the public key to your account settings.<\/p>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/2-112.png\"><img decoding=\"async\" class=\"ack-article-image aligncenter wp-image-41532 size-full\" title=\"SSH Gate\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/2-112.png\" alt=\"SSH Gate\" width=\"970\" height=\"353\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/2-112.png 970w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/2-112-300x109.png 300w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/2-112-768x279.png 768w\" sizes=\"(max-width: 970px) 100vw, 970px\" \/><\/a><\/p>\n<p>Once all the prerequisites have been satisfied, you can use the command line found in the relevant page of your account settings to create an SSH connection.<\/p>\n<p>In this post, we&#8217;ll use the built-in Web SSH tool for ease of use and speed. However, if you are working with a remote local client, you can use the instructions listed below in a similar manner.<\/p>\n<h2 class=\"ack-h2\">Navigation through the Remote Container File System<\/h2>\n<p>As experienced coders are not the target audience for this section, many of you may decide to skip it and go on to more complex tasks. Still, we believe it&#8217;s important to discuss before moving forward.<\/p>\n<p>By default, you will be in the home directory of the server once you have entered the necessary container using the console. You usually save your custom setups and data in this directory. You can use the `cd` command with the following arguments to traverse between folders:<\/p>\n<ul class=\"ack-ul\">\n<li><strong>`{directory_path}`<\/strong>: Specify the name of a nested folder (you can use slash-separated levels) or provide a full path relative to the container&#8217;s root.<\/li>\n<li><strong>`..`<\/strong>: Move up one level in the file tree.<\/li>\n<li><strong>`~`<\/strong>: Quickly switch to your working (server home) directory from any location.<\/li>\n<li><strong>`\/`<\/strong>: Instantly switch to the container&#8217;s root directory.<\/li>\n<\/ul>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/3-112.png\"><img decoding=\"async\" class=\"ack-article-image aligncenter wp-image-41536 size-full\" title=\"Container File System\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/3-112.png\" alt=\"Container File System\" width=\"1918\" height=\"206\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/3-112.png 1918w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/3-112-300x32.png 300w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/3-112-1024x110.png 1024w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/3-112-768x82.png 768w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/3-112-1536x165.png 1536w\" sizes=\"(max-width: 1918px) 100vw, 1918px\" \/><\/a><\/p>\n<p>As a result, your current location will be displayed in purple text next to the hostname of the container.<\/p>\n<h3 class=\"ack-h3\">To Create A New File Or Folder, Use The Following Commands<\/h3>\n<div class=\"article-space\"><\/div>\n<pre><code class=\"language-javascript\">\r\n \t`touch [path-to\/]{file}`: This command creates a new file.\r\n \t`mkdir [path-to\/]{dir}`: This command creates a new folder.<\/code><\/pre>\n<div class=\"article-space\"><\/div>\n<h3 class=\"ack-h3\">Here&#8217;s What Each Part Means<\/h3>\n<ul class=\"ack-ul\">\n<li><strong>`{file}` and `{dir}`:<\/strong> These are placeholders for the name of the file or folder you want to create if it&#8217;s in the current directory.<\/li>\n<li><strong>`[path-to\/]`:<\/strong> This is an optional part of the command if you want to specify a different<br \/>\nlocation for the new item.<\/li>\n<\/ul>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/4-112.png\"><img loading=\"lazy\" decoding=\"async\" class=\"ack-article-image aligncenter wp-image-41537 size-full\" title=\"Duplicate Session\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/4-112.png\" alt=\"Duplicate Session\" width=\"1919\" height=\"226\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/4-112.png 1919w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/4-112-300x35.png 300w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/4-112-1024x121.png 1024w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/4-112-768x90.png 768w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/4-112-1536x181.png 1536w\" sizes=\"(max-width: 1919px) 100vw, 1919px\" \/><\/a><\/p>\n<p>Use the following command to list all files and directories in the current location in order to verify that the file and folder we previously specified have been created:<\/p>\n<div class=\"article-space\"><\/div>\n<pre><code class=\"language-javascript\">\r\nLs<\/code><\/pre>\n<div class=\"article-space\"><\/div>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/5-112.png\"><img loading=\"lazy\" decoding=\"async\" class=\"ack-article-image aligncenter wp-image-41538 size-full\" title=\"Command To List\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/5-112.png\" alt=\"Command To List\" width=\"1919\" height=\"239\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/5-112.png 1919w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/5-112-300x37.png 300w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/5-112-1024x128.png 1024w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/5-112-768x96.png 768w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/5-112-1536x191.png 1536w\" sizes=\"(max-width: 1919px) 100vw, 1919px\" \/><\/a><\/p>\n<p><strong>Here are some of the most common commands used for file management:<\/strong><\/p>\n<ul class=\"ack-ul\">\n<li><strong>`cat`:<\/strong> Used to operate with text files; depending on specified arguments, it allows you to view, merge, and duplicate file content.<\/li>\n<li><strong>`cp`:<\/strong> Used to copy files and directories.<\/li>\n<li><strong>`locate`:<\/strong> Used to find a specific file or directory within a server by its name or part of its name.<\/li>\n<li><strong>`mv`:<\/strong> Used to move and\/or rename files and directories.<\/li>\n<li><strong>`pwd`:<\/strong> Outputs the full path to the current directory relative to the container root.<\/li>\n<li><strong>`rm`:<\/strong> Removes a specified file or directory.<\/li>\n<\/ul>\n<p>Now, let&#8217;s explore the default shell capabilities to monitor and manage your node&#8217;s metrics, resource consumption, running processes, and more.<\/p>\n<div class=\"article-space\"><\/div>\n\t\t<div data-elementor-type=\"section\" data-elementor-id=\"38668\" class=\"elementor elementor-38668\" data-elementor-settings=\"{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}\" data-elementor-post-type=\"elementor_library\">\n\t\t\t        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-882321f elementor-section-boxed elementor-section-height-default elementor-section-height-default ct-header-fixed-none ct-row-max-none\" data-id=\"882321f\" data-element_type=\"section\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n            \n                        <div class=\"elementor-container elementor-column-gap-default \">\n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7cc79cc\" data-id=\"7cc79cc\" data-element_type=\"column\">\n        <div class=\"elementor-widget-wrap elementor-element-populated\">\n                    \n        \t\t<div class=\"elementor-element elementor-element-e31b40f elementor-widget elementor-widget-shortcode\" data-id=\"e31b40f\" data-element_type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t            <\/div>\n        <\/div>\n                    <\/div>\n        <\/section>\n        \t\t<\/div>\n\t\t\n<div class=\"article-space\"><\/div>\n<h2 class=\"ack-h2\">Commands to View Server System Information<\/h2>\n<p>Use the {w} command to rapidly verify the container&#8217;s current state and make sure that nothing is affecting its performance or operability.<\/p>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/6-112.png\"><img loading=\"lazy\" decoding=\"async\" class=\"ack-article-image aligncenter wp-image-41539 size-full\" title=\"Server System Information\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/6-112.png\" alt=\"Server System Information\" width=\"1919\" height=\"227\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/6-112.png 1919w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/6-112-300x35.png 300w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/6-112-1024x121.png 1024w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/6-112-768x91.png 768w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/6-112-1536x182.png 1536w\" sizes=\"(max-width: 1919px) 100vw, 1919px\" \/><\/a><\/p>\n<p>General system statistics, such as the number of logged-in users, instance uptime, current system timestamp, and average number of active processes for the previous 1, 5, and 15 minutes, are displayed at the top of the output from the `w} command. Details about the connected users, such as their names, terminal type, source connection IP, login time, activity statistics, and the name of the process(es) that are now active and operating on their behalf, are displayed underneath this header.<\/p>\n<p>To view the server&#8217;s RAM usage statistics, you can check the content of the <strong>`\/proc\/meminfo`<\/strong> file using the <strong>`cat`<\/strong> command:<\/p>\n<div class=\"article-space\"><\/div>\n<pre><code class=\"language-javascript\">\r\ncat \/proc\/meminfo<\/code><\/pre>\n<div class=\"article-extra-space\"><\/div>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/7-11.png\"><img loading=\"lazy\" decoding=\"async\" class=\"ack-article-image aligncenter wp-image-41516 size-full\" title=\"The content of the &#96;\/proc\/meminfo&#96;\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/7-11.png\" alt=\"The content of the &#96;\/proc\/meminfo&#96;\" width=\"1919\" height=\"549\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/7-11.png 1919w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/7-11-300x86.png 300w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/7-11-1024x293.png 1024w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/7-11-768x220.png 768w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/7-11-1536x439.png 1536w\" sizes=\"(max-width: 1919px) 100vw, 1919px\" \/><\/a><\/p>\n<p>To display basic software and hardware information about the container, use the following command:<\/p>\n<div class=\"article-space\"><\/div>\n<pre><code class=\"language-javascript\">\r\nuname -a<\/code><\/pre>\n<div class=\"article-space\"><\/div>\n<p>Details like the machine hardware name, version number, kernel name, and other system-related data will be displayed by this command.<\/p>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/8-411.png\"><img loading=\"lazy\" decoding=\"async\" class=\"ack-article-image aligncenter wp-image-41517 size-full\" title=\"uname command\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/8-411.png\" alt=\"uname command\" width=\"1919\" height=\"238\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/8-411.png 1919w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/8-411-300x37.png 300w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/8-411-1024x127.png 1024w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/8-411-768x95.png 768w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/8-411-1536x190.png 1536w\" sizes=\"(max-width: 1919px) 100vw, 1919px\" \/><\/a><\/p>\n<p>Here you can see information about the server&#8217;s kernel (name, version, release date), node hostname, CPU type, operating system, and more.<\/p>\n<h2 class=\"ack-h2\">How to Manage Container Processes Remotely via Terminal<\/h2>\n<p>While connected via SSH, you can monitor all currently running processes within a container using the <strong>`top`<\/strong> command.<\/p>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/9-11.png\"><img loading=\"lazy\" decoding=\"async\" class=\"ack-article-image aligncenter wp-image-41518 size-full\" title=\"Connected via SSH\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/9-11.png\" alt=\"Connected via SSH\" width=\"1919\" height=\"550\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/9-11.png 1919w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/9-11-300x86.png 300w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/9-11-1024x293.png 1024w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/9-11-768x220.png 768w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/9-11-1536x440.png 1536w\" sizes=\"(max-width: 1919px) 100vw, 1919px\" \/><\/a><\/p>\n<p>Here, information is continuously updated in real time, showing details about all user processes, including system processes.<\/p>\n<p>To display only your own active processes, type <strong>`ps`<\/strong> and execute this command. Use <strong>`Ctrl + C`<\/strong> to stop the command and return to the console prompt.<\/p>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/10-11.png\"><img loading=\"lazy\" decoding=\"async\" class=\"ack-article-image aligncenter wp-image-41520 size-full\" title=\"Command. Use &#96;Ctrl + C&#96;\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/10-11.png\" alt=\"\" width=\"1919\" height=\"255\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/10-11.png 1919w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/10-11-300x40.png 300w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/10-11-1024x136.png 1024w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/10-11-768x102.png 768w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/10-11-1536x204.png 1536w\" sizes=\"(max-width: 1919px) 100vw, 1919px\" \/><\/a><\/p>\n<p><strong>`kill`<\/strong> is an additional helpful command that lets you end any active process by its process ID ({pid}). The output from the previous command has the necessary process identifier.<\/p>\n<p>Enter <strong>`kill {pid}{, where {{pid}}<\/strong> is the process ID of the process you wish to end, to use the <strong>`kill}<\/strong> command.<\/p>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/11-11.png\"><img loading=\"lazy\" decoding=\"async\" class=\"ack-article-image aligncenter wp-image-41521 size-full\" title=\"&#96;kill} command.\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/11-11.png\" alt=\"&#96;kill} command.\" width=\"1919\" height=\"290\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/11-11.png 1919w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/11-11-300x45.png 300w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/11-11-1024x155.png 1024w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/11-11-768x116.png 768w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/11-11-1536x232.png 1536w\" sizes=\"(max-width: 1919px) 100vw, 1919px\" \/><\/a><\/p>\n<p>As you can see, the process that was operating and visible on the screen in this section&#8217;s second step has been terminated because it is no longer included in the list of current processes.<\/p>\n<h2 class=\"ack-h2\">Operating Application Archives via SSH Console<\/h2>\n<p>The interface allows you to download and save files directly from the internet, including your application archive, for use on your server.<\/p>\n<p>Utilizing a certain URL, download files with the <strong>`wget`<\/strong> command:<\/p>\n<div class=\"article-space\"><\/div>\n<pre><code class=\"language-javascript\">\r\nwget {link}<\/code><\/pre>\n<div class=\"article-extra-space\"><\/div>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/12-11-1.png\"><img loading=\"lazy\" decoding=\"async\" class=\"ack-article-image aligncenter wp-image-41524 size-full\" title=\"&#96;wget&#96; command\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/12-11-1.png\" alt=\"&#96;wget&#96; command\" width=\"1069\" height=\"269\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/12-11-1.png 1069w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/12-11-1-300x75.png 300w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/12-11-1-1024x258.png 1024w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/12-11-1-768x193.png 768w\" sizes=\"(max-width: 1069px) 100vw, 1069px\" \/><\/a><\/p>\n<p>Next, you can extract the downloaded archive using the <strong>`unzip`<\/strong> command:<\/p>\n<div class=\"article-space\"><\/div>\n<pre><code class=\"language-javascript\">\r\nunzip {archive}<\/code><\/pre>\n<div class=\"article-space\"><\/div>\n<p>Replace <strong>`{archive}`<\/strong> with the path to your compressed package file.<\/p>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/13-11.png\"><img loading=\"lazy\" decoding=\"async\" class=\"ack-article-image aligncenter wp-image-41525 size-full\" title=\"Compressed Package File.\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/13-11.png\" alt=\"Compressed Package File.\" width=\"609\" height=\"223\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/13-11.png 609w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/13-11-300x110.png 300w\" sizes=\"(max-width: 609px) 100vw, 609px\" \/><\/a><\/p>\n<p>All of the extracted files will then be stored in the current directory in a folder called after the archive.<\/p>\n<h2 class=\"ack-h2\">Setting Custom Server Variables via SSH<\/h2>\n<p>You can look at the `.bash_profile} file in the home directory of any container to see the list of default environment variables for that container. After confirming that you are in the appropriate container directory, run the following command:<\/p>\n<div class=\"article-space\"><\/div>\n<pre><code class=\"language-javascript\">\r\ncat .bash_profile<\/code><\/pre>\n<div class=\"article-extra-space\"><\/div>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/14-11.png\"><img loading=\"lazy\" decoding=\"async\" class=\"ack-article-image aligncenter wp-image-41526 size-full\" title=\"bash_profile Command\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/14-11.png\" alt=\"bash_profile Command\" width=\"1919\" height=\"443\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/14-11.png 1919w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/14-11-300x69.png 300w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/14-11-1024x236.png 1024w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/14-11-768x177.png 768w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/14-11-1536x355.png 1536w\" sizes=\"(max-width: 1919px) 100vw, 1919px\" \/><\/a><\/p>\n<p>2. The <strong>`.bash_profile`<\/strong> file cannot be edited directly. If you need to add your own variables, you can write them into the <strong>`.bashrc`<\/strong> file located in the same folder. If the <strong>`.bashrc`<\/strong> file doesn&#8217;t exist, you can create it. Use any text editor of your choice, such as <strong>`vi`,<\/strong> to accomplish this task.<\/p>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/15-11.png\"><img loading=\"lazy\" decoding=\"async\" class=\"ack-article-image aligncenter wp-image-41527 size-full\" title=\"&#96;vi&#96;, To Accomplish This Task\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/15-11.png\" alt=\"&#96;vi&#96;, To Accomplish This Task\" width=\"1914\" height=\"280\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/15-11.png 1914w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/15-11-300x44.png 300w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/15-11-1024x150.png 1024w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/15-11-768x112.png 768w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/15-11-1536x225.png 1536w\" sizes=\"(max-width: 1914px) 100vw, 1914px\" \/><\/a><\/p>\n<p>Here, you can define new variables using the following format:<\/p>\n<div class=\"article-space\"><\/div>\n<pre><code class=\"language-javascript\">\r\nexport {VAR_NAME}={VAR_VALUE}<\/code><\/pre>\n<div class=\"article-space\"><\/div>\n<p>Replace <strong>`{VAR_NAME}`<\/strong> with the name you want for the variable, and <strong>`{VAR_VALUE}`<\/strong> with the value you want to assign to that variable.<\/p>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/16-11.png\"><img loading=\"lazy\" decoding=\"async\" class=\"ack-article-image aligncenter wp-image-41528 size-full\" title=\"Variable\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/16-11.png\" alt=\"Variable\" width=\"1919\" height=\"253\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/16-11.png 1919w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/16-11-300x40.png 300w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/16-11-1024x135.png 1024w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/16-11-768x101.png 768w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/16-11-1536x203.png 1536w\" sizes=\"(max-width: 1919px) 100vw, 1919px\" \/><\/a><\/p>\n<p>To verify if your custom variable was successfully set, run the following command:<\/p>\n<div class=\"article-space\"><\/div>\n<pre><code class=\"language-javascript\">\r\necho ${VAR_NAME}<\/code><\/pre>\n<div class=\"article-space\"><\/div>\n<p>Replace <strong>`{VAR_NAME}`<\/strong> with the name of your variable. This command will display the value of the specified variable.<\/p>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/17-11.png\"><img loading=\"lazy\" decoding=\"async\" class=\"ack-article-image aligncenter wp-image-41529 size-full\" title=\"Replace &#96;{VAR_NAME}&#96;\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/17-11.png\" alt=\"Replace &#96;{VAR_NAME}&#96;\" width=\"678\" height=\"197\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/17-11.png 678w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/17-11-300x87.png 300w\" sizes=\"(max-width: 678px) 100vw, 678px\" \/><\/a><\/p>\n<p>In the console response, you should see the `{VAR_VALUE}` string, which will be the value you assigned to the `${VAR_NAME}` variable in the `.bashrc` file.<\/p>\n<div class=\"article-space\"><\/div>\n\t\t<div data-elementor-type=\"section\" data-elementor-id=\"38668\" class=\"elementor elementor-38668\" data-elementor-settings=\"{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}\" data-elementor-post-type=\"elementor_library\">\n\t\t\t        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-882321f elementor-section-boxed elementor-section-height-default elementor-section-height-default ct-header-fixed-none ct-row-max-none\" data-id=\"882321f\" data-element_type=\"section\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n            \n                        <div class=\"elementor-container elementor-column-gap-default \">\n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7cc79cc\" data-id=\"7cc79cc\" data-element_type=\"column\">\n        <div class=\"elementor-widget-wrap elementor-element-populated\">\n                    \n        \t\t<div class=\"elementor-element elementor-element-e31b40f elementor-widget elementor-widget-shortcode\" data-id=\"e31b40f\" data-element_type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t            <\/div>\n        <\/div>\n                    <\/div>\n        <\/section>\n        \t\t<\/div>\n\t\t\n<div class=\"article-space\"><\/div>\n<h2 class=\"ack-h2\">Specifics of Certified Jelastic Containers Remote Management<\/h2>\n<p>At Jelastic PaaS, there are two types of software stack templates used as a base for creating containers:<\/p>\n<h3 class=\"ack-h3\">1. Dockerized Templates<\/h3>\n<p>These offer a uniform paradigm for container management for all kinds of servers (e.g., compute nodes, database servers, caching instances), according to the native Docker standard. You automatically have complete control over the instance with root rights when you login to a Dockerized server via SSH. This means you can carry out any necessary actions inside the container.<\/p>\n<h3 class=\"ack-h3\">2. Certified Software Templates<\/h3>\n<p>Developed by the Jelastic team to meet platform-specific standards, these templates are based on native stack implementations. You log in as the default server user when you use SSH to access a server built from a certified software template. We give extra settings that can be run using a standard user account to facilitate efficient container management without having root access:<\/p>\n<ul class=\"ack-ul\">\n<li><strong>`sudo sbin\/service {service_name} {start|stop|restart|condrestart|status|reload|upgrade|help}`:<\/strong> This set of commands operates the main server process specified by `{service_name}`. Possible values for `{service_name}` vary depending on the server type (e.g., jetty, mysql, tomcat, memcached, mongod, postgresql, couchdb, glassfish-domain1, nginx, php-fpm, httpd).<\/li>\n<li><strong>`sudo usr\/bin\/jem firewall {fwstart|fwstop}`:<\/strong> This command is used to start or stop the container firewall.<\/li>\n<li><strong>`sudo usr\/bin\/jem nscd`:<\/strong> This command controls the name-service caching daemon, which stores records for common name server requests (e.g., passwd, hosts, group).<\/li>\n<li><strong>`sudo sbin\/service rpcbind.service`:<\/strong> This command operates the RPC bind service, which maps user-readable names to program numbers for handling incoming RPC calls.<\/li>\n<\/ul>\n<p>All of these commands, when run with `sudo`, do not require entering the server admin root password. This allows you to leverage essential container functionality needed for your application to function properly, even with regular account permissions.<\/p>\n<h2 class=\"ack-h2\">Conclusion<\/h2>\n<p>Now that you know all the fundamentals of using the console to manage your containers, you can run your apps with Jelastic Multi-Cloud and benefit from more flexibility. Start with one of the certified service providers worldwide and use Jelastic Multi-Cloud.<\/p>\n<div class=\"cta-btn-top-space\"><\/div>\n\t\t<div data-elementor-type=\"section\" data-elementor-id=\"38668\" class=\"elementor elementor-38668\" data-elementor-settings=\"{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}\" data-elementor-post-type=\"elementor_library\">\n\t\t\t        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-882321f elementor-section-boxed elementor-section-height-default elementor-section-height-default ct-header-fixed-none ct-row-max-none\" data-id=\"882321f\" data-element_type=\"section\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n            \n                        <div class=\"elementor-container elementor-column-gap-default \">\n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7cc79cc\" data-id=\"7cc79cc\" data-element_type=\"column\">\n        <div class=\"elementor-widget-wrap elementor-element-populated\">\n                    \n        \t\t<div class=\"elementor-element elementor-element-e31b40f elementor-widget elementor-widget-shortcode\" data-id=\"e31b40f\" data-element_type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t            <\/div>\n        <\/div>\n                    <\/div>\n        <\/section>\n        \t\t<\/div>\n\t\t\n<div class=\"cta-btn-bottom-space\"><\/div>\n","protected":false},"author":1,"featured_media":52879,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","class_list":["post-41394","faq","type-faq","status-publish","has-post-thumbnail","hentry","faq_topics-development-tools","faq_topics-kb","faq_topics-product-documentation","faq_topics-ssh","faq_topics-ssh-management"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v20.10 (Yoast SEO v24.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Mange server remotely with SSH access to the container .<\/title>\n<meta name=\"description\" content=\"Discover how you will manage your server remotely by SSH access to the container. Learn more about SSH access methods overview.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SSH Access to Container: Manage Your Server Remotely\" \/>\n<meta property=\"og:description\" content=\"Discover how you will manage your server remotely by SSH access to the container. Learn more about SSH access methods overview.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement\" \/>\n<meta property=\"og:site_name\" content=\"AccuWeb Cloud\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-19T05:30:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement#article\",\"isPartOf\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement\"},\"author\":{\"name\":\"Jilesh Patadiya\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/#\/schema\/person\/a7a4cbe8405202b537509c757b588c58\"},\"headline\":\"SSH Access to Container: Manage Your Server Remotely\",\"datePublished\":\"2024-05-17T12:08:00+00:00\",\"dateModified\":\"2026-02-19T05:30:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement\"},\"wordCount\":1542,\"publisher\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/#organization\"},\"image\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement#primaryimage\"},\"thumbnailUrl\":\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg\",\"inLanguage\":\"en-US\"},{\"@type\":[\"WebPage\",\"FAQPage\"],\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement\",\"url\":\"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement\",\"name\":\"Mange server remotely with SSH access to the container .\",\"isPartOf\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement#primaryimage\"},\"image\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement#primaryimage\"},\"thumbnailUrl\":\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg\",\"datePublished\":\"2024-05-17T12:08:00+00:00\",\"dateModified\":\"2026-02-19T05:30:40+00:00\",\"description\":\"Discover how you will manage your server remotely by SSH access to the container. Learn more about SSH access methods overview.\",\"breadcrumb\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement#primaryimage\",\"url\":\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg\",\"contentUrl\":\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg\",\"width\":1280,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/accuweb.cloud\/resource\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SSH Access to Container: Manage Your Server Remotely\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/#website\",\"url\":\"https:\/\/accuweb.cloud\/resource\/\",\"name\":\"AccuWeb Cloud\",\"description\":\"Cutting Edge Cloud Computing\",\"publisher\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/accuweb.cloud\/resource\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/#organization\",\"name\":\"AccuWeb.Cloud\",\"url\":\"https:\/\/accuweb.cloud\/resource\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/04\/accuwebcloud_logo_black_tagline.jpg\",\"contentUrl\":\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/04\/accuwebcloud_logo_black_tagline.jpg\",\"width\":156,\"height\":87,\"caption\":\"AccuWeb.Cloud\"},\"image\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/#\/schema\/person\/a7a4cbe8405202b537509c757b588c58\",\"name\":\"Jilesh Patadiya\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/2cea2bdb5bbabb771ee67e96acad7396f25cb1a0c360b9bc4a9ac40cea9cd8b2?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/2cea2bdb5bbabb771ee67e96acad7396f25cb1a0c360b9bc4a9ac40cea9cd8b2?s=96&d=mm&r=g\",\"caption\":\"Jilesh Patadiya\"},\"description\":\"Jilesh Patadiya, the visionary Co-Founder and Chief Technology Officer (CTO) behind AccuWeb.Cloud. Founder &amp; CTO at AccuWebHosting.com. He shares his web hosting insights on the AccuWeb.Cloud blog. He mostly writes on the latest web hosting trends, WordPress, storage technologies, and Windows and Linux hosting platforms.\",\"sameAs\":[\"https:\/\/accuweb.cloud\/resource\",\"https:\/\/www.facebook.com\/accuwebhosting\",\"https:\/\/www.instagram.com\/accuwebhosting\/\",\"https:\/\/www.linkedin.com\/company\/accuwebhosting\/\",\"https:\/\/x.com\/accuwebhosting\",\"https:\/\/www.youtube.com\/c\/Accuwebhosting\"],\"url\":\"https:\/\/accuweb.cloud\/resource\/author\/accuwebadmin\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Mange server remotely with SSH access to the container .","description":"Discover how you will manage your server remotely by SSH access to the container. Learn more about SSH access methods overview.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement","og_locale":"en_US","og_type":"article","og_title":"SSH Access to Container: Manage Your Server Remotely","og_description":"Discover how you will manage your server remotely by SSH access to the container. Learn more about SSH access methods overview.","og_url":"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement","og_site_name":"AccuWeb Cloud","article_modified_time":"2026-02-19T05:30:40+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement#article","isPartOf":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement"},"author":{"name":"Jilesh Patadiya","@id":"https:\/\/accuweb.cloud\/resource\/#\/schema\/person\/a7a4cbe8405202b537509c757b588c58"},"headline":"SSH Access to Container: Manage Your Server Remotely","datePublished":"2024-05-17T12:08:00+00:00","dateModified":"2026-02-19T05:30:40+00:00","mainEntityOfPage":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement"},"wordCount":1542,"publisher":{"@id":"https:\/\/accuweb.cloud\/resource\/#organization"},"image":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement#primaryimage"},"thumbnailUrl":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg","inLanguage":"en-US"},{"@type":["WebPage","FAQPage"],"@id":"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement","url":"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement","name":"Mange server remotely with SSH access to the container .","isPartOf":{"@id":"https:\/\/accuweb.cloud\/resource\/#website"},"primaryImageOfPage":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement#primaryimage"},"image":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement#primaryimage"},"thumbnailUrl":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg","datePublished":"2024-05-17T12:08:00+00:00","dateModified":"2026-02-19T05:30:40+00:00","description":"Discover how you will manage your server remotely by SSH access to the container. Learn more about SSH access methods overview.","breadcrumb":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement#primaryimage","url":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg","contentUrl":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg","width":1280,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/accuweb.cloud\/resource\/articles\/ssh-access-mangement#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/accuweb.cloud\/resource\/"},{"@type":"ListItem","position":2,"name":"SSH Access to Container: Manage Your Server Remotely"}]},{"@type":"WebSite","@id":"https:\/\/accuweb.cloud\/resource\/#website","url":"https:\/\/accuweb.cloud\/resource\/","name":"AccuWeb Cloud","description":"Cutting Edge Cloud Computing","publisher":{"@id":"https:\/\/accuweb.cloud\/resource\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/accuweb.cloud\/resource\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/accuweb.cloud\/resource\/#organization","name":"AccuWeb.Cloud","url":"https:\/\/accuweb.cloud\/resource\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/accuweb.cloud\/resource\/#\/schema\/logo\/image\/","url":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/04\/accuwebcloud_logo_black_tagline.jpg","contentUrl":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/04\/accuwebcloud_logo_black_tagline.jpg","width":156,"height":87,"caption":"AccuWeb.Cloud"},"image":{"@id":"https:\/\/accuweb.cloud\/resource\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/accuweb.cloud\/resource\/#\/schema\/person\/a7a4cbe8405202b537509c757b588c58","name":"Jilesh Patadiya","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/accuweb.cloud\/resource\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/2cea2bdb5bbabb771ee67e96acad7396f25cb1a0c360b9bc4a9ac40cea9cd8b2?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2cea2bdb5bbabb771ee67e96acad7396f25cb1a0c360b9bc4a9ac40cea9cd8b2?s=96&d=mm&r=g","caption":"Jilesh Patadiya"},"description":"Jilesh Patadiya, the visionary Co-Founder and Chief Technology Officer (CTO) behind AccuWeb.Cloud. Founder &amp; CTO at AccuWebHosting.com. He shares his web hosting insights on the AccuWeb.Cloud blog. He mostly writes on the latest web hosting trends, WordPress, storage technologies, and Windows and Linux hosting platforms.","sameAs":["https:\/\/accuweb.cloud\/resource","https:\/\/www.facebook.com\/accuwebhosting","https:\/\/www.instagram.com\/accuwebhosting\/","https:\/\/www.linkedin.com\/company\/accuwebhosting\/","https:\/\/x.com\/accuwebhosting","https:\/\/www.youtube.com\/c\/Accuwebhosting"],"url":"https:\/\/accuweb.cloud\/resource\/author\/accuwebadmin"}]}},"_links":{"self":[{"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/faq\/41394","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/faq"}],"about":[{"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/types\/faq"}],"author":[{"embeddable":true,"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/comments?post=41394"}],"version-history":[{"count":16,"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/faq\/41394\/revisions"}],"predecessor-version":[{"id":53246,"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/faq\/41394\/revisions\/53246"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/media\/52879"}],"wp:attachment":[{"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/media?parent=41394"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}