Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 

FATAL: 28000: no pg_hba.conf entry for host "fe80::1970:8120:695:a41e%12"

IPv6가 활성화된 클라이언트에서 PostgreSQL 서버를 접속했더니 다음과 같은 오류가 발생합니다.

Server Error in '/' Application.

FATAL: 28000: no pg_hba.conf entry for host "fe80::1970:8120:695:a41e%12", user "testuser", database "testdb", SSL off 
  Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

 Exception Details: Npgsql.NpgsqlException: FATAL: 28000: no pg_hba.conf entry for host "fe80::1970:8120:695:a41e%12", user "testuser", database "testdb", SSL off

Source Error: 

Line 54:             {
Line 55:                 connection.ConnectionString = oledbConnectionString;
Line 56:                 connection.Open();
Line 57: 
Line 58:                 NpgsqlCommand command = new NpgsqlCommand();

 Source File:  D:\...\WebSiteTest\postgreSQLTest.aspx.cs    Line:  56 

Stack Trace: 

[NpgsqlException (0x80004005): FATAL: 28000: no pg_hba.conf entry for host "fe80::1970:8120:695:a41e%12", user "testuser", database "testdb", SSL off]
   Npgsql.<ProcessBackendResponses_Ver_3>d__a.MoveNext() in C:\projects\Npgsql2\src\Npgsql\NpgsqlState.cs:686
   Npgsql.NpgsqlState.IterateThroughAllResponses(IEnumerable`1 ienum) in C:\projects\Npgsql2\src\Npgsql\NpgsqlState.cs:319
   Npgsql.NpgsqlConnectedState.Startup(NpgsqlConnector context) in C:\projects\Npgsql2\src\Npgsql\NpgsqlConnectedState.cs:52
   Npgsql.NpgsqlConnector.Open() in C:\projects\Npgsql2\src\Npgsql\NpgsqlConnector.cs:656
   Npgsql.NpgsqlConnectorPool.GetPooledConnector(NpgsqlConnection Connection) in C:\projects\Npgsql2\src\Npgsql\NpgsqlConnectorPool.cs:423
   Npgsql.NpgsqlConnectorPool.RequestPooledConnectorInternal(NpgsqlConnection Connection) in C:\projects\Npgsql2\src\Npgsql\NpgsqlConnectorPool.cs:226
   Npgsql.NpgsqlConnectorPool.RequestPooledConnector(NpgsqlConnection Connection) in C:\projects\Npgsql2\src\Npgsql\NpgsqlConnectorPool.cs:174
   Npgsql.NpgsqlConnectorPool.RequestConnector(NpgsqlConnection Connection) in C:\projects\Npgsql2\src\Npgsql\NpgsqlConnectorPool.cs:158
   Npgsql.NpgsqlConnection.Open() in C:\projects\Npgsql2\src\Npgsql\NpgsqlConnection.cs:536
   WebSiteTest.postgreSQLTest.Page_Load(Object sender, EventArgs e) in D:\...\WebSiteTest\postgreSQLTest.aspx.cs:56
   System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +51
   System.Web.UI.Control.OnLoad(EventArgs e) +95
   System.Web.UI.Control.LoadRecursive() +59
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2952}

예전에도 이에 대해 설명했지만,

닷넷에서 접근해보는 PostgreSQL DB
; https://www.sysnet.pe.kr/2/0/961

다음과 같이 pg_hba.conf 설정에 항목을 추가해 주면 됩니다.

pgadmin_ipv6_1.png

PostgreSQL pg_hba.conf Issue
; http://stackoverflow.com/questions/6643050/postgresql-pg-hba-conf-issue

host      all        all       fe80::1970:8120:695:a41e/128       md5

위와 같이 서브네트워크를 /128로 주면 1개의 주소만 접속이 허용됩니다. 따라서 여러 대의 클라이언트 접속을 허용하고 싶다면 그것의 범위에 맞는 서브 네트워킹 숫자만 적절하게 설정하시면 됩니다. 다음 계산기를 쓰면 좀 편리하겠지요. ^^ (무려, cgi로 만들어진 계산기입니다.)

IPv4/IPv6 subnet calculator
; http://www.gestioip.net/cgi-bin/subnet_calculator.cgi




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]







[최초 등록일: ]
[최종 수정일: 2/17/2016]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... 151  152  153  154  155  156  157  158  159  160  [161]  162  163  164  165  ...
NoWriterDateCnt.TitleFile(s)
1020정성태4/18/201128486오류 유형: 117. Failed to find runtime DLL (mscorwks.dll), 0x80004005
1019정성태4/17/201129106디버깅 기술: 36. Visual Studio의 .NET Disassembly 창의 call 호출에 사용되는 주소의 의미는? [1]파일 다운로드1
1018정성태4/16/201132753오류 유형: 116. 윈도우 업데이트 오류 - 0x8020000E
1017정성태4/14/201127568개발 환경 구성: 115. MSBuild - x86/x64, .NET 2/4, debug/release 빌드에 대한 배치 처리파일 다운로드1
1016정성태4/13/201143584개발 환경 구성: 114. Windows Thin PC 설치 [2]
1015정성태4/9/201128948.NET Framework: 209. AutoReset, ManualReset, Monitor.Wait의 차이파일 다운로드1
1014정성태4/7/2011106400오류 유형: 115. ORA-12516: TNS:listener could not find available handler with matching protocol stack [2]
1013정성태4/7/201124221Team Foundation Server: 45. SharePoint 2010 + TFS 2010 환경에서 ProcessGuidance.html 파일 다운로드 문제
1012정성태4/6/201132962.NET Framework: 208. WCF - 접속된 클라이언트의 IP 주소 알아내는 방법 [1]
1011정성태3/31/201135297오류 유형: 114. 인증서 갱신 오류 - The request contains no certificate template information.
1010정성태3/30/201126092개발 환경 구성: 113. 응용 프로그램 디자인 스케치 도구 - SketchFlow [4]
1009정성태3/29/201138402개발 환경 구성: 112. Visual Studio 2010 - .NET Framework 소스 코드 디버깅 [4]
1008정성태3/27/201130775.NET Framework: 207. C# - Right operand가 음수인 Shift 연산 결과 [2]
1007정성태3/16/201131615개발 환경 구성: 111. Excel - XML 파일 연동 [5]파일 다운로드1
1006정성태3/15/201125384.NET Framework: 206. XML/XSD - 외래키처럼 참조 제한 거는 방법파일 다운로드1
1005정성태3/11/201135239개발 환경 구성: 110. 엑셀 매크로 함수 관련 오류 [2]
1004정성태3/3/201124427개발 환경 구성: 109. SharePoint Health Analyzer 디스크 부족 경고 제어
1003정성태3/3/201125471오류 유형: 113. SQL Server - DB Attach 시 Parameter name: nColIndex 오류 발생
1002정성태3/2/201123872Team Foundation Server: 44. TFS 설치 후, Team Portal의 Dashboard를 빠르게 확인하는 방법
1001정성태3/2/201127868Team Foundation Server: 43. TFS 2010 + SharePoint 2010 설치
1000정성태3/1/201132840오류 유형: 112. Remote FX RDP 연결 시 오류 유형 2가지 [5]
999정성태2/28/201146366개발 환경 구성: 108. RemoteFX - Windows 7 가상 머신에서 DirectX 9c 환경을 제공 [5]
998정성태2/27/201120067Team Foundation Server: 42. TFS Application-Tier만 재설치
996정성태2/12/201137509디버깅 기술: 35. windbg - 분석 예: 시작하자마자 비정상 종료하는 프로세스 - NullReferenceException
995정성태2/11/201156090.NET Framework: 205. 코드(C#)를 통한 풀 덤프 만드는 방법 [4]
994정성태2/10/201135989디버깅 기술: 34. Windbg - ERROR: Unable to load DLL mscordacwks_x86_x86_2.0.50727.4200.dll, Win32 error 0n2 [1]
... 151  152  153  154  155  156  157  158  159  160  [161]  162  163  164  165  ...