Openbravo Issue Tracking System - Openbravo ERP |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0001154 | Openbravo ERP | K. Packaging | public | 2007-04-30 12:57 | 2008-11-25 21:47 |
|
Reporter | user11 | |
Assigned To | jpabloae | |
Priority | normal | Severity | minor | Reproducibility | always |
Status | closed | Resolution | out of date | |
Platform | | OS | 5 | OS Version | |
Product Version | | |
Target Version | | Fixed in Version | 2.40 | |
Merge Request Status | |
Review Assigned To | |
OBNetwork customer | |
Web browser | |
Modules | Core |
Support ticket | |
Regression level | |
Regression date | |
Regression introduced in release | |
Regression introduced by commit | |
Triggers an Emergency Pack | No |
|
Summary | 0001154: No admin password for PostgreSQL in Ubuntu/Debian |
Description | In Ubuntu/Debian, there is no admin password for PostgreSQL.
Under this distributions you have to setup a password (a pain in the neck) to make the installer happy and make possible to continue with the next installation screen.
Solution: It should be possible to enter a blank password . May be should warn user that in some distros the user has a password and may be necessary.
Jordi, |
Steps To Reproduce | |
Proposed Solution | |
Additional Information | |
Tags | No tags attached. |
Relationships | |
Attached Files | |
|
Issue History |
Date Modified | Username | Field | Change |
2008-06-12 10:04 | jpabloae | Project | Openbravo ERP => @5@ |
2008-06-12 11:56 | jpabloae | Category | A.Installation & Platform => Installer |
2008-11-13 06:51 | jpabloae | Status | new => closed |
2008-11-13 06:51 | jpabloae | Note Added: 0010225 | |
2008-11-13 06:51 | jpabloae | Resolution | open => out of date |
2008-11-25 21:41 | pjuvara | Sticky Issue | No => Yes |
2008-11-25 21:43 | pjuvara | Project | @5@ => Openbravo ERP |
2008-11-25 21:45 | pjuvara | Category | Installer => K. Packaging |
2008-11-25 21:47 | pjuvara | Sticky Issue | Yes => No |
Notes |
|
(0004743)
|
user71
|
2005-06-01 00:00
(edited on: 2008-06-12 09:43) |
|
|
|
(0001016)
|
jpabloae
|
2007-04-30 22:59
(edited on: 2008-06-12 09:18) |
|
Logged In: YES
user_id=1603191
Originator: NO
This is a common issue in most default PostgreSQL installations. A possible workaround for the users:
1) Edit pg_hba.conf (located in /var/lib/postgresql/data or similar) and replace all the "password" or "md5" strings by "trust". Eg:
local all all md5
into
local all all trust
2) Restart postresql: /etc/init.d/postgresql restart
3) Change postgres' password:
psql -d postgres -U postgres
alter role postgres with password 'new_password';
\q
4) Open pg_hba.conf again and replace all the "trust" strings by "md5".
5) Restart postgresql. |
|
|
(0001017)
|
user71
|
2007-05-24 15:48
(edited on: 2008-06-12 09:18) |
|
Logged In: YES
user_id=1318257
Originator: NO
You can simple change PostgresSQL admin password.
$ sudo su - postgres
$ alter role postgres with password '123';
$ exit |
|
|
(0001018)
|
user71
|
2007-05-24 16:48
(edited on: 2008-06-12 09:18) |
|
Logged In: YES
user_id=1318257
Originator: NO
Pass something in previous post.
This is right way:
$ sudo su - postgres
$ psql -U postgres
# alter role postgres with password '123';
# \q
$ exit |
|
|
(0001019)
|
user11
|
2007-11-11 15:11
(edited on: 2008-06-12 09:18) |
|
Logged In: YES
user_id=1505407
Originator: YES
I'm re-opening this bug. The installer still does not work correctly. Jordi, |
|
|
(0001020)
|
villind
|
2007-12-12 14:22
(edited on: 2008-06-12 09:18) |
|
|
|
|
Thank you for the bug report.
However, I close the issue because we are not having an installer for 2.50 and future releases. |
|