Merge pull request #1208 from shubhra02/master
Added Start and Stop Script For Linux
This commit is contained in:
commit
e1722a8895
1
.gitignore
vendored
1
.gitignore
vendored
@ -25,3 +25,4 @@ broker/core/test-output/
|
||||
tmp/
|
||||
/test-output
|
||||
/bin
|
||||
open-refine.log
|
||||
|
6
start.sh
Normal file
6
start.sh
Normal file
@ -0,0 +1,6 @@
|
||||
echo 'Starting open refine'
|
||||
read -p "Enter IP Address [Default 127.0.0.1]: " ip
|
||||
ip=${ip:-127.0.0.1}
|
||||
nohup ./refine -i $ip > open-refine.log 2>&1 &
|
||||
echo "Started Open-Refine on" $ip
|
||||
echo "open refine started, check log through -> tail -f open-refine.log"
|
Loading…
Reference in New Issue
Block a user