[!WARNING]
初次部署EasyNode,登录系统后务必记得修改默认账户密码 admin/admin

[!WARNING]
强烈建议使用 iptablesfail2ban 等安全服务限制IP访问,谨慎暴露面板服务到公网。

[!NOTE]
客户端信息监控与webssh功能都将以该服务器作为中转。中国大陆连接建议使用香港、新加坡、日本、韩国等地区的低延迟服务器来安装服务端

功能

  • webssh终端&SFTP
  • 批量导入(Xshell&FinalShell)
  • 实例分组
  • 凭据托管
  • 邮件通知
  • 服务器状态推送
  • 脚本库
  • 批量指令
  • 终端自定义

安装

服务端安装

  • 占用端口:8082 推荐使用docker镜像安装

Docker

1
docker run -d --net=host --name=easynode-server -v $PWD/easynode/db:/easynode/app/db chaoszhu/easynode

访问:http://yourip:8082

手动部署

依赖Nodejs版本 > 20+

1
2
3
4
5
6
7
8
9
10
git clone https://github.com/chaos-zhu/easynode
cd easynode
yarn
cd web
yarn build
mv dist/* ../server/app/static
cd ../server
yarn start
# 后台运行需安装pm2
pm2 start index.js --name easynode-server

访问:http://yourip:8082

  • 查看日志:pm2 log easynode-server
  • 启动服务:pm2 start easynode-server
  • 停止服务:pm2 stop easynode-server
  • 删除服务:pm2 delete easynode-server

客户端安装

  • 客户端用于实时向服务端推送系统、公网IP、CPU、内存、硬盘、网卡等基础信息,不安装不影响使用面板,但是无法实时同步基础信息。

  • 占用端口:22022

安装

1
curl -o- https://mirror.ghproxy.com/https://raw.githubusercontent.com/chaos-zhu/easynode/main/client/easynode-client-install.sh | bash

卸载

1
curl -o- https://mirror.ghproxy.com/https://raw.githubusercontent.com/chaos-zhu/easynode/main/client/easynode-client-uninstall.sh | bash

查看客户端状态:systemctl status easynode-client

查看客户端日志: journalctl --follow -u easynode-client

查看详细日志:journalctl -xe