Detailed tutorial of pycharm and ssh remote access server docker

Detailed tutorial of pycharm and ssh remote access server docker

Background: Some experiments need to be completed on the server. Therefore, in order to quickly and conveniently debug the code on the remote server locally, a direct connection between the local and remote servers is required. However, Docker is installed on many servers at this stage, and it is usually necessary to debug the code in Docker. Therefore, this article mainly provides the configuration method of remote access server Docker.

Required tools and instructions:

  • A remote server
  • Pycharm: integrated development tool, installed locally
  • ssh: remote access tool, both local and remote servers are required
  • Docker: container, on a remote server

1. Configure the remote server docker

Step 1: Purchase and configure a server (skip if you already have a server)
You can purchase a CentOS server from server providers such as Alibaba Cloud or Tencent Cloud, or use a server provided by a company or school. However, it should be noted that if the company or school's server needs to be accessed in a VPN environment, you need to connect to the VPN in advance before accessing the server.

Step 2: Install Docker (skip if you already have Docker)

sudo curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun

For details, please refer to the references at the end of the article [2]

Note: The sudo command is executed with the highest privilege root. If the current account is root, the sudo command is not required.

Step 3: Pull the image

The official image website is Docker Hub, where you can find images that meet your production needs. Let's take pytorch as an example and pull the image:

sudo docker pull pytorch/pytorch

You can download the relevant files and view the pulled images through the following command:

sudo docker images

For details, please refer to the references at the end of the article [6]

Step 4: Create a container

After obtaining the image, you need to instantiate a container based on the image. Here, the run command is used to instantiate the container:

ssudo docker run -p [self-selected port number]:22 --gpus all -itd --name [self-selected name] -v [host (local) directory]:[customized directory in the created container] /bin/bash

Execute the above command to instantiate a container. The relevant parameters are:

  • -p [optional port number]:22: Map the container to the corresponding port number and associate it with port 22 for listening;
  • –gpus all: specifies that all GPUs contained in the host machine can be used in the instantiated container;
  • -i: Keep STDIN open;
  • -t: allocate a pseudo terminal;
  • -d: Run in the background
  • –name [give yourself a name]: In order to avoid remembering long and complicated container IDs, you can usually set a name for the container. Be careful not to use the same name as an existing one.
  • -v [host (local) directory]:[customized directory in the container]: To keep the files in the container synchronized with the host, you can use this parameter. Note that the custom directory in the container must be an absolute path.

In addition, -i , -t and -d can be written together, for example -it , -itd .
For example, the command:

sudo docker run -p 8848:22 --gpus all -itd --name wjn -v /home/gm/wangjianing/docker:/wjn pytorch/pytorch /bin/bash

It indicates that the instantiated image pytorch/pytorch is a container, which occupies the host port number 8848 and keeps associated listening with ssh port 22. It can use all GPUs. The name is "wjn". The host address "/home/gm/wangjianing/docker" is associated with the directory "/wjn" in the container, and uses /bin/bash as the command script.

After creation, you can view all instantiated containers

sudo docker ps

Step 5: Open the port

If the port is protected by a firewall, you need to open it yourself:

sudo /sbin/iptables -I INPUT -p tcp --dport 8848 -j ACCEPT

Step 6: Start the container

Start the container so that it is in running state:

sudo docker start [container id or your own name]

For example, if the container number just created is "5621fade441e" and the name is "wjn", you can execute:

sudo docker start 5621fade441e

or

sudo docker start wjn

After startup, you can:

sudo docker ps -a

View all started and running containers, as shown in the figure:

insert image description here

Note: You should be able to see the relevant information of the container at this point. Pay special attention to the PORTS attribute. Port information is required to determine whether the currently created container can be accessed through the port. Without this information, remote access to the container cannot be completed. At present, the port of the created container cannot be directly modified, so it can only be recreated.

Step 7: Enter the container

To enter the container, use the command:

sudo docker exec -it [container id or your own name] /bin/bash

2. Container configuration ssh

I thought that after creating docker, I could directly access the container through ssh, but later I found that I needed to enter the container and perform a series of ssh configurations. The main steps are as follows:

Step 8: Install ssh :

Enter the newly created container and execute the following command:

apt update
apt install -y openssh-server

Then create a configuration folder and make the necessary configuration:

mkdir /var/run/sshd
echo 'root:passwd' | chpasswd

Note that root here indicates the user name to be accessed remotely later, and passwd is the access password, which can be set by yourself. For example, I set it as:

echo 'root:123456' | chpasswd

Step 9: Set login permissions :

Execute the following three lines of commands to set permissions

sed -i 's/PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config
sed 's@session\srequired\spam_loginuid.so@session optional pam_loginuid.so@g' -i /etc/pam.d/sshd
echo "export VISIBLE=now" >> /etc/profile

Step 10: Modify the ssh configuration file

After completing the second step, the blogger still cannot connect remotely, so after querying, he found that he needed to modify the relevant configuration files:
Execute the following command to open the ssh configuration file:

vim /etc/ssh/sshd_config

If vim is not installed, execute:

apt install vim

After opening, modify the file:
AddressFamily any previous # delete modify PermitRootLogin yes previous # delete modify PasswordAuthentication yes previous # delete

In the vim editor, execute the command to save and exit:

:wq

Finally restart the ssh service:

service ssh restart

For details, please refer to references [1] and [3].

3. SSH test

After the configuration is completed, the server settings should be complete. You can perform a simple test. For example, (1) execute the command in the host machine to view the current port, and you can see that port 8848 is available.

sudo netstat -ntlp 

insert image description here

(2) You can also execute commands on the host machine to check whether there is a corresponding port mapping relationship for the current container:

sudo docker port [container id or your own name] 22

For example, after the blogger executes, it returns 0.0.0.0:8848, indicating success

(3) Enter the container and execute:

python3

Enter the Python environment and execute

import torch
print(torch.cuda.is_available())

If it returns True, it means that the docker can use GPU.

(4) Try remote access. On any connected machine (if in a LAN, you need to connect to a VPN):

ssh [user name created in step 8]@[your server address] -p [port number defined by yourself]

If the password prompt is displayed, it means the connection is successful. After entering the password, you can directly enter the corresponding container. For example, the blogger executes:

ssh [email protected] -p 8848

The following information is displayed, indicating that the connection is successful.

insert image description here

4. Pycharm test

If you use pycharm to directly access the remote server docker, you can make relevant settings on pycharm:

Step 11: Install pycharm (skip if already installed)

You need to install the professional version of pycharm. After installation, you can use the activation code or go directly to the official website to register an account with a student email address for free use for one year. After installation, enter pycharm

For details, please refer to the references at the end of the article [7]

Step 12: Set up ssh

As shown below, click in sequence to enter the menu:

insert image description here

Then add a new connection and click from left to right:

insert image description here

Enter the ssh editing interface and fill in the configuration information:

insert image description here

Click "Test Connection" to test it. If it succeeds, it means that pycharm can also connect to the remote container:

insert image description here

Return to the previous page, select the configured ssh, and then select the specific directory in the container that you want pycharm to associate with. For example, the blogger directly selects the directory /wjn associated with the domain host when creating the container as the location where pycharm can update and upload, and then saves it.

insert image description here

At this point, all configuration work is completed, and you can freely debug the project in the server docker in pycharm

References:

[1] SSH client remote login Linux server password is always wrong [2] Docker installation [3] PyCharm + Docker: create the most comfortable deep learning alchemy furnace [4] Pycharm remote connection server to run code and debug [5] Solve the problem of memory exhaustion during pytorch GPU calculation [6] Docker image use [7] How students can use all the functions of Pycharm professional version for free

This is the end of this article about the detailed tutorial on pycharm and ssh remote access to server docker. For more relevant pycharm remote access to docker content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Docker remote access implementation
  • How to enable remote access in Docker

<<:  Detailed explanation of built-in methods of javascript array

>>:  How to convert a column of comma-separated values ​​into columns in MySQL

Recommend

MariaDB under Linux starts with the root user (recommended)

Recently, due to the need to test security produc...

The pitfalls encountered when learning Vue.js

Table of contents Class void pointing ES6 Arrow F...

Summary of various methods of MySQL data recovery

Table of contents 1. Introduction 2. Direct recov...

Installation and configuration of MySQL 5.7.17 free installation version

MYSQL version: MySQL Community Server 5.7.17, ins...

Docker configuration Alibaba Cloud Container Service operation

Configuring Alibaba Cloud Docker Container Servic...

HTML+CSS to achieve surround reflection loading effect

This article mainly introduces the implementation...

MySQL count detailed explanation and function example code

Detailed explanation of mysql count The count fun...

Example code for converting Mysql query result set into JSON data

Mysql converts query result set into JSON data Pr...

CSS border adds four corners implementation code

1.html <div class="loginbody"> &l...

Detailed Explanation of JavaScript Framework Design Patterns

Table of contents mvc mvp mvvm The source of Vue ...

About the problems of congruence and inequality, equality and inequality in JS

Table of contents Congruent and Incongruent congr...

Vue 2.0 Basics in Detail

Table of contents 1. Features 2. Examples 3. Opti...

A guide to writing flexible, stable, high-quality HTML and CSS code standards

The Golden Rule Always follow the same set of cod...

How to build ssh service based on golang image in docker

The following is the code for building an ssh ser...