Usually when you get an error message that has an error code, as in your case -1024, that is another error that the utility encountered. Error codes that are positive are warnings and ones that are negative are errors. THese map directly to SQL codes, in your case SQL1024N which is "a database connection does not exist".
You need to connect to a DB to issue GET AUTHORIZATIONS
ANdy