home Tutorial How to install Wetty on Centos/RHEL 6.X

How to install Wetty on Centos/RHEL 6.X

As a system administrator, you probably connect to remote servers using a program such as GNOME Terminal (or the like) if you’re on a Linux desktop, or a SSH client such as Putty if you have a Windows machine, while you perform other tasks like browsing the web or checking your email.

Step 1: Install epel repo

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

Step 2: Install dependencies

yum install epel-release git nodejs npm -y

Step 3: After installing these dependencies, clone the GitHub repository

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

Step 4: Run Wetty

cd wetty
npm install pty.js
npm install

Step 5: Starting Wetty and Access Linux Terminal from Web Browser

node app.js -p 8080

Step 6: Wetty through HTTPS

openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 365 -nodes (complete this)

Step 7: launch Wetty via HTTPS

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

Step 8: Add an user for wetty

useradd <username>
Passwd <username>

Step 9: Access wetty

http://Your_IP-Address:8080
give the credential have created before for wetty and access

—- Done, Thanks —-

TAGS:

Debojyoti Das

System and Database Administrator on Linux and Windows Environment.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.