1. 程式人生 > >redhat7.2離線安裝kong-dashboard

redhat7.2離線安裝kong-dashboard

kong-dashboard

https://github.com/PGBI/kong-dashboard

# Pull repository
git clone 
cd kong-dashboard
# Build Kong Dashboard
npm install
# Start Kong Dashboard
npm start
# To start Kong Dashboard on a custom port or with basic auth
npm start -- [-p port] [-a user=password]

在能聯網的機器上下載和install完整的kong-dashboard,然後打包上傳到離線機器,在離線機器上

cd kong-dashboard

nohup npm start &


如何停止,通過ps查看進程,連個進程都需要kill掉

ps -ef|grep kong-dash

root 18389 18379 0 15:06 pts/1 00:00:00 node ./bin/kong-dashboard start

root 18395 18389 0 15:06 pts/1 00:00:00 /opt/deploy/node-v6.10.3-linux-x64/bin/node /opt/deploy/kong-dashboard/lib/server


本文出自 “記筆記” 博客,請務必保留此出處http://dressame.blog.51cto.com/12551541/1924132

redhat7.2離線安裝kong-dashboard