PyCharm如何配置SSH和SFTP连接远程服务器

作者:XerCis 时间:2022-04-27 01:57:28 

简介

  • SSH,Secure Shell,安全外壳协议,用于远程登录会话

  • SFTP,Secret File Transfer Protocol,安全文件传送协议,用于同步文件

Windows 连接远程服务器进行 Linux 环境下的 Python 开发需要结合 SSH 和SFTP

安装

安装 PyCharm Professional

PyCharm Community 没有该选项,无法配置 SSH Interpreter

PyCharm如何配置SSH和SFTP连接远程服务器

登陆远程服务器

ssh user@host [-p port]

查看是否开启 SSH 服务

service sshd status

如果显示 Loaded: not-found (Reason: No such file or directory) 或 sshd: unrecognized service,则需要安装

sudo apt-get install openssh-server

如果显示 Active: inactive (dead),则需要启动

sudo /etc/init.d/ssh restart

只要 SSHD 服务启动了,SFTP便可使用

PyCharm如何配置SSH和SFTP连接远程服务器

Tools → Deployment → Configuration…

PyCharm如何配置SSH和SFTP连接远程服务器

→ SFTP → New server name 随意填(如 user@host:port) → 取消勾选 Visible only for this project → SSH configuration →→ 根据 SSH 信息对应填上 → Test Connection

PyCharm如何配置SSH和SFTP连接远程服务器

SFTP 这里 Test Connection → Autodetect

PyCharm如何配置SSH和SFTP连接远程服务器

File → Settings → Project: xxx → Python Interpreter → 设置 → Add… → SSH Interpreter → Existing server configuration

PyCharm如何配置SSH和SFTP连接远程服务器

配置 Python 解释器和同步文件夹,是否用 sudo 权限看情况勾选

PyCharm如何配置SSH和SFTP连接远程服务器

初试

main.py

print(__file__)

PyCharm如何配置SSH和SFTP连接远程服务器

可能需要手动同步:Tools → Deployment → Upload to…

快捷键:Ctrl + Alt + Shift + X

遇到的坑

1. EOF while reading packet

PyCharm如何配置SSH和SFTP连接远程服务器

需要启动 SSHD 服务

2. sudo: unable to resolve host xxx: No such file or directory

sudo vim /etc/hosts

添加

127.0.0.1       localhost xxx

3. vim /etc/hosts 报错 “/etc/hosts” E166: Can’t open linked file for writing

查看真实路径

readlink /etc/hosts

或者把文件删了

4. Can’t get remote credentials for deployment server xxx@xxx:xx password

没填 sudo 的密码,可以重新配,直接 SSH Interpreter → New server configuration

来源:https://xercis.blog.csdn.net/article/details/122682487

标签:PyCharm,SSH,SFTP,远程服务器
0
投稿

猜你喜欢

  • 如何使用MyBatis Plus实现数据库curd操作

    2024-01-21 17:37:13
  • 如何使用Go语言实现远程执行命令

    2024-04-25 15:16:39
  • pycharm使用anaconda全过程

    2023-07-19 04:57:12
  • 一文理解Python命名机制

    2021-11-22 08:04:04
  • 【推荐】汉字转为拼音的asp函数

    2007-08-17 11:11:00
  • Linux下编译安装python3步骤

    2021-11-07 17:50:04
  • python3.7环境下sanic-ext未生效踩坑解析

    2022-06-30 12:56:35
  • 在Mac中配置Python虚拟环境过程解析

    2023-11-14 06:55:43
  • 基于Python批量生成指定尺寸缩略图代码实例

    2021-12-15 14:58:48
  • 详解在Python中以绝对路径或者相对路径导入文件的方法

    2021-10-09 19:37:24
  • Python搭建HTTP服务器和FTP服务器

    2022-05-06 14:21:54
  • Python实现图像手绘效果的方法详解

    2021-10-27 08:22:23
  • Python闭包及装饰器运行原理解析

    2022-12-16 20:59:06
  • python matplotlib实现条形图的填充效果

    2022-03-12 07:55:20
  • 设计的技术含量

    2009-01-12 18:20:00
  • 使用Python实现跳一跳自动跳跃功能

    2023-04-07 01:57:55
  • flask-script模块的具体使用

    2022-04-08 10:53:34
  • 解决tensorflow打印tensor有省略号的问题

    2022-12-13 09:22:09
  • php的优点总结 php有哪些优点

    2023-11-14 16:03:25
  • js实现固定区域内的不重叠随机圆

    2024-05-13 09:18:40
  • asp之家 网络编程 m.aspxhome.com