How do a I edit .conf file for a postgres AWS RDS?

Solution 1:

As of now, RDS does allow changing configurations. So you can

  1. See the list of configurations that your RDS is using.
  2. You can change these parameters. I believe you can not change all the parameters though. You can change those that are listed in the RDS reference page.

As usual there are some static (or fixed) configuration parameters for which you have to restart you DB server and then there are dynamic options for which you dont need a restart.

Here is what the RDS reference manual says:

PostgreSQL parameters that you would set for a local PostgreSQL instance in the postgresql.conf file are maintained in the DB parameter group for your DB instance. If you create a DB instance using the default parameter group, the parameter settings are in the parameter group called default.postgres9.3.

When you create a DB instance, the parameters in the associated DB parameter group are loaded. You can modify parameter values by changing values in the parameter group. You can also change parameter values, if you have the security privileges to do so, by using the ALTER DATABASE, ALTER ROLE, and the SET commands. Note that you cannot use the command line postgres command nor the env PGOPTIONS command because you will have no access to the host.

Here is the official amazon RDS documentation for postgres: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.PostgreSQL.CommonDBATasks.html#Appendix.PostgreSQL.CommonDBATasks.Parameters

Solution 2:

With RDS you don't edit config files directly. Instead edit the parameters through the RDS console, or via the API.

You can read up on "Modifying a DB Parameter Group" here: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithParamGroups.html

You can modify parameter values in a user-created DB parameter group, but you cannot change the parameter values in a default DB parameter group. Changes to parameters are applied to DB instances that are members of the DB parameter group either immediately or on the next reboot of the DB instance, depending on the type of the parameter (dynamic or static) and the apply method chosen for the parameter update.

Solution 3:

Right now, you can't:

https://forums.aws.amazon.com/thread.jspa?messageID=505301&#505301

... at least they are aware of people wanting this.

My guess is this will be available when they add custom Option Groups for PostgreSQL.