Skip to content

Instantly share code, notes, and snippets.

View apuredol's full-sized avatar

Raul Plata apuredol

  • Arkhotech
View GitHub Profile
@apuredol
apuredol / soapui_mockservicerunner_script.sh
Last active September 9, 2021 13:57
Sample script to start/stop soapui mockservicerunner with nohup
#!/bin/bash
#
# Designed for running SoapUI mockservicerunner.sh script in background as command line tool
# Credits to: tinogomes on github https://gist.github.com/tinogomes/447191
# References:
# http://stackoverflow.com/questions/14061876/control-to-the-next-statement-after-running-eval-command
# http://stackoverflow.com/questions/392022/best-way-to-kill-all-child-processes/6481337#6481337
# Changes for supporting multiple instances
# Variables to edit according to your environment
@apuredol
apuredol / start_stop_memcached_script.sh
Created May 19, 2016 21:56 — forked from tinogomes/start_stop_memcached_script.sh
Script sample to start/stop for linux with nohup
#!/bin/bash
#
BASE=/tmp
PID=$BASE/app.pid
LOG=$BASE/app.log
ERROR=$BASE/app-error.log
PORT=11211
LISTEN_IP='0.0.0.0'
MEM_SIZE=4