-
Type: Bug
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: 5.4.2-RC1
-
Component/s: Nuxeo Package Management
When using the "Autogenerate PostgeSQL config", the password is generated with: cat /dev/urandom | tr -cd "[:alnum:]" | head -c 8
On some systems the "alnum" seems to be extended to some non-ascii characters, which makes the creation of the PostgreSQL nuxeo user fail.
Solution: replace [:alnum:] with [a-zA-Z0-9]