Setting up postgresql for Amarok in Ubuntu
Posted by Sharar Ravitz in Amarok, Linux, Postqresql on Wednesday, February 6, 2008
First we need to install postgresql:
sudo aptitude install postgresql
Then change the default password for the postgres user - replace password with your password:
Now we add a user *in this example username should be your system username - setting up non system users requires additional steps*:
sudo -u postgres createuser -D -A -P username
you will be promted to enter a password for the user
Then create a database for amarok *replace username with your sytem user name as above*:
sudo -u postgres createdb -O username amarok
Finally we configure amarok to use the database. If you are running amarok for the first time enter settings then using the username/password and amarok database just created. Set hostname to "localhost" and port to "5432". Otherwise from amarok goto settings, configure amarok, collection
This entry was posted on Wednesday, February 6, 2008 at 7:28 AM and is filed under Amarok, Linux, Postqresql. You can follow any responses to this entry through the RSS 2.0. You can leave a response.
# by Unknown - July 17, 2008 at 6:19 PM
thx this tutorial helped me a lot
Post a Comment