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中國