> ## Documentation Index
> Fetch the complete documentation index at: https://ijiajia.art/llms.txt
> Use this file to discover all available pages before exploring further.

# SSH

> SSH使用指南，专业选手必备

<Tip>
  如果您是Windows用户，可以使用系统自带的Powershell/CMD登录，如果要更好的终端体验推荐下载使用[Cmder](http://autodl-public.ks3-cn-beijing.ksyun.com/tool/cmder_mini.zip)工具，免安装解压即用。或者使用[XShell工具](xshell.md)更佳 todo。

  如果是Mac用户，可以使用系统自带的Terminal完成SSH登录。
</Tip>

## SSH登录

开机实例后，找到SSH登录指令

<img src="https://mintcdn.com/aa-55ff8824/VG8hMr-DV2gD-Mi8/images/instance/image_2025-12-23_170549_992.png?fit=max&auto=format&n=VG8hMr-DV2gD-Mi8&q=85&s=005e109a7d1d0296567b9f86b352949b" alt="image_2025-12-23_170549_992" width="2742" height="500" data-path="images/instance/image_2025-12-23_170549_992.png" />

复制您的SSH登录指令，这里演示使用的是：`ssh -p 27285 root@connect.westd.seetacloud.com`

<Info>
  在`ssh -p 27285 root@connect.westd.seetacloud.com`命令中， 各个参数的含义为：

  用户名：root

  主机host： connect.westd.seetacloud.com

  端口号：27285
</Info>

在您的本地终端中输入该命令，输入密码进行登录。（**注意：密码不会显示任何字符，正确输入或鼠标右击粘贴后回车即可**）

<img src="https://mintcdn.com/aa-55ff8824/VG8hMr-DV2gD-Mi8/images/instance/image_2025-12-23_170325_933.png?fit=max&auto=format&n=VG8hMr-DV2gD-Mi8&q=85&s=f537b7cbc3c8437f290bd25a8dc6b672" alt="image_2025-12-23_170325_933" width="1986" height="1684" data-path="images/instance/image_2025-12-23_170325_933.png" />

<Warning>如果通过SSH登录后执行训练程序，请使用screen/tmux开守护进程，确保程序不受SSH连接中断影响程序执行！ screen使用方法详见[守护进程](daemon.md)。todo更新链接</Warning>
