Undeploy all applications from Glassfish
Asked Answered
T

2

6

I need a way to undeploy all my applications from Glassfish. Normally, I would use asadmin undeploy --target=[target] [appname]" for each application. My problem is that I don't know the name of all applications that are present on the server. Is there a command that would allow me to just undeploy everything? Thanks.

Tytybald answered 27/6, 2013 at 15:6 Comment(1)
perhaps easier to delete the domain and then re-create..Apocrypha
L
5

While there isn't an 'undeploy everything' command, there is a list-applications command. This page describes list-applications and some other commands that will help you achieve your goal.

Literalminded answered 27/6, 2013 at 18:7 Comment(0)
A
13

You can create a bash script like this one:

#!/bin/bash

ASADMIN=(path to Glassfish asadmin executable)

function undeploy_all {
    for p in $*; do
        echo "Undeploying $p..."
        $ASADMIN undeploy $p
    done;
}

apps=`$ASADMIN list-applications -t | awk '{print $1;}'`

undeploy_all $apps

When you run it, it will undeploy all deployed applications automatically. It needs awk. Make sure to configure the ASADMIN variable with the path to asadmin.

Arianearianie answered 23/4, 2014 at 23:14 Comment(2)
Hi Johny can you please tell me what is awk.Punic
@Punic awk is an interpreter for the AWK Programming Language, which is used for manipulation of data files, text retrieval and processing. Is useful for processing the output of commands, like in the script. The book for gawk is a complete reference for learning it if you are interested.Arianearianie
L
5

While there isn't an 'undeploy everything' command, there is a list-applications command. This page describes list-applications and some other commands that will help you achieve your goal.

Literalminded answered 27/6, 2013 at 18:7 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.