반응형
[설치 환경]
redhat enterprise linux 7.9
nginx를 설치하던 중 configure와 make까지는 잘 끝났는데, make install에서 다음과 같은 에러가 발생했습니다.
cp: `conf/koi-win' and `/usr/local/nginx/conf/koi-win' are the same file
결론은 컴파일(make) 위치와, 설치하려는 위치가 동일해서 발생하는 문제입니다.
따라서, 컴파일 하는 기존 경로가 /home/user/nginx-1.20.2 라면 실제 ./configure는 다음과 같아야 합니다.
./configure --prefix=/home/user/nginx --with-zlib=/home/user/zlib --with-pcre=/home/user/pcre --with-openssl=/home/user/openssl --with-http_ssl_module --with-http_stub_status_module
make install
위와 같이 명령어를 입력하면 /home/user/nginx 경로가 새로 생성되어 그 경로에 install 됩니다.
[참고 사이트]
https://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=qna_install&wr_id=108997
728x90
반응형
'개발도구 > WAS' 카테고리의 다른 글
Tomcat UTF-8 설정(한글 깨짐 현상 해결) (0) | 2022.11.23 |
---|---|
Tomcat 8.x CORS Filter 설정하는 방법 (0) | 2022.10.23 |
톰캣(Tomcat) cmd 실행/종료 시 한글 깨짐 해결 방법 (0) | 2022.03.23 |
The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path (0) | 2022.03.07 |
linux에서 tomcat heap memory 설정 (0) | 2022.03.01 |