일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 하모니카
- 설정
- 아틀라시안
- 노드
- DATABASE
- 자바
- install
- PostgreSQL
- 3.0
- script
- 파이썬
- node
- 설치
- python
- ubuntu
- DB
- 자바스크립트
- JS
- 리눅스
- 스크립트
- 우분투
- Atlassian
- 윈도우
- javascript
- java
- hamonikr
- postgres
- 데이터베이스
- Linux
- Windows
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