shadowsocks-manager
A tool based on node.js and sql.lite
Website demo
https://wall.gyteng.com/
First, install nodejs6
Install the command-line environment
centos
yum install wget git zip gcc gcc-c++ -y
debian ubutun command-line environment installation
apt-get install wget git zip gcc gcc-c++ -y
Download the nodejs source code
# cd /usr/local/src
# wget https://nodejs.org/dist/v6.10.0/node-v6.10.0.tar.gz
Install gcc and gcc-c++ required for compilation
# yum install gcc gcc-c++
Extract and compile
# cd /usr/local/src
# tar zxvf node-v6.10.0.tar.gz
# cd node-v6.10.0
# ./configure
# make && make install
Check the version
#node –v
v6.10.0
Panel download
git clone https://github.com/shadowsocks/shadowsocks-manager.git
cd shadowsocks-manager
npm i
Run the panel
node server.js
If you need to keep the website stable, you can use pm2 (software specially optimized for Nodejs processes)
Install pm2
npm install pm2 -g |
Run the website
pm2 start server.js
