diff --git a/setup/index.php b/setup/index.php
index b92cd29095..b71e3b6fa9 100644
--- a/setup/index.php
+++ b/setup/index.php
@@ -218,7 +218,7 @@
. lang('Create the empty database and grant user permissions -')
. "
[postgres@server /var/lib/pgsql]\$ createuser --no-adduser --no-createdb -P " . $info['db_user'] . ""
. "
Enter password for new user: " . $info['db_pass'] . ""
- . "
[postgres@server /var/lib/pgsql]\$ createdb --owner " . $info['db_user'] . ' ' . $info['db_name'] . ""
+ . "
[postgres@server /var/lib/pgsql]\$ createdb --encoding=utf-8 --owner " . $info['db_user'] . ' ' . $info['db_name'] . ""
. '
'.lang('to allow password authentification add the following line to your pg_hba.conf (above all others) AND restart postgres:')
. '
# TYPE DATABASE USER CIDR-ADDRESS METHOD'
.($info['db_host'] ? "
host $info[db_name] $info[db_user] $ip/32 password" :