blob: f282c8985bedf208dfec10a6ead73495f37f90c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
---
layout: page
title: Database troubleshooting
---
# Database user access control
<p class="lead">
These instructions are for Debian — do consult the PostgreSQL
documentation if you are having trouble at this stage.
</p>
At this point you might need to configure PostgreSQL to allow password-based
access to the `fms` database as the user `fms` from using Unix-domain sockets.
Edit the file `/etc/postgresql/8.4/main/pg_hba.conf` and add as the
first line:
local fms fms md5
You will then need to restart PostgreSQL with:
$ sudo /etc/init.d/postgresql restart
If you want to access the database from the command line, you can add
the following line to `~/.pgpass`:
localhost:*:fms:fms:somepassword
Then you should be able to access the database with:
$ psql -U fms fms
## Configuration
When you've got everything working, you'll need to update the
[database config settings]({{ "/customising/config/#fms_db_host" | relative_url }}).
|