Files
nexus/wiki/concepts/远程开发.md
2026-04-14 16:02:50 +08:00

564 B
Raw Blame History

title, type, tags, sources, last_updated
title type tags sources last_updated
远程开发 concept
Trae
SSH
开发
trae-remote-dev-guide
2026-04-14

Definition

通过Remote-SSH连接到远程服务器进行开发的方式。

SSH免密配置

  1. 生成密钥对:ssh-keygen -t rsa -b 4096
  2. 上传公钥:ssh-copy-id -i ~/.ssh/id_rsa.pub user@host
  3. 配置SSH Config别名方便管理

Docker权限

用户必须在docker用户组sudo usermod -aG docker $USER

Connections