I'm running Postgres 9.4. Every time I change it it's returning to default GMT after I reboot,
> $ psql -c 'show timezone'
TimeZone
> US/Central
Is there a parameter option to be added in postgres.conf?
I'm running Postgres 9.4. Every time I change it it's returning to default GMT after I reboot,
> $ psql -c 'show timezone'
TimeZone
> US/Central
Is there a parameter option to be added in postgres.conf?
You can set timezone
param into pgsql/data/postgresql.conf
file:
timezone = 'US/Central'
and then restart postgresql sever.