program tip

Windows에서 Postgresql 구성 파일 'postgresql.conf'는 어디에 있습니까?

radiobox 2020. 12. 8. 07:54
반응형

Windows에서 Postgresql 구성 파일 'postgresql.conf'는 어디에 있습니까?


이 메시지를 받았지만 postgresql.conf 파일을 찾을 수 없습니다.

OperationalError: could not connect to server: Connection refused (0x0000274D/10061)
    Is the server running on host "???" and accepting
    TCP/IP connections on port 5432?
could not connect to server: Connection refused (0x0000274D/10061)
    Is the server running on host "???" and accepting
    TCP/IP connections on port 5432?

내 컴퓨터에서 :

C:\Program Files\PostgreSQL\8.4\data\postgresql.conf


postgresql.conf위치 의 PostgreSQL의 데이터 디렉토리에 . 데이터 디렉토리는 설치 중에 구성과 설정으로 저장되어 PGDATA있는 항목 c:\Program Files\PostgreSQL\<version>\pg_env.bat예를 들어,

@ECHO OFF
REM The script sets environment variables helpful for PostgreSQL

@SET PATH="C:\Program Files\PostgreSQL\<version>\bin";%PATH%
@SET PGDATA=D:\PostgreSQL\<version>\data
@SET PGDATABASE=postgres
@SET PGUSER=postgres
@SET PGPORT=5432
@SET PGLOCALEDIR=C:\Program Files\PostgreSQL\<version>\share\locale

또는 SHOW config_file;수퍼 유저 인 경우 데이터베이스를 쿼리 할 수 ​​있습니다 .


내 컴퓨터에서 :

C:\Program Files (x86)\OpenERP 6.1-20121026-233219\PostgreSQL\data

참고 URL : https://stackoverflow.com/questions/4465475/where-is-the-postgresql-config-file-postgresql-conf-on-windows

반응형