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