Linux中国

在 Centos/RHEL 6.X 上安装 Wetty

第1步: 安装 epel 源

# wget http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
# rpm -ivh epel-release-6-8.noarch.rpm

第2步:安装依赖

# yum install epel-release git nodejs npm -y

(LCTT 译注:对,没错,是用 node.js 编写的)

第3步:在安装完依赖后,克隆 GitHub 仓库

# git clone https://github.com/krishnasrinivas/wetty

第4步:运行 Wetty

# cd wetty
# npm install

第5步:从 Web 浏览器启动 Wetty 并访问 Linux 终端

# node app.js -p 8080

第6步:为 Wetty 安装 HTTPS 证书

# openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 365 -nodes 

等待完成。

第7步:通过 HTTPS 来使用 Wetty

# nohup node app.js --sslkey key.pem --sslcert cert.pem -p 8080 &

第8步:为 wetty 添加一个用户

# useradd <username>
# Passwd <username>

第9步:访问 wetty

http://Your_IP-Address:8080

输入你之前为 wetty 创建的证书然后访问。

到此结束!

via: http://www.unixmen.com/install-wetty-centosrhel-6-x/

作者:Debojyoti Das 译者:strugglingyouth 校对:wxy

本文由 LCTT 原创编译,Linux中国 荣誉推出


本文转载来自 Linux 中国: https://github.com/Linux-CN/archive

对这篇文章感觉如何?

太棒了
0
不错
0
爱死了
0
不太好
0
感觉很糟
0
雨落清风。心向阳

    You may also like

    Leave a reply

    您的电子邮箱地址不会被公开。 必填项已用 * 标注

    此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据

    More in:Linux中国