'개발 > 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 |
JDK 설치
https://leeyebin.tistory.com/119
[CentOS] CentOS에 Tomcat 8 설치
https://velog.io/@qudalsrnt3x/CentOS-Tomcat-8-%EC%84%A4%EC%B9%98
Tomcat 설치
https://mollangpiu.tistory.com/181
Tomcat 여러개 설치
https://mollangpiu.tistory.com/184
[Linux] Tomcat 설치 & 환경변수 설정
CentOS7에서 OpenJDK 1.8 설치 및 환경변수 설정 방법
CentOS 환경변수 설정
https://songsunbi.tistory.com/2
[Apache 설치]
https://momentoo.tistory.com/13
CentOS 7 firewall 방화벽 사용 방법
https://devbrain.tistory.com/43
리눅스 CentOS7 서버 세팅 정리 (아파치 톰캣)
https://jonny-cho.github.io/server/2018/12/31/server-serversetting/
https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=ssuyastory&logNo=220404777064
기본 Java 타입과 DB 필드 매핑 (0) | 2023.01.06 |
---|
DO $$
DECLARE
v_arr_charge_hour int[]:= array[1,2,3,4,5,6,7,8,9];
v_arr_val int[];
v_i int:=1;
v_max int:=array_length(v_arr_charge_hour, 1);
BEGIN
FOR v_i IN 1..v_max--SELECT v_arr_charge_hour
LOOP
RAISE NOTICE '%', (v_arr_charge_hour[v_i]);
END LOOP;
END$$;
CentOS PostgreSQL data directory 변경 (0) | 2023.07.05 |
---|---|
CentOS에 PostgreSQL 14.5 설치 (0) | 2023.07.05 |
PostgreSQL increment 초기화 (0) | 2022.08.12 |
Reset auto increment counter in postgres
최초값으로 초기화
TRUNCATE TABLE <테이블명> RESTART IDENTITY;
- 실행하니까 테이블 데이터도 모두 삭제 됨
시작값 지정
ALTER TABLE <테이블명>
ALTER COLUMN <자동증가 컬럼명> RESTART SET START <시작 번호>;
CentOS PostgreSQL data directory 변경 (0) | 2023.07.05 |
---|---|
CentOS에 PostgreSQL 14.5 설치 (0) | 2023.07.05 |
[PostgreSQL] 배열 FOR LOOP (0) | 2023.01.04 |
DropDownList HTML 특수코드 적용 (0) | 2017.07.18 |
---|---|
CKEditor 내용 불러오기 및 입력 (0) | 2017.06.21 |
'Microsoft.ACE.OLEDB.12.0' 공급자는 로컬 컴퓨터에 등록할 수 없습니다. (0) | 2017.04.07 |
html2canvas 외부 이미지 캡처 오류 해결 방법 (0) | 2023.08.24 |
---|---|
비동기 처리 중 로딩중(progress bar) 보이기 (0) | 2020.07.30 |
파라미터를 배열로 넘기기 (jquery, json, .net ascx) (0) | 2017.03.14 |