Version 1 (modified by 15 years ago) ( diff ) | ,
---|
Installing postgres
root# aptitude install postgresql
Setting up a user and a database
root# adduser --disabled-password --gecos='Master Chef,,,,' masterchef root# su - postgres postgres$ createuser -S -D -R masterchef postgres$ createdb -O masterchef dinnerparty
connecting to the database
masterchef$ psql dinnerparty
Note:
See TracWiki
for help on using the wiki.