Difference between revisions of "PostgreSQL"

From RHS Wiki
Jump to navigation Jump to search
Line 28: Line 28:
 
From the postgres user shell:
 
From the postgres user shell:
 
  createdb test1
 
  createdb test1
== Create table ==
+
== CREATE TABLE / DROP TABLE ==
 +
<nowiki>
 +
    CREATE TABLE table_name (
 +
    column_name1 col_type (field_length) column_constraints,
 +
    column_name2 col_type (field_length),
 +
    column_name3 col_type (field_length)
 +
);
 +
 
 +
    DROP TABLE table_name</nowiki>

Revision as of 14:11, 13 February 2016

Install

Debian/Ubuntu

sudo apt-get update
sudo apt-get install postgresql postgresql-contrib

Remote access

1.- Modify pg_hba.conf to add Client Authentication Record
To allow remote access edit: /etc/postgresql/9.4/main/pg_hba.conf

sudo -i -u postgres -H nano /etc/postgresql/9.4/main/pg_hba.conf

Example:

 TYPE  DATABASE        USER            CIDR-ADDRESS            METHOD

# IPv4 local connections:
host    all             all             127.0.0.1/32            md5
# IPv6 local connections:
host    all             all             ::1/128                 md5

2.- Change the Listen Address in postgresql.conf

sudo -i -u postgres -H nano /etc/postgresql/9.4/main/postgresql.conf

set: listen_addresses = '*'

Crate users

From postgres shell account type:

createuser --interactive

To change the user password:

ALTER USER postgres WITH ENCRYPTED PASSWORD 'P@$$worD1';

Create database

From the postgres user shell:

createdb test1

CREATE TABLE / DROP TABLE

    CREATE TABLE table_name (
    column_name1 col_type (field_length) column_constraints,
    column_name2 col_type (field_length),
    column_name3 col_type (field_length)
);

    DROP TABLE table_name