'개발 > JAVASCRIPT' 카테고리의 다른 글
jquery alert / confirm (0) | 2021.08.04 |
---|---|
비동기 처리 중 로딩중(progress bar) 보이기 (0) | 2020.07.30 |
파라미터를 배열로 넘기기 (jquery, json, .net ascx) (0) | 2017.03.14 |
jquery alert / confirm (0) | 2021.08.04 |
---|---|
비동기 처리 중 로딩중(progress bar) 보이기 (0) | 2020.07.30 |
파라미터를 배열로 넘기기 (jquery, json, .net ascx) (0) | 2017.03.14 |
CentOS PostgreSQL data directory 변경
1. 설치된 PostgreSQL 서비스 중지
2. 데이터 디렉토리를 새 위치로 이동하거나 복사
3. postgresql.conf 파일에서 data_directory 설정을 새 경로로 변경
4. 서비스 시작 스크립트 또는 명령을 수정하여 새 postgresql.conf 파일의 위치 반영
5. PostgreSQL 서비스 재시작
# 서비스 중지
sudo systemctl stop postgresql-14
# 데이터 디렉토리 이동
sudo mv /var/lib/pgsql/14/data 이동할 경로
# postgresql.conf 수정
sudo nano 이동한 경로/postgresql.conf
#data_directory = '이동한 경로' 로 변경
참고) 설치시 기본 경로 : ConfigDir
# 서비스 시작 스크립트 수정
sudo nano /usr/lib/systemd/system/postgresql-14.service
Environment=PGDATA=/home/mlu/postgres-data 로 변경
참고) 설치시 기본 경로 : /var/lib/pgsql/14/data/
# 서비스 재시작
sudo systemctl start postgresql-14
참조
https://dba.stackexchange.com/questions/197809/changing-data-directory-for-postgres-on-centos
https://stackoverflow.com/questions/22596301/how-to-change-postgresql-data-directory\
CentOS에 PostgreSQL 14.5 설치 (0) | 2023.07.05 |
---|---|
[PostgreSQL] 배열 FOR LOOP (0) | 2023.01.04 |
PostgreSQL increment 초기화 (0) | 2022.08.12 |
CentOS에 PostgreSQL 14.5 설치
# 저장소 추가
sudo yum install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
# 패키지 설치
sudo yum install postgresql14-server postgresql14-contrib
# 데이터베이스 초기화
sudo /usr/pgsql-14/bin/postgresql-14-setup initdb
# 서비스 시작 및 활성화
sudo systemctl start postgresql-14
sudo systemctl enable postgresql-14
# postgres 사용자로 전환 및 셸 접속
sudo -i -u postgres
psql
참조
https://www.postgresql.org/download/linux/redhat/
https://computingforgeeks.com/how-to-install-postgresql-14-centos-rhel-7/
https://www.digitalocean.com/community/tutorials/how-to-install-and-use-postgresql-on-centos-7
https://docs.3rdeyesys.com/database/ncloud-database-postgresql-install-connect-guide-centos.html
CentOS PostgreSQL data directory 변경 (0) | 2023.07.05 |
---|---|
[PostgreSQL] 배열 FOR LOOP (0) | 2023.01.04 |
PostgreSQL increment 초기화 (0) | 2022.08.12 |