Mac postgresql 설치 dbeaver 사용

postgresql 설치 dbeaver 설치

brew install postgresql

brew install --cask dbeaver-community

Terminal

psql postgres

유저 생성

postgres 라는 유저를 생성하고 비밀번호를 1234로 설정한다.

create user postgres password '1234';

testdb 라는 데이터베이스를 생성하고 encoding utf-8 로 만든다

create database testdb encoding 'utf-8';

testdb owner(주인)를 postgres 설정

alter database testdb owner to postgres;

testdb database에 대한 권한을 postgres

grant all on database testdb to postgres with grant option;

'데이터베이스 > PostgreSQL' 카테고리의 다른 글

1. 데이터베이스 만들기  (0) 2018.08.23

PostgreSQL 이 오라클과 비슷하고 업데이트도 빠르고 많이들 사용한다하여 나도 사용해보기로함 ㅎㅎ


그래도 뭔가 어색하고 그렇네요 우선 데이터베스를 생성해보겠습니다~


우선 SQL Shell 을 실행하여 계정 정보를 입력합니다~




입력 후  help를 입력하면 도움을 주시겠다는 ..  큰 도움은 ...



우선 브라우져에 뜬 pgAdmin을 보면 기본적으로 Databases에 postgres라는 Db가 생성되어있다. 


타 디비에서는 root 계정 인것 같다. ㅎ  디비 커넥션 할 때 root 대신 postgres를 쓰니 잘 붙었던걸보니 ㅎ








이제 데이터베이스 생성을 위해 


명령어에 

CREATE DATABASE 데이터베이스명 ;


이상없이 만들어지면 

CREATE DATABASE라고 뜬다, 


그리고  \l 로 확인 하거나 브라우저에서 확인해보자




끝 



'데이터베이스 > PostgreSQL' 카테고리의 다른 글

Mac postgresql 설치 dbeaver 사용  (0) 2021.08.09

+ Recent posts