工具:Virtual Machines14.1
系统环境:CentOS 7 64位 (2个) IP:192.168.163.138
IP:192.168.163.141
概述:在138系统中安装部署WebSSH服务
通过浏览器:http://WebSSH服务器IP:WebSSH端口/ssh/host/任意可ping通终端IP
开始部署:
安装 NVM
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
source ~/.bashrc
安装稳定版 Nodejs
nvm ls-remote --lts 查询最新版本号
v8.13.0 (LTS: Carbon)
v8.14.0 (LTS: Carbon)
-> v8.14.1 (Latest LTS: Carbon)
nvm install 8.14.1
# 版本号随时可能改变,请使用 nvm ls-remote --lts 查询最新版本号。
下载 WebSSH2
git clone https://github.com/billchurch/WebSSH2
cd WebSSH2-master/app
npm init 初始化,一路敲击回车
npm install --production
运行 Webssh2
npm start
敲击http://192.168.163.138:2222/ssh/host/192.168.163.141
会弹出窗口要求输入用户名密码,请输入141服务器的用户名与密码
ok
备注:
默认端口2222,防火墙需开放端口
/sbin/iptables -I INPUT -p tcp --dport 2222 -j ACCEPT
修改config.json中的listen.port即可修改端口
亲测!!!
原文链接:https://blog.csdn.net/Flykos/article/details/85161615