New Shibboleth 5.1.3 IdP installation - status.sh failing
Paul B. Henson
henson at acm.org
Tue Mar 25 02:33:53 UTC 2025
On Mon, Mar 24, 2025 at 07:38:03PM -0400, o haya via users wrote:
> (http://localhost/idp/status) Connection refused
By default it's trying to connect to port 80 on localhost, you're
receiving a connection refused presumably because:
> [orcladmin at idp01 bin]$ ./status.sh –url=http://10.0.0.58:8080/idp
You're running your container on port 8080, not port 80.
> Exception in thread "main" com.beust.jcommander.ParameterException: Was
> passed main parameter '–url=http://10.0.0.58:8080/idp' but no main
> parameter was defined in your arg class
You appear to be using a single hyphen '-', not a double hyphen '--',
the argument is either:
-u URL
or
--url URL
but not
-url URL
Hmm, actually, you're not even using a normal single hyphen, you're
using a unicode hyphen 8-/. Don't do that.
Try './status.sh --url=http://localhost:8080/idp'
More information about the users
mailing list