Bug 1070339
Summary: | ovirt-engine-dwh-setup does not handle escape characters in the 10-setup-database.conf ENGINE_DB_PASSWORD | |||
---|---|---|---|---|
Product: | Red Hat Enterprise Virtualization Manager | Reporter: | James W. Mills <jamills> | |
Component: | ovirt-engine-dwh | Assignee: | Yedidyah Bar David <didi> | |
Status: | CLOSED ERRATA | QA Contact: | Barak Dagan <bdagan> | |
Severity: | high | Docs Contact: | ||
Priority: | urgent | |||
Version: | 3.3.0 | CC: | acathrow, adahms, didi, iheim, jamills, pstehlik, Rhev-m-bugs, sbonazzo, sherold, yeylon, ylavi | |
Target Milestone: | --- | Keywords: | TestOnly, ZStream | |
Target Release: | 3.4.0 | |||
Hardware: | All | |||
OS: | Linux | |||
Whiteboard: | integration | |||
Fixed In Version: | Doc Type: | Bug Fix | ||
Doc Text: |
Previously, the ovirt-engine-dwh-setup command would fail under certain conditions. This would occur when the password specified for the internal admin user for the Red Hat Enterprise Virtualization Manager contained special characters. While passwords would be correctly escaped in the 10-setup-database.conf file, the ovirt-engine-dwh-setup command would not detect the '\' escape character, resulting in an authentication error. Now, this logic has been revised so that special characters are correctly parsed, making it possible for the ovirt-engine-dwh-setup command to complete successfully.
|
Story Points: | --- | |
Clone Of: | ||||
: | 1072406 (view as bug list) | Environment: | ||
Last Closed: | 2014-06-09 15:18:27 UTC | Type: | Bug | |
Regression: | --- | Mount Type: | --- | |
Documentation: | --- | CRM: | ||
Verified Versions: | Category: | --- | ||
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | ||
Cloudforms Team: | --- | Target Upstream Version: | ||
Embargoed: | ||||
Bug Depends On: | ||||
Bug Blocks: | 1072406, 1078909, 1142926 |
Description
James W. Mills
2014-02-26 15:58:55 UTC
Th workaround for this is to edit '10-setup-database.conf', remove the '/', run ovirt-engine-dwh-setup, then edit '10-setup-database.conf' again and add the '/' back. I can't even connect to the PG DB using $ in the password: #psql -U postgres -d engine -c "ALTER USER engine WITH PASSWORD '123456';" ALTER ROLE # psql -h 'myhost' -U engine Password for user engine: psql (8.4.20, server 8.4.18) Type "help" for help. engine=> #psql -U postgres -d engine -c "ALTER USER engine WITH PASSWORD '123$56';" ALTER ROLE # psql -h 'myhost' -U engine Password for user engine: psql: FATAL: password authentication failed for user "engine". What am I missing ? (In reply to Barak Dagan from comment #6) > I can't even connect to the PG DB using $ in the password: > > #psql -U postgres -d engine -c "ALTER USER engine WITH PASSWORD '123456';" > ALTER ROLE > > # psql -h 'myhost' -U engine > Password for user engine: > psql (8.4.20, server 8.4.18) > Type "help" for help. > > engine=> > > > #psql -U postgres -d engine -c "ALTER USER engine WITH PASSWORD '123$56';" Did you type this command as-is? > ALTER ROLE > > # psql -h 'myhost' -U engine > Password for user engine: > psql: FATAL: password authentication failed for user "engine". > > What am I missing ? $5 will be eaten by the shell, probably replaced by '', so in effect you changed the password to 12346 . Use escapes/quoting/etc. Verified on av2.1: postgres=# "ALTER USER engine WITH PASSWORD '1234%6'; /etc/ovirt-engine/engine.conf.d/10-setup-database.conf: ENGINE_DB_USER="engine" ENGINE_DB_PASSWORD="1234%6" ENGINE_DB_DATABASE="engine" DWH installation passed successfuly. Verified on av2.1: postgres=# "ALTER USER engine WITH PASSWORD '123$56'; /etc/ovirt-engine/engine.conf.d/10-setup-database.conf: ENGINE_DB_USER="engine" ENGINE_DB_PASSWORD="123\$56" ENGINE_DB_DATABASE="engine" DWH installation passed successfuly. Andrew, note that this bug is actually on 3.3, cloned and fixed in 3.3.2, and the original (this one) was left mainly for verification. Not sure it really needs a doc text. If we do want one, consider that {rhevm,ovirt-engine}-{dwh,reports}-setup were replaced by 'engine-setup' which does everything (using plugins). Also note that the escape char is '\' and not '/'. So we might have something like: Previously, the ovirt-engine-dwh-setup command would fail under certain conditions. This would occur when the password specified for the internal admin user for the Red Hat Enterprise Virtualization Manager contained special characters. While passwords would be correctly escaped in the 10-setup-database.conf file, the ovirt-engine-dwh-setup command would not detect the '\' escape character, resulting in an authentication error. The ovirt-engine-dwh-setup command is obsoleted by this release, and its functionality is contained in the 'engine-setup' command, which does not suffer from this bug. Same for bug #1070344. Hi Yedidyah, Thank you for your message. Yes, I recall a similar bug to this one being listed in an older advisory, and I would be happy to take this one from the list if you feel there is not a strong case for having doc text for this one as well. I will change the requires_doc_text flag to '-' for now, but please let me know if you feel some form of documentation is needed later on. I will also correct the escape character used to ensure it reflects your feedback, just in case. Please let me know if you have any other concerns or if there are any other bugs you feel might not need doc text. Kind regards, Andrew Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. http://rhn.redhat.com/errata/RHEA-2014-0601.html |