Postgresql 설치
앞서 설치한 homebrew를 이용해 Postgresql을 설치한다. 명령어는 간단하다.
설치
~$ brew search postgresql //postgres를 찾는다. ~$ brew install postgresql //postgres를 설치한다.
설치 확인
postgresql설치경로/bin/postgres --version 예) ~$ /usr/local/opt/postgresql/bin/postgres --version
설치가 정상적이라면 postgres (PostgreSQL) 9.6.5라는 문구가 나오게 된다.
postgres (PostgreSQL) 9.6.5문구를 확인했다면 이제 postgresql 서비스를 시작한다.
Postgresql 서비스 시작
~$ postgres -D /usr/local/var/postgres
접속 테스트
~$ psql –U postgres –d postgres -U : 사용자ID -d : 데이터베이스명
database 생성
postgres$ CREATE DATABASE database_name ENCODING 'encoding_type'; 예) postgres$ CREATE DATABASE homepage ENCODING 'utf-8';
user 생성
postgres$ create user user_name password 'passwd'; 예) postgres$ create user scott password 'tiger';
database 소유권 user에게 주기
postgres$ alter database database_name owner to user_name; 예) postgres$ alter database testdb owner to scott;
user 권한 주기
postgres$ grant all on database database_name to user_name with grant option; 예) postgres$ grant all on database testdb to scott with grant option;
(scott) 유저 접속 테스트
~$ psql –U postgres –d postgres 예) ~$ psql -U scott -d testdb
'Django' 카테고리의 다른 글
Django PostgreSQL 사용하기(Mac OS) (3) | 2020.12.10 |
---|---|
Django 가상환경 설정(pycharm) (0) | 2020.12.10 |
댓글