5

Im being unable to set an empty password for a MySQL connection pool from the GUI in glassfish 4. In previous versions of glassfish it used to work by simply putting "()" without the quotes. It doesnt work anymore for me in glassfish 4.

By the way, I've been googling my issue with any luck.

Does anyone know what is the proper way to do it in glassfish 4?

Thanks in advance for you support

Regards

Juan
  • 467
  • 1
  • 5
  • 19

1 Answers1

11

What I did to fix this was to manually in /glassfish/domains/(yourDomainName)/domain.xml add the following property to the connection pool:

 <property name="password" value=""></property>

Remember to restart Glassfish after the change has been made.

Full-Fledged
  • 309
  • 2
  • 8