일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- PostgreSQL
- 하모니카
- 자바스크립트
- DATABASE
- 데이터베이스
- 우분투
- javascript
- install
- java
- 리눅스
- 자바
- ubuntu
- node
- hamonikr
- DB
- 윈도우
- JS
- script
- 아틀라시안
- python
- 설정
- 스크립트
- 설치
- postgres
- Linux
- 노드
- Atlassian
- 3.0
- Windows
- 파이썬
- Today
- Total
목록postgres (11)
LukeHan 의 잡다한 기술 블로그
# pg_hba.conf 수정 host all all 127.0.0.1/32 md5 -> host all all 127.0.0.1/32 trust # 관리자 계정 접속 후 비밀번호 변경 # pg_hba.conf 수정 host all all 127.0.0.1/32 trust -> host all all 127.0.0.1/32 md5
pg_hba.conf trust : 패스워드 없이 접근 가능 reject : 거부 md5 : 패스워드를 md5로 암호화해서 전송 crypt : crypt로 암호화 해서 전송 Postgres 7.2이후부터는 사용 않함. (이전버전설정 호환용) password : text로 패스워드를 전송하는 것. krb4, krb5 : KerberOS V4, 5를 지원한다. ident : 접속 ClientOS User이름을 확인하는 방법? pam : PAM(Pluggable Authentication Modules)서비스를 사용한 인증
DB 생성 CREATE DATABASES 데이터베이스명 DB 삭제 DROP DATABASE 데이터베이스명 DB 소유자 변경 ALTER DATABASE 데이터베이스명 OWNER TO 계정명 백업 pg_dump -h 호스트 -p 포트 -U 유저 -d DB이름 > 저장파일이름 복원 psql -h 호스트 -p 포트 -U 유저 DB 이름 < 복원파일이름 데이터베이스 목록조회 \l 다른 데이터베이스 접속 \c 데이터베이스명 모든 테이블조회 \dt 모든 사용자조회 \du 사용할 데이터베이스 변경 \c databaseName
postgresql 접속 # 사용자 접속 psql -h localhost -d databaseName -U userName # root 접속 psql -h localhost -U root database -U : username -d : database name -W : password 사용 -h: 연결할 호스트. 제외할 경우 "peer authentication failed" 에러 발생 가능 root 비밀번호 변경 # root 접속 sudo -u postgres psql template1 # root 비밀번호 변경 ALTER USER postgres with encrypted password 'P@ssw0rd'; 계정 생성 CREATE ROLE 계정명; 계정 삭제 DROP ROLE 계정명; 계정 권한 ..
확인1 postgresql 설치 여부를 확인합니다 aptitude show postgresql | grep State State : not installed 설치 apt-get install postgresql 확인2 dpkg -l | grep postgres cat /etc/passwd | grep postgres /etc/init.d/postgresql status netstat -tnlp | grep postgres 패스워드 설정 sudo -u postgres psql template1 ALTER USER postgres with encrypted password 'p@ssw0rd';