You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
PORT=$1
|
|
PORT2=$2
|
|
|
|
#### echo akaxin logo and desc
|
|
|
|
##set tcp port
|
|
if [ -n $PORT ]; then
|
|
PORT=2021
|
|
fi
|
|
|
|
##set http port
|
|
if [ -n $PORT2 ]; then
|
|
PORT2=8280
|
|
fi
|
|
|
|
sh stop.sh $PORT 1
|
|
sh start.sh $PORT $PORT2 1 |