https://github.com/genshen/ssh-web-console
Connect to your linux machine via ssh in your browser.
https://github.com/genshen/ssh-web-console
linux sftp ssh terminal tunnel websocket
Last synced: about 1 month ago
JSON representation
Connect to your linux machine via ssh in your browser.
- Host: GitHub
- URL: https://github.com/genshen/ssh-web-console
- Owner: genshen
- License: mit
- Created: 2017-08-22T02:48:48.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-09-03T21:33:47.000Z (8 months ago)
- Last Synced: 2024-11-01T09:35:01.560Z (6 months ago)
- Topics: linux, sftp, ssh, terminal, tunnel, websocket
- Language: Go
- Homepage:
- Size: 6.86 MB
- Stars: 330
- Watchers: 10
- Forks: 70
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ssh-web-console
you can connect to your linux machine by ssh in your browser.


## Quick start
```bash
$ docker pull genshen/ssh-web-console:latest
# docker build --build-arg GOMODULE=on -t genshen/ssh-web-console . # or build docker image on your own machine
$ docker run -v ${PWD}/conf:/home/web/conf -p 2222:2222 --rm genshen/ssh-web-console
```or using Docker Compose:
```bash
$ git clone https://github.com/genshen/ssh-web-console.git
$ cd ssh-web-console
$ docker-compose up -d
```Open your browser, visit `http://localhost:2222`. Enjoy it!
**NOTE**: To run docker container, make sure config.yaml file is in directory ${PWD}/conf
## Build & Run
Make sure your Go version is 1.11 or later
### Clone
```bash
git clone --recurse-submodules https://github.com/genshen/ssh-web-console.git
cd ssh-web-console
```### Build frontend
```bash
cd web
yarn install
yarn build
cd ../
```### Build go
```bash
go get github.com/rakyll/statik
statik --src=web/build # use statik tool to convert files in 'web/build' dir to go code, and compile into binary.
export GO111MODULE=on # for go 1.11.x
go build
```## Run
run: `./ssh-web-console`, and than you can enjoy it in your browser by visiting `http://localhost:2222`.
## Screenshots


## Related Works
- [shibingli/webconsole](https://github.com/shibingli/webconsole)