OS
apache 2.4.54 / openssl 1.1.1q 설치
- 비아웹 오래 전 2024.06.28 11:09 인기
-
- 327
- 0
안녕하세요
서버호스팅 비아웹입니다.
apache 최신 버전인 2.4.54 버전과 openssl 1.1.1q 버전 연동 설치에 대해 정리합니다.
1.설치 환경
- CentOS 7.9 minimal 설치
- selinux disable
- yum update 완료
2. openssl 설치
a. 의존성 패키지 설치
# yum install ca-certificates wget perl gcc
b. openssl 컴파일
# wget https://www.openssl.org/source/openssl-1.1.1q.tar.gz압축 해제# ./config --prefix=/usr/local/openssl -shared -fPIC# make# make install# cd /etc/ld.so.conf.d/# vi openssl.conf /usr/local/openssl/lib/# ldconfig
c. 기타 설정
# cd /usr/bin/# mv openssl openssl_rpm# ln -s /usr/local/openssl/bin/openssl ./# ln -s /usr/local/openssl/lib/pkgconfig/*.pc /lib64/pkgconfig/
d. openssl 버전 확인
3. apache 2.4.54 설치
a. 의존성 설치
# yum install expat-devel zlib-devel apr-devel apr-util-devel pcre-devel bzip2
b. apache 컴파일
# wget https://dlcdn.apache.org/httpd/httpd-2.4.54.tar.gz
압축 해제
# ./configure --prefix=/usr/local/apache \
--with-pcre \
--enable-module=so \
--enable-so \
--enable-rewrite \
--enable-auth-digest \
--enable-mpms-shared=all \
--with-ssl=/usr/local/openssl \
--enable-ssl \
--enable-deflate \
--enable-shared=max
# make
# make install
이상과 같이 최신 apche 버전과 openssl 연동 부분 설정을 진행하였습니다.
감사합니다.
서버호스팅 전문기업 비아웹
- 이전글php 8.1.9 컴파일 설치2024.06.28
- 다음글window 서버 RAID 확인하기- Dell, IBM2024.06.28
댓글목록
등록된 댓글이 없습니다.