We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In administering the service you should be able to use Payara's asadmin command line tool, but by default it fails:
asadmin
$ docker container exec -ti dataverse /bin/bash # /opt/payara/appserver/bin/asadmin list-jvm-options | grep dataverse Authentication failed for user: null
(Usually, this means invalid user name and/or password)
If one tries it from the host, asadmin asks for credentials:
$ docker container exec -ti dataverse /opt/payara/appserver/bin/asadmin list-jvm-options Enter admin user name:
Solution: Add the admin user name ('admin') and password ('admin') to README
But pipeline still not works. To prevent to be asked again, you should do the following steps:
$ docker container exec -ti dataverse /bin/bash
# /opt/payara/appserver/bin/asadmin login Enter admin user name [Enter to accept default]> Enter admin password> # exit
$ docker container exec -ti dataverse /opt/payara/appserver/bin/asadmin list-jvm-options | grep dataverse
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In administering the service you should be able to use Payara's
asadmin
command line tool, but by default it fails:(Usually, this means invalid user name and/or password)
If one tries it from the host,
asadmin
asks for credentials:Solution: Add the admin user name ('admin') and password ('admin') to README
But pipeline still not works. To prevent to be asked again, you should do the following steps:
The text was updated successfully, but these errors were encountered: