Displaying 1 result from an estimated 1 matches for "server&server".
2007 May 11
1
postgres erros on RHEL 4
Hi All,
I set up posgresql on RedHat El4. Below are rpms I installed.
[root at LinuxBox etc]# rpm -qa |grep postgres
postgresql-libs-7.4.16-1.RHEL4.1
postgresql-devel-7.4.16-1.RHEL4.1
postgresql-7.4.16-1.RHEL4.1
postgresql-python-7.4.16-1.RHEL4.1
postgresql-server-7.4.16-1.RHEL4.1
Then, I did below commands to create a user and a database.
[root at box root]# su postgres
bash-3.1$ createuser -adEP test
Enter password for new role:
Enter it again:
bash-3.1$ createdb -O test testdb
CREATE DATABASE
bash-3.1$ exit
exit
Then, I installed phpPgAdmin rpm.
[r...