diff --git a/start.sh b/start.sh new file mode 100644 index 000000000..450eddeb1 --- /dev/null +++ b/start.sh @@ -0,0 +1,3 @@ +echo 'Starting open refine' +nohup ./refine -i 192.168.2.121 > open-refine.log 2>&1 & +echo "open refine started, check log through - tail -f open-refine.log" diff --git a/stop.sh b/stop.sh new file mode 100644 index 000000000..dc6c85e34 --- /dev/null +++ b/stop.sh @@ -0,0 +1,2 @@ +ps -ef | grep refine | awk '{print $2}' | awk 'NR==1' | xargs kill +echo 'successfully stopped open-refine'