Search code examples
command-linesoapuisoap-client

How to start soapui.sh under linux in background?


How to start soapui.sh under Linux in background?

I tried several variants like:

nohup ./soapui.sh < /dev/null 2>&1 > /dev/null &

nohup ./soapui.sh & < /dev/null 2>&1 > /dev/null &

When I performed exit and back to server again I haven't already seen SoapUI is running.


Solution

  • Try the below:

    nohup ./soapui.sh &