ABAP/NetWeaver
Netweaver 설치중 SysWOW64\drivers\etc\services 에러
Derby
2013. 5. 5. 22:21
이 에러는 64비트 윈도7 사용자가 netweaver 서버를 설치하면 항상 발생하는 에러 입니다.
An error occurred while processing option SAP NetWeaver 7.0 including Enhancement Package 3 > SAP Application Server ABAP > MaxDB > Central System > Central System( Last error reported by the step: The database installer reported an error. DIAGNOSIS: Some database applications might still be running. SOLUTION: Check the log file sdbinst.log and C:\sapdb\data\wrk\MaxDBRuntimeForSAPAS_install_ _ .log.). You can now:
Choose Retry to repeat the current step.
Choose Log Files to get more information about the error.
Stop the option and continue with it later.
Log files are written to C:\Program Files/sapinst_instdir/NW703/AS-ABAP/ADA/CENTRAL/.
Choose Retry to repeat the current step.
Choose Log Files to get more information about the error.
Stop the option and continue with it later.
Log files are written to C:\Program Files/sapinst_instdir/NW703/AS-ABAP/ADA/CENTRAL/.
에러 메시지에 써있는 로그 파일을 찾아봅니다.
위치는 C:\sapdb\data\wrk 폴더에서 .log 확장자의 파일을 찾아서 열어보면,
ERR: Cannot open "C:\Windows\SysWOW64\drivers\etc\services" to write: No such file or directory
이렇게 시스템 파일을 찾을 수 없다는 에러를 확인할 수 있습니다.
SysWOW64 폴더는 System32 폴더 와 같은 역할을 하는 64비트 OS에서 32비트 애플리케이션용 폴더 입니다.
해결법은 이렇게 폴더의 링크를 생성 하면 됩니다. (파일을 복사해도 되지만 중복 내용이 생기므로 링크로 하겠습니다)
window키+R을 눌러 실행 에서 cmd 를 실행 합니다. 아래 내용을 입력합니다.
cd C:\Windows\SysWOW64\drivers
mklink /d etc C:\Windows\System32\drivers\etc
etc <<===>> C:\Windows\System32\drivers\etc에 대한 기호화된 링크를 만들었습니다.
이제 설치 화면으로 돌아가서 retry 버튼을 눌러 설치를 계속 하세요.