db

Install Postgresql for windows scoop

C/H 2019. 1. 31. 08:30

Install Postgresql for windows scoop

scoop install postgresql

Path

PGPATH = C:\Users\username\scoop\apps\postgresql\current
PGDATA = %PGPATH%\bin
PATH = %PATH%;%PGPATH%\bin;

Start / Stop

pg_ctl start
pg_ctl stop
pg_ctl --help


PG Admin

[Window+s] pgadmin

user / database

psql -U postgres
psql (11.1)
도움말을 보려면 help를 입력하십시오.

# 사용자 생성
postgres=# create user username with password 'password';
CREATE ROLE

# 데이터베이스 생성
postgres=# create database databasename;
CREATE DATABASE

config

# data\postgresql.conf
listen_address = '*'

# data\pg_hba.conf
host    all             all             0.0.0.0/32              trust
pg_ctl restart

Add New Server for PGAdmin



반응형

'db' 카테고리의 다른 글

DBeaver DB Manage Tool  (0) 2021.04.03
Install Mongodb for windows scoop  (0) 2019.02.01
데이터 저장을 위한 구조적 형태  (0) 2016.07.25
초보자를위한 SQL 인젝션 비디오 자습서 8  (0) 2014.10.08
오라클 트리거  (0) 2012.01.04