Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to install Wetty on Centos

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces "how to install Wetty on Centos". In daily operation, I believe many people have doubts about how to install Wetty on Centos. The editor consulted all kinds of materials and sorted out simple and easy-to-use operation methods. I hope it will be helpful to answer the doubts of "how to install Wetty on Centos". Next, please follow the editor to study!

What is Wetty?

Wetty = Web + tty

As a system administrator, if you are under the Linux desktop, you can use it to connect to a remote server like a GNOME terminal (or similar); if you are under Windows, you can use it to connect remotely like using a SSH client like Putty, and then you can surf the Internet and check email and other things in the browser at the same time.

(LCTT Note: in short, this is a remote terminal based on Web browser)

Step 1: install the epel source

# 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

(LCTT translation note: yes, that's right, it's written in node.js)

Step 3: after installing the dependencies, clone the GitHub repository

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

Step 4: run Wetty

# cd wetty # npm install

Step 5: launch Wetty from a Web browser and access the Linux terminal

# node app.js-p 8080

Step 6: install the HTTPS certificate for Wetty

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

Waiting to be finished.

Step 7: use Wetty through HTTPS

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

Step 8: add a user to wetty

# useradd # Passwd

Step 9: visit wetty

Http://Your_IP-Address:8080

Enter the certificate you previously created for wetty and visit it.

At this point, the study on "how to install Wetty on Centos" is over. I hope to be able to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report