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

(시리즈 글이 2개 있습니다.)
오류 유형: 566. 비주얼 스튜디오 - Failed to register URL "http://localhost:6879/" for site "..." application "/". Error description: Access is denied. (0x80070005)
; https://www.sysnet.pe.kr/2/0/12017

오류 유형: 903. IISExpress - Failed to register URL "..." for site "..." application "/". Error description: Cannot create a file when that file already exists. (0x800700b7)
; https://www.sysnet.pe.kr/2/0/13621




IISExpress - Failed to register URL "..." for site "..." application "/". Error description: Cannot create a file when that file already exists. (0x800700b7)

applicationhost.config 파일에서 bindingInformation을 다음과 같이 포트를 바꿨더니,

<site name="TestWebSite" id="59">
    <application path="/" applicationPool="Clr4IntegratedAppPool">
        <virtualDirectory path="/" physicalPath="C:\temp\TestWebSite" />
    </application>
    <bindings>
        <binding protocol="http" bindingInformation="*:18092:" />
    </bindings>
</site>

이후 다음과 같은 오류가 발생합니다.

Failed to register URL "http://*:18092/" for site "TestWebSite" application "/". Error description: Cannot create a file when that file already exists. (0x800700b7)

위의 내용으로는 왠지 18092 포트가 이미 사용 중이라는 의미 같은데요, 일단은 현재 실행 중인 다른 프로세스에는 없습니다.

C:\Windows\System32> netstat -ano | findstr 18092

대신, 별도로 팝업 창으로 뜨는 IIS Express 알림에서 보다 더 자세한 오류를 알려주는데요,

Port '18092' is reserved by URL ': https://:18092/'.

그러니까, "https"로 이미 점유돼 있다는 것입니다. 이 사실은 netsh 명령어로 확인할 수 있으니,

C:\Windows\System32> netsh http show urlacl | findstr 18092
    Reserved URL            : https://*:18092/

저걸 지워 http 바인딩으로 다시 등록하든가,

// 삭제 후,
netsh http delete urlacl ur=https://*:18092/

// http로 재등록
netsh http add urlacl url=http://*:18092/ user=testusr

아니면 다른 포트를 사용하시면 됩니다. ^^




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







[최초 등록일: ]
[최종 수정일: 6/8/2024]

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)
1400정성태1/10/201336813Windows: 69. 작업표시줄의 터치 키보드(Touch Keyboard) 없애는 방법 [3]
1399정성태1/9/201331703.NET Framework: 355. 닷넷 환경이 왜 C/C++보다 느릴까요? [8]
1398정성태1/8/201331509오류 유형: 165. 새로 설치한 Visual Studio 2010의 Team Explorer 실행시 비정상 종료가 된다면?
1397정성태1/3/201335044Windows: 68. 윈도우 설치 ISO 이미지를 USB 하드에 적용하는 방법 [2]
1396정성태12/27/201236394사물인터넷: 2. 넷두이노 - 4.2.0 펌웨어 업데이트 방법 [1]파일 다운로드1
1395정성태12/26/201227526.NET Framework: 354. x64 - AspCompat과 STA COM 개체가 성능에 미치는 영향
1394정성태12/25/201228265.NET Framework: 353. x86 - AspCompat과 STA COM 개체가 성능에 미치는 영향
1393정성태12/25/201229560.NET Framework: 352. x64에서 필수로 지정하도록 바뀐 STAThread 특성 [2]
1392정성태12/21/201239311사물인터넷: 1. .NET Micro Framework - 넷두이노 플러스 [7]
1391정성태12/21/201231706.NET Framework: 351. JavaScriptSerializer, DataContractJsonSerializer, Json.NET [3]파일 다운로드1
1390정성태12/20/201230149.NET Framework: 350. String 데이터를 Stream으로 변환하는 방법 [2]
1389정성태12/12/201229109.NET Framework: 349. .NET Thread 인스턴스로부터 COM Apartment 유형 확인하는 방법파일 다운로드1
1388정성태12/12/201229696.NET Framework: 348. .NET x64 응용 프로그램에서 Teb 주소를 구하는 방법파일 다운로드1
1387정성태12/12/201235565VC++: 64. x64 Visual C++에서 TEB 주소 구하는 방법
1386정성태12/12/201235308디버깅 기술: 53. windbg - 덤프 파일로부터 네이티브 DLL을 추출하는 방법 [1]
1385정성태12/12/201231793디버깅 기술: 52. Windbg - The version of SOS does not match the version of CLR you are debugging.
1384정성태12/12/201235466개발 환경 구성: 178. System32 폴더의 64비트 DLL을 32비트 Depends.exe에서 보는 방법
1383정성태12/10/201231801개발 환경 구성: 177. 기업용 메신저를 위한 Office Communicator Server 2007 설치 [1]
1382정성태12/8/201233921개발 환경 구성: 176. WebPagetest 서버 - 설치 및 테스트
1381정성태12/5/201233286.NET Framework: 347. C# - 프로세스(EXE) 수준의 Singleton 개체 생성 [2]파일 다운로드1
1380정성태11/28/201243822.NET Framework: 346. 닷넷 개발자에게 Node.js의 의미 [17]
1379정성태11/26/201237096.NET Framework: 345. C# 부호(+, -)에 대한 비트 변환 [1]
1378정성태11/22/201238114Java: 14. 안드로이드 - Hello World 실습 [7]
1377정성태11/19/201232076.NET Framework: 344. 닷넷 프로파일러 - ICorProfilerInfo::GetILFunctionBody 함수 버그
1376정성태11/15/201236470디버깅 기술: 51. 닷넷 응용 프로그램에서 특정 예외가 발생했을 때 풀 덤프 받는 방법 [6]
1375정성태11/15/201233015디버깅 기술: 50. windbg의 mscordacwks DLL 로드 문제 - 두 번째 이야기
... [151]  152  153  154  155  156  157  158  159  160  161  162  163  164  165  ...