일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자바스크립트
- 노드
- 설정
- JS
- postgres
- script
- 3.0
- 하모니카
- PostgreSQL
- 파이썬
- 리눅스
- Linux
- 우분투
- Atlassian
- DATABASE
- python
- java
- 스크립트
- ubuntu
- javascript
- 자바
- 윈도우
- hamonikr
- node
- 설치
- 데이터베이스
- install
- Windows
- 아틀라시안
- DB
- Today
- Total
목록Database/Postgresql (9)
LukeHan 의 잡다한 기술 블로그
Hint: No operator matches the given name and argument types. You might need to add explicit type casts. Postgresql 사용 시 위와 같은 에러가 발생 where 조건 대입 시 문제가 있거나 형변환을 잘못 하는 경우 발생하는 문제라고 함. SELECT * FROM tb_luke WHERE area_id = CAST(#{areaId} AS INTEGER) 위와 같이 CAST 를 사용하여 형변환 후 이상 없는 것을 확인 참고 : https://m.blog.naver.com/deersoul6662/221358136753
OS : Ubuntu 22.04.2 LTS Postgres : 14.8 sudo vi /etc/postgresql/14/main/postgresql.conf postgres 외부 접속 허용을 위해 위와 같이 입력한다 ###### 기존 ###### ... #------------------------------------------------------------------------------ # CONNECTIONS AND AUTHENTICATION #------------------------------------------------------------------------------ # - Connection Settings - listen_addresses = 'localhost' # what..
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..
서버 이전 진행 중 기존의 postgresql 과 동일한 버전을 설치 하였으나 이전과는 설치방식(대화형으로 변경됨) 및 설치경로가 달라져 있었다. 변경된 postgresql 의 기본 설정을 유지하며 설치 진행. 설치한 뒤 sudo -u postgres psql template1 로 접속하려 하였으나 psql 을 찾을 수 없다는 로그를 출력 참고를 확인해 보면 sudo 에서 사용할 수 있도록 postgres 의 경로를 추가해야 한다고 한다. 경로 확인 sudo -u postgres printenv PATH # 출력된 결과물 /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin 출력내용을 보면 psql 의 경로가 없다. 해당 경로를 추..
접속 IP 대역 설정 ※ 여기서는 테스트를 위해 모든 IP를 허용하지만 실제로는 접근을 허용할 IP 만으로 한정하는 것을 권장합니다 설정파일 편집 vi /etc/postgresql/10/main/postgresql.conf #listen_address = 'localhost' listen_address = '*' hda 설정 파일 편집 (1wnf cnrk) vi /etc/postgresql/10/main/pg_hba.conf host all all 0.0.0.0/0 md5 PostgreSQL 재시작 후 LISTEN 포트 확인 및 원격지에서 테스트