Build Apache 2.4.10 RPM on CentOS 6.7 (2)

지난 글에 이어 이번 글에서는 Apache 2.4로 업그레이드, 이후 PHP 7 업그레이드 방법을 알아 보겠습니다.

방법 2. Httpd 2.4로 업그레이드, PHP 7으로 업그레이드

(1) Httpd 업그레이드

패키지 다운로드

# wget https://archive.apache.org/dist/apr/apr-1.5.1.tar.bz2
# wget https://archive.apache.org/dist/apr/apr-util-1.5.3.tar.bz2
# wget http://epel.unix.website/archive/fedora/linux/releases/18/Fedora/source/SRPMS/d/distcache-1.4.5-23.src.rpm
# wget http://download.mostlylinux.com/6.4/x86_64/os/Packages/freetds-0.82-6.el6.x86_64.rpm
# wget http://download.mostlylinux.com/6.4/x86_64/os/Packages/freetds-devel-0.82-6.el6.x86_64.rpm
# wget https://archive.apache.org/dist/httpd/httpd-2.4.10.tar.bz2

Build and Install Apache Portable Runtime RPMs

# rpmbuild -tb apr-1.5.1.tar.bz2
# rpm -Uvh /root/rpmbuild/RPMS/x86_64/apr-1.5.1-1.x86_64.rpm /root/rpmbuild/RPMS/x86_64/apr-devel-1.5.1-1.x86_64.rpm

# rpmbuild -tb apr-util-1.5.3.tar.bz2

[에러] freetds-devel is needed by apr-util-1.5.3-1.x86_64
# rpm -Uvh freetds-0.82-6.el6.x86_64.rpm freetds-devel-0.82-6.el6.x86_64.rpm

# cd /root/rpmbuild/RPMS/x86_64
# rpm -Uvh apr-util-*

distcache 설치하기

# cd
# rpmbuild –rebuild distcache-1.4.5-23.src.rpm
# cd /root/rpmbuild/RPMS/x86_64
# rpm -Uvh distcache*.rpm

apache 빌드하기

# cd
# rpmbuild -tb httpd-2.4.10.tar.bz2

[에러] lua-devel is needed by httpd-2.4.6-1.x86_64
# wget http://ftp.stu.edu.tw/Linux/CentOS/6/os/x86_64/Packages/lua-devel-5.1.4-4.1.el6.x86_64.rpm
# rpm -Uvh lua-devel-5.1.4-4.1.el6.x86_64.rpm

# rpmbuild -tb httpd-2.4.10.tar.bz2
# cd /root/rpmbuild/RPMS/x86_64
# rpm -Uvh httpd*.rpm

[에러] httpd-mmn = 20051115 is needed by (installed) php-5.3.3-49.el6.x86_64
# rpm remove php-common
# rpm -Uvh httpd*.rpm

만약 service httpd stop 안되면 reboot

(2) Php 업그레이드 : remi repository 활용

# wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm
# wget http://rpms.remirepo.net/enterprise/remi-release-6.rpm
# rpm -Uvh remi-release-6.rpm epel-release-latest-6.noarch.rpm

# cd /etc/yum.repos.d
# vi remi-php70.repo
enabled=0 -> enabled=1

# yum update

설치 후 php 버전 확인 및 Apache restart합니다.

# php –version
# service httpd restart

그리고 http://example.com/index.php 해서 Php 7 버전으로 업그레이드 되었는지 확인합니다.

Leave a Reply

Your email address will not be published. Required fields are marked *

인기 글

Ubuntu 22.04 LTS에 Python 3.8 or 3.9 설치 방법
서버 : Vultr 클라우드OS: Ubuntu 22.04 LTS사용자 계정 생성하여 설치 진행함1. Start with the system updatesudo apt update...
오라클 클라우드 OCI 가입 드디어 성공 했습니다 (상세 후기)
2023년 2월 16일에 ‘오라클 클라우드 지급 검증 실패 글‘을 남긴 적이 있습니다.그 때 검색을 통해 해결 방법을 찾아 보았고, 당시 성공했던 분들의...
자동화설비 구조 및 데이터PC 역할
자동화설비에 사용되는 하드웨어는 다음과같습니다.PLC : PLC는 자동화 설비의 제어를 담당하는 핵심 장치로, 프로그래밍을 통해 다양한 장비와 프로세스를 제어할 수 있습니다....
WSL2/Ubuntu 22.04 LTS에 Anaconda 설치 
WSL2/Ubuntu 환경에서 Python 버전별로 가상환경을 만드는 방법 중 그나마 Anaconda 방법이 좋은 것 같네요. 설치 방법은 간단합니다.1. apt update사용자...
회사 도메인으로 무료 회사 메일 만드는 방법 정리
회사 도메인으로 무료 메일 만드는 방법에는 네이버, 다음, 구글 메일서버를 이용하는 방법이 있었는데, 근래 네이버, 구글의 ㄱㅇ우 유료 서비스로 전환되어 현재는 Daum 스마트워크를...