다음 명령을 실행하기위한 대안이 필요합니다.
C:\xxx\pgsql\bin\pg_ctl" -D "C:\xxx\pgsql\data" -l "C:\yyy\log\pgsql.log" start.
이렇게하면 서버가 시작되고에 로그인합니다 C:\yyy\log\pgsql.log. 그래도 서버를 서비스로 등록하려고하면 사용 가능한 로깅 옵션이없고 서버가 이벤트 뷰어에 기록됩니다. pg_ctl 문서에서 :
pg_ctl register [-N servicename] [-U username] [-P password] [-D datadir] [-S a [uto] | d [emand]] [-w] [-t 초] [-s] [-o 옵션]
서버가 파일에 강제로 로그인하도록하려면 어떻게해야합니까? 참고 : 원 클릭 설치 프로그램을 사용하고 싶지 않으며 압축이 풀린 바이너리로 작업하고 싶습니다.
답변
postgresql.confdatadir에서 귀하 를 찾으십시오.
다음과 같은 섹션을 찾으십시오.
#------------------------------------------------------------------------------
# ERROR REPORTING AND LOGGING
#------------------------------------------------------------------------------
# - Where to Log -
#log_destination = 'stderr'             # Valid values are combinations of
                                        # stderr, csvlog, syslog and eventlog,
                                        # depending on platform.  csvlog
                                        # requires logging_collector to be on.
# This is used when logging to stderr:
#logging_collector = off                # Enable capturing of stderr and csvlog
                                        # into log files. Required to be on for
                                        # csvlogs.
                                        # (change requires restart)
# These are only used if logging_collector is on:
#log_directory = 'pg_log'               # directory where log files are written,
                                        # can be absolute or relative to PGDATA
#log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log'        # log file name pattern,
                                        # can include strftime() escapes
#log_truncate_on_rotation = off         # If on, an existing log file of the
                                        # same name as the new log file will be
                                        # truncated rather than appended to.
                                        # But such truncation only occurs on
                                        # time-driven rotation, not on restarts
                                        # or size-driven rotation.  Default is
                                        # off, meaning append to existing files
                                        # in all cases.
log_rotation_age = 7d                   # Automatic rotation of logfiles will
                                        # happen after that time.  0 disables.
#log_rotation_size = 10MB               # Automatic rotation of logfiles will
                                        # happen after that much log output.
                                        # 0 disables.
주석을 해제하고이 매개 변수를 사용하십시오. 그런 다음 postgres 서비스를 다시 시작하십시오.
Windows에서 postgresql을 실행하고 있기 때문에 postgresql.conf서비스가 작동하는 동안 편집이 불가능할 수 있습니다 . 이 경우 :
- postgres 서비스 종료
 - 편집하다 
postgresql.conf - postgres 서비스를 시작하십시오
 
시도 해봐 !!!