일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- svn dump
- apt-get update 오류
- WH question
- svn update
- postgres install
- grep
- ant
- docker oracle12c
- 포스트그레스 설치
- javax.servlet.GenericFilter
- taskkill
- Remmina
- NEXUS
- Store password unencrypted
- svn 특정 리비전 사이 추출
- Cannot prepare internal mirrorlist: No URLs in mirrorlist
- svn 변경된 파일 추출
- svn 사용법
- mysql dml
- 프로젝트 네임변경 후 이클립스 로딩시 에러
- docker 폐쇄망
- Oracle install
- svn
- xrdp
- svn load
- expected at least 1 bean which qualifies as autowire candidate
- svn log
- svn commit
- VirtualBox
- Failed to download metadata for repo 'appstream'
Archives
- Today
- Total
목록포스트그레스 설치 (2)
기억의 습작
postgres install in Ubuntu
Postgres DB를 우분투에 설치 및 기본적인 사용방법을 기술한다. 설치 # apt-get install postgresql postgresql-contrib -y 접속방법 # su - postgres postgres@4f744418d327:~$ psql psql (9.3.20) Type "help" for help. 계정 생성 $ create user {your-account}; 패스워드 변경 postgres=# alter user postgres with password '{your-password}'; 나머지 설정 참고는 centos 설치를 참조 https://ppusari.tistory.com/143
DB/postgres
2021. 8. 29. 01:34
Postgres install in centOs
문서 http://www.postgresql.org/docs/8.0/static/index.html 설치 (centos 기준) # yum list postgres* // 설치여부 확인하기 # yum install postgresql-server -y // 설치하기 # cd /var/lib/pgsql/ // 폴더로 이동하여 Data directory 가 생성됐는지 확인 # service postgresql initdb // DB초기화 제거 # rpm -qa|grep postgres //검색 # rpm -e –nodeps // 삭제 보안설정 # vim /var/lib/pgsql/data/pg_hba.conf 하단에 “host all all 192.168.0.0/0 password” 을 추가 (특정 아이피대역..
DB/postgres
2021. 8. 29. 01:10