04-ttyd通过浏览器远程连接服务器

@

web页面提供ssh连接。

1. 二进制文件准备

下载连: >>> ttyd-1.6.3.tar.gz

image.png

image.png

2. 安装

2.1 服务安装

  • 将文件拷贝到目标服务器 /usr/bin/ 下,改名为 ttyd
  • 保证对应用户有执行权限
  • 查看结果
[root@iot-server-3 ~]# ttyd -v
ttyd version 1.6.3-3b174da

2.2 服务启动文件

创建 /etc/systemd/system/ttyd.service内容如下:

[Unit]
Description=ttyd
After=network.target

[Service]
ExecStart=/usr/sbin/ttyd -c liubei:liubei@2021 bash

[Install]
WantedBy=multi-user.target

ExecStart 后边 libei使用户名,liubei@2021是密码。

2.3 启动服务

[root@iot-server-3 ~]# systemctl daemon-reload
[root@iot-server-3 ~]# systemctl restart ttyd
  • 查看结果
[root@iot-server-3 ~]# netstat -ntlp|grep ttyd
tcp        0      0 0.0.0.0:7681            0.0.0.0:*               LISTEN      2824911/ttyd

posted on 2021-11-03 16:36  运维开发玄德公  阅读(108)  评论(0编辑  收藏  举报  来源

导航