Installs and configures PostgreSQL as a client or a server.
- Amazon Linux
- Debian 7+
- Ubuntu 14.04+
- Red Hat/CentOS/Scientific 6+
- Fedora
We follow the currently supported versions listed on https://www.postgresql.org/support/versioning/
The earliest supported version is currently:
- 9.3 (9.3.19)
- Chef 12.16+
openssl
build-essential
Updating the pg_hba configuration can now be done with the postgresql_access
resource which is documented below. There is a backward-compatible migration left in the server_conf
recipe, but it will be removed in the next major release.
For each of the node['postgresql']['pg_hba']
hashes, you want to make a corresponding postgresql_access resource like the following example:
# What used to be this:
default['postgresql']['pg_hba'] = {
type: 'local',
db: 'all',
user: 'postgres',
addr: nil,
method: 'ident'
}
# Is now this:
postgresql_access 'local_postgres_superuser' do
access_type 'local'
access_db 'all'
access_user 'postgres'
access_addr nil
access_method 'ident'
end
Note: The default notification for the new postgresql_access
resource is now :reload
which is the recommended method of notifying PostgreSQL of access changes without requiring a full database restart. Before, the access template would defer to the notification method specified by node['postgresql']['server']['config_change_notify']
The postgresql.conf
file is dynamically generated from attributes. Each key in node['postgresql']['config']
is a postgresql configuration directive, and will be rendered in the config file. For example, the attribute:
node['postgresql']['config']['listen_addresses'] = 'localhost'
Will result in the following line in the postgresql.conf
file:
listen_addresses = 'localhost'
The attributes file contains default values for Debian and RHEL platform families (per the node['platform_family']
). These defaults have disparity between the platforms because they were originally extracted from the postgresql.conf files in the previous version of this cookbook, which differed in their default config. The resulting configuration files will be the same as before, but the content will be dynamically rendered from the attributes. The helpful commentary will no longer be present. You should consult the PostgreSQL documentation for specific configuration details.
For values that are "on" or "off", they should be specified as literal true
or false
. String values will be used with single quotes. Any configuration option set to the literal nil
will be skipped entirely. All other values (e.g., numeric literals) will be used as is. So for example:
node.default['postgresql']['config']['logging_collector'] = true
node.default['postgresql']['config']['datestyle'] = 'iso, mdy'
node.default['postgresql']['config']['ident_file'] = nil
node.default['postgresql']['config']['port'] = 5432
Will result in the following config lines:
logging_collector = 'on'
datestyle = 'iso,mdy'
port = 5432
(no line printed for ident_file
as it is nil
)
Note that the unix_socket_directory
configuration was renamed to unix_socket_directories
in Postgres 9.3 so make sure to use the node['postgresql']['unix_socket_directories']
attribute instead of node['postgresql']['unix_socket_directory']
.
This resource installs PostgreSQL client packages.
install
- (default) Install client packages
Name | Types | Description | Default | Required? |
---|---|---|---|---|
version |
String | Version of PostgreSQL to install | '9.6' | no |
setup_repo |
Boolean | Define if you want to add the PostgreSQL repo | true | no |
To install '9.5' version:
postgresql_client_install 'My Postgresql Client install' do
version '9.5'
end
This resource install PostgreSQL client and server packages.
install
- (default) Install client and server packages
Name | Types | Description | Default | Required? |
---|---|---|---|---|
version |
String | Version of PostgreSQL to install | '9.6' | no |
setup_repo |
Boolean | Define if you want to add the PostgreSQL repo | true | no |
hba_file |
String | Path of pg_hba.conf file | '<default_os_path>/pg_hba.conf' | no |
ident_file |
String | Path of pg_ident.conf file | '<default_os_path>/pg_ident.conf' | no |
external_pid_file |
String | Path of PID file | '/var/run/postgresql/-main.pid' | no |
password |
String, nil | Set postgres user password | 'generate' | no |
port |
String, Integer | Set listen port of postgresql service | 5432 | no |
To install PostgreSQL server, set you own postgres password and set another service port.
postgresql_server_install 'My Postgresql Server install' do
password 'MyP4ssw0d'
port 5433
end
This resource manages the postgresql.conf server file.
modify
- (default) Manager PostgreSQL configuration file (postgresql.conf)
Name | Types | Description | Default | Required? |
---|---|---|---|---|
version |
String | Version of PostgreSQL to install | '9.6' | no |
data_directory |
String | Path of postgresql data directory | '<default_os_data_path>' | no |
hba_file |
String | Path of pg_hba.conf file | '<default_os_conf_path>/pg_hba.conf' | no |
ident_file |
String | Path of pg_ident.conf file | '<default_os_conf_path>/pg_ident.conf' | no |
external_pid_file |
String | Path of PID file | '/var/run/postgresql/-main.pid' | no |
stats_temp_directory |
String | Path of stats file | '/var/run/postgresql/-main.pg_stat_tmp' | no |
notification |
Symbol | How to notify Postgres of the access change | :restart | yes |
To setup your PostgreSQL configuration with a specific data directory. If you have installed a specific version of PostgreSQL (different from 9.6), you must specify version in this resource too.
postgresql_server_conf 'My PostgreSQL Config' do
vesion '9.5'
data_directory '/data/postgresql/9.5/main'
notification :reload
end
This resource manages postgresql extensions with a given database to ease installation/removal.
Deprecation Note: The format database/extension
to determine the database and extention to install has been deprecated. Please use the properties 'database' and 'extension' instead.
create
- (default) Creates an extension in a given databasedrop
- Drops an extension from the database
Name | Types | Description | Default | Required? |
---|---|---|---|---|
database |
String | Name of the database to install the extention into | Name of resource | yes |
extention |
String | Name of the extention to install the database | Name of resource | yes |
old_version |
String | Older module name for new extension replacement. Appends FROM to extension query | None | no |
To install the adminpack extension:
# Add the contrib package in Ubuntu/Debian
package 'postgresql-contrib-9.6'
# Install adminpack extension
postgresql_extension 'postgres adminpack' do
database 'postgres'
extension 'adminpack'
end
This resource installs the pg rubygem and replaces the previously used 'ruby' recipe with a single resource.
install
- (default) Installs the pg ruby gem
Name | Types | Description | Default | Required? |
---|---|---|---|---|
client_version |
String | PostgreSQL Client Version | '9.6' | no |
version |
String or nil | PG gem version to install | '0.21.0' | no |
setup_repo |
Boolean | Automatically setup pgdg repo for the client library? | true | no |
source |
String | Gem source file path | None | no |
clear_sources |
Boolean | Set to true to download a gem from the path specified by the source property (and not from RubyGems) | None | no |
include_default_source |
Boolean | Set to false to not include Chef::Config[:rubygems_url] in the sources | None | no |
gem_binary |
String | Path to the rubygems gem binary |
None | no |
options |
String | One (or more) additional options that are passed to the gem install | None | no |
timeout |
Integer | The amount of time (in seconds) to wait before timing out | 300 | no |
ruby_binary |
String | Path to the ruby binary | None | no |
This resource uses the accumulator pattern to build up the pg_hba.conf
file via chef resources instead of piling on a mountain of chef attributes to make this cookbook more reusable. It directly mirrors the configuration options of the postgres hba file in the resource and by default notifies the server with a reload to avoid a full restart, causing a potential outage of service. To revoke access, simply remove the resource and the access change won't be computed into the final pg_hba.conf
grant
- (default) Creates an access line inside ofpg_hba.conf
Name | Types | Description | Default | Required? |
---|---|---|---|---|
name |
String | Name of the access resource, this is left as a comment inside the pg_hba config |
Resource name | yes |
source |
String | The cookbook template filename if you want to use your own custom template | 'pg_hba.conf.erb' | yes |
cookbook |
String | The cookbook to look in for the template source | 'postgresql' | yes |
comment |
String, nil | A comment to leave above the entry in pg_hba |
nil | no |
access_type |
String | The type of access, e.g. local or host | 'local' | yes |
access_db |
String | The database to access. Can use 'all' for all databases | 'all' | yes |
access_user |
String | The user accessing the database. Can use 'all' for any user | 'all' | yes |
access_addr |
String, nil | The address(es) allowed access. Can be nil if method ident is used since it is local then | nil | yes |
access_method |
String | Authentication method to use | 'ident' | yes |
notification |
Symbol | How to notify Postgres of the access change. | :reload | yes |
To grant access to the postgresql user with ident authentication:
postgresql_access 'local_postgres_superuser' do
comment 'Local postgres superuser access'
access_type 'local'
access_db 'all'
access_user 'postgres'
access_addr nil
access_method 'ident'
end
This generates the following line in the pg_hba.conf
:
# Local postgres superuser access
local all postgres ident
Note: The template by default generates a local access for Unix domain sockets only to support running the SQL execute resources. In Postgres version 9.1 and higher, the method is 'peer' instead of 'ident' which is identical. It looks like this:
# "local" is for Unix domain socket connections only
local all all peer
This resource manages PostgreSQL databases.
create
- (default) Creates the given database.drop
- Drops the given database.
Name | Types | Description | Default | Required? |
---|---|---|---|---|
database |
String | Name of the database to create | Name of resource | yes |
user |
String | User which run psql command | 'postgres' | no |
template |
String | Template used to create the new database | 'template1' | no |
host |
String | Define the host server where the database creation will be executed | Not set (localhost) | no |
port |
Integer | Define the port of Postgresql server | 5432 | no |
encoding |
String | Define database encoding | 'UTF-8' | no |
locale |
String | Define database locale | 'en_US.UTF-8' | no |
owner |
String | Define the owner of the database | Not set | no |
To create database named 'my_app' with owner 'user1':
postgresql_database 'my_app' do
owner 'user1'
end
This resource manage PostgreSQL users.
create
- (default) Creates the given user with default or given privileges.update
- Update user privilieges.drop
- Deletes the given user.
Name | Types | Description | Default | Required? |
---|---|---|---|---|
superuser |
Boolean | Define if user needs superuser role | false | no |
createdb |
Boolean | Define if user needs createdb role | false | no |
createrole |
Boolean | Define if user needs createrole role | false | no |
inherit |
Boolean | Define if user inherits the privileges of roles | true | no |
replication |
Boolean | Define if user needs replication role | false | no |
login |
Boolean | Define if user can login | true | no |
password |
String | Set user's password | Not Set | no |
encrypted_password |
String | Set user's password with an hashed password | Not set | no |
valid_until |
String | Define an account expiration date | Not set | no |
Create an user user1
with a password, with createdb
role and set an expiration date to
postgresql_user 'user1' do
password 'UserP4ssword'
createdb true
valid_until '2018-12-31'
end
None
There are no recipes. Please use the cookbook resources to install, config, and manage your PostgreSQL server.
To install and configure your PostgreSQL instance you need to create your own cookbook and call needed resources with your own parameters.
Example: cookbooks/my_postgresql/recipes/default.rb
postgresql_client_install 'Postgresql Client' do
setup_repo false
version '9.5'
end
postgresql_server_install 'Postgresql Server' do
version '9.5'
setup_repo false
password 'P0sgresP4ssword'
end
postgresql_server_conf 'PostgreSQL Config' do
notification :reload
end
This cookbook recipe randomly generate a password for postgres user. If you want to set/change the postgres's password you can set password
parameter of server_install resource.
The PostgreSQL server is restarted when the postgresql.conf
configuration file change. This can be changed by set notification
parameter to :reload
in postgresql_server_conf
resource call.
On Debian family systems, SSL will be enabled, as the packages on Debian/Ubuntu also generate the SSL certificates. If you use another platform and wish to use SSL in postgresql, then generate your SSL certificates and distribute them in your own cookbook, and set the node['postgresql']['config']['ssl']
attribute to true in your role/cookboook/node.
Please refer to each project's style guidelines and guidelines for submitting patches and additions. In general, we follow the "fork-and-pull" Git workflow.
- Fork the repo on GitHub
- Clone the project to your own machine
- Commit changes to your own branch
- Push your work back up to your fork
- Submit a Pull request so that we can review your changes
NOTE: Be sure to merge the latest from "upstream" before making a pull request!
Contribution informations for this project
Please refer to each project's style guidelines and guidelines for submitting patches and additions. In general, we follow the "fork-and-pull" Git workflow.
- Fork the repo on GitHub
- Clone the project to your own machine
- Commit changes to your own branch
- Push your work back up to your fork
- Submit a Pull request so that we can review your changes
NOTE: Be sure to merge the latest from "upstream" before making a pull request!
[Contribution informations for this project] (CONTRIBUTING.md)
Copyright 2010-2017, Chef Software, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.