일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- DB
- 하모니카
- 우분투
- PostgreSQL
- Atlassian
- JS
- javascript
- 자바
- hamonikr
- Windows
- java
- 스크립트
- ubuntu
- 자바스크립트
- 리눅스
- python
- 설치
- 파이썬
- 윈도우
- 설정
- DATABASE
- 데이터베이스
- Linux
- script
- install
- 노드
- 아틀라시안
- postgres
- 3.0
- node
Archives
- Today
- Total
LukeHan 의 잡다한 기술 블로그
postgresql 설치 본문
반응형
확인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';
반응형
Comments