일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- DATABASE
- script
- 스크립트
- 설정
- PostgreSQL
- javascript
- 하모니카
- 자바
- 노드
- JS
- hamonikr
- ubuntu
- Windows
- 아틀라시안
- 우분투
- 파이썬
- DB
- 설치
- Linux
- 윈도우
- java
- python
- install
- Atlassian
- 리눅스
- 데이터베이스
- 3.0
- postgres
- node
- 자바스크립트
- Today
- Total
목록2023/09 (3)
LukeHan 의 잡다한 기술 블로그
환경 정보 OS : Ubuntu 22.04.2 LTS Jenkins : 2.401.3 sudo vi /lib/systemd/system/jenkins.service 위와 같이 입력하여 service 설정 정보를 확인한다 Environment="JENKINS_PORT=8080" jenkins.service 파일에서 위의 내용을 찾은 뒤 8080 을 원하는 port 정보로 변경한다 sudo systemctl daemon-reload 위와 같이 입력하여 service daemon 을 새로고침 한다 sudo netstat -tnlp ps -ef | grep jenkins 위와 같이 입력하여 port 가 변경된 것을 확인한다 참고 : https://jh-labs.tistory.com/386
select table_schema, table_name, pg_relation_size(table_schema||'.'||table_name), pg_size_pretty(pg_relation_size(quote_ident(table_name))), pg_size_pretty(hypertable_size(table_schema||'.'||table_name)) as pg_size_pretty_ts, pg_relation_size(quote_ident(table_name)) from information_schema.tables where table_schema = 'public' order by 3 desc; pg_size_pretty(pg_relation_size(quote_ident(table_na..