[패키지 설치]
1)nginx 및 모듈 패키지 tar.gz 파일 서버 업로드 후 압축 해제
2)압축 해제된 nginx 경로에서 아래 명령어 실행(패키지 설치 경로는 실제 환경에 맞게 수정)
※ gcc가 설치되지 않았을 경우 패키지 설치 필요: ex) sudo apt-get install build-essential
$ ./configure --with-zlib=/SW/nginx/package/zlib-1.2.11 --with-pcre=/SW/nginx/package/pcre-8.45 \ --with-openssl=/SW/nginx/package/openssl-1.1.1o --with-http_ssl_module \ --add-module=/SW/nginx/package/echo-nginx-module-0.62 --add-module=/SW/nginx/package/nginx-sticky-module-ng-master \ --prefix=/SW/nginx/nginx-1.21.6 $ make && make install |
최신 버젼인 nginx-1.21.6이 정상적으로 설치/기동되는 것을 확인하였습니다.
[apt 설치]
apt 설치 방법은 nginx 사이트에서 확인 가능하며, 명령어는 아래와 같습니다.
http://nginx.org/en/linux_packages.html#Ubuntu
Install the prerequisites: Import an official nginx signing key so apt could verify the packages authenticity. Fetch the key: Verify that the downloaded file contains the proper key: The output should contain the full fingerprint 573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62 as follows: If the fingerprint is different, remove the file. To set up the apt repository for stable nginx packages, run the following command: If you would like to use mainline nginx packages, run the following command instead: Set up repository pinning to prefer our packages over distribution-provided ones: To install nginx, run the following commands: |
apt 명령어로 nginx 설치 시 최신 버젼인 1.21.6이 설치되며, 정상적으로 기동되는 것을 확인
1)nginx 및 모듈 패키지 tar.gz 파일 서버 업로드 후 압축 해제
2)압축 해제된 nginx 경로에서 아래 명령어 실행(패키지 설치 경로는 실제 환경에 맞게 수정)
※ gcc가 설치되지 않았을 경우 패키지 설치 필요: ex) sudo apt-get install build-essential
$ ./configure --with-zlib=/SW/nginx/package/zlib-1.2.11 --with-pcre=/SW/nginx/package/pcre-8.45 \ --with-openssl=/SW/nginx/package/openssl-1.1.1o --with-http_ssl_module \ --add-module=/SW/nginx/package/echo-nginx-module-0.62 --add-module=/SW/nginx/package/nginx-sticky-module-ng-master \ --prefix=/SW/nginx/nginx-1.21.6 $ make && make install |
최신 버젼인 nginx-1.21.6이 정상적으로 설치/기동되는 것을 확인하였습니다.
[apt 설치]
apt 설치 방법은 nginx 사이트에서 확인 가능하며, 명령어는 아래와 같습니다.
http://nginx.org/en/linux_packages.html#Ubuntu
Install the prerequisites: Import an official nginx signing key so apt could verify the packages authenticity. Fetch the key: Verify that the downloaded file contains the proper key: The output should contain the full fingerprint 573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62 as follows: If the fingerprint is different, remove the file. To set up the apt repository for stable nginx packages, run the following command: If you would like to use mainline nginx packages, run the following command instead: Set up repository pinning to prefer our packages over distribution-provided ones: To install nginx, run the following commands: |
apt 명령어로 nginx 설치 시 최신 버젼인 1.21.6이 설치되며, 정상적으로 기동되는 것을 확인
'IT기술노트 > WEB' 카테고리의 다른 글
Linux Apache 컴파일 설치(CentOS7) (2) | 2024.10.31 |
---|---|
Apache -> WAS 연동 간 503에러 Fail-over 설정 (1) | 2024.10.31 |
Apache/Jbcs 서버 헤더 변경 방법 (3) | 2024.10.31 |
Nginx SSL 인증서 설정 방법 (2) | 2024.10.29 |
Nginx 업그레이드 및 롤백 가이드 (2) | 2024.10.29 |