Wowza Community

How can i create an ant task tha that will shutdown and restart wowza

I created the following ant task.

<?xml version="1.0"?>

What I would like to do is for my IDE (Intellij) to wait until the server has started up before starting the remote debugging session.

Could someone give me some pointers on how I would do this.

Hello

You might look at setting the command line options in the startup.sh to run the debugger and wait as needed. You can set the following:

 -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=1044

The suspend=y will start java and then wait for the debugger to attach. If that is not what you are looking for, it may pay to contact intellij for alternative options.

Thanks,

Matt