What is the default user name and password of Payara server?

Hello,

I installed the Hopswork on AWS EC2 today. When I tried to access the Payara server admin console with the provided user name (adminuser) and password (adminpw) by Hopsworks guide, the login failed.

What is the default user name and password of Payara server admin console?

Hi,

The hopsworks-installer.sh script overwrites the default password with a randomly generated one.
The installer script should have generated a directory called cluster-defns in the same directory from which you launched the script. Inside that directory, you’ll find a file called hopsworks-installer-active.yml.

The hopsworks-installer-active.yml contains the configuration for your Hopsworks installation.
The configuration contains, among other parameters, the password for the Payara server. Look for a similar section in your cluster definition:

hopsworks:
    [ .... ] 
    admin:
      user: adminuser
      password: [this is your password]


Fabio

Dear Fabio,

Yes, it works. Thank you.

Brian