아파치 v2.0 to v2.2(only tls1.2) 업그레이드(centos5x)
# Web&WAS/Apache2021. 12. 2. 13:53아파치 v2.0 to v2.2(only tls1.2) 업그레이드(centos5x)

기존 운영중인 서버 환경 $ cat /etc/redhat-release CentOS release 5.11 (Final) $ /usr/local/apache-2.0.65/bin/apachectl -v Server version: Apache/2.0.65 Server built: Nov 19 2019 22:31:55 $ /usr/local/php-4.4.9/bin/php -v PHP 4.4.9 (cli) (built: Nov 19 2019 22:43:13) Copyright (c) 1997-2008 The PHP Group Zend Engine v1.3.0, Copyright (c) 1998-2004 Zend Technologies with Zend Optimizer v2.6.2, Copyright (c)..

centos5 wget 업그레이드
# Operation System/Linux2020. 10. 22. 16:36centos5 wget 업그레이드

# wget -V GNU Wget 1.11.4 Red Hat modified Copyright (C) 2008 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later . This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Originally written by Hrvoje Niksic . Currently maintained by Micah Cowan . # wget http://ftp.gnu.org/gnu/wget/wget-1.16.1.tar.gz # tar -xv..

centos5 curl 버전 업그레이드
# Operation System/Linux2020. 3. 26. 10:59centos5 curl 버전 업그레이드

1 2 3 4 5 6 7 8 9 10 11 12 # curl --version curl 7.15.5 (i386-redhat-linux-gnu) libcurl/7.15.5 OpenSSL/0.9.8b zlib/1.2.3 libidn/0.6.5 Protocols: tftp ftp telnet dict ldap http file https ftps Features: GSS-Negotiate IDN IPv6 Largefile NTLM SSL libz # wget https://curl.haxx.se/download/curl-7.69.1.tar.gz # ./configure --with-ssl=/usr/local/ssl --disable-ldap # make # make install Colored by Color..

centos5 openssl 버전 업그레이드
# Operation System/Linux2020. 3. 26. 10:58centos5 openssl 버전 업그레이드

버전확인 [darksharavim.tistory.com] openssl version OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008 [darksharavim.tistory.com] wget https://www.openssl.org/source/old/1.0.2/openssl-1.0.2u.tar.gz [darksharavim.tistory.com] ./config --prefix=/usr/local/ssl --openssldir=/usr/local/ssl shared [darksharavim.tistory.com] make && make install [darksharavim.tistory.com] vi /etc/ld.so.conf #아래내용 추가 /usr/local/ssl/lib ..

centos5 fail2ban 설치
# Operation System/Linux2020. 3. 6. 14:26centos5 fail2ban 설치

yum설치# yum -y install fail2ban# cd /var/log# touch vsftpd.log# chkconfig fail2ban on22. 5. 13일 기준 centos5에서 yum 설치시 에러발생(M2Crypto.SSL.SSLError: unknown protocol)또는 source설치# wget https://github.com/fail2ban/fail2ban/archive/0.8.14.tar.gz# tar -xvzf 0.8.14.tar.gz# cd fail2ban-0.8.14# setup.py install# cp files/redhat-initd /etc/init.d/fail2ban# chkconfig --add fail2ban# chkconfig fail2ban onhttps..

image