openEuler是一款开源操作系统。当前openEuler内核源于Linux,支持鲲鹏及其它多种处理器,能够充分释放计算芯片的潜能,是由全球开源贡献者构建的高效、稳定、安全的开源操作系统,适用于数据库、大数据、云计算、人工智能等应用场景。同时,openEuler是一个面向全球的操作系统开源社区,通过社区合作,打造创新平台,构建支持多处理器架构、统一和开放的操作系统,推动软硬件应用生态繁荣发展。
cat /etc/openEuler-release
web终端-cockpit
#web终端-cockpit
yum install cockpit -y 或 dnf install cockpit -y
systemctl start cockpit
ss -nltp | grep 9090
#浏览器器访问
http://IP:9090
ttyd-WebSSH
#下载ttyd
wget -O ttyd https://github.com/tsl0922/ttyd/releases/download/1.6.0/ttyd_linux.x86_64
#添加执行权限
chmod +x ttyd
#移动目录
mv ttyd /usr/sbin
#运行
ttyd -v
#创建ttyd.service文件,-c参数的含义是设置用户名、密码验证,-c 用户名:密码
vim /etc/systemd/system/ttyd.service
[Unit]
Description=ttyd
After=network.target
[Service]
ExecStart=/usr/sbin/ttyd -c root:111111 bash
[Install]
WantedBy=multi-user.target
#使daemon生效
systemctl daemon-reload
#启动ttyd
systemctl start ttyd
#停止ttyd
systemctl stop ttyd
#重启ttyd
systemctl restart ttyd
#开机启动
systemctl enable ttyd
#查看运行状态
systemctl status ttyd
#浏览器器访问
http://IP:7681