-
-
Save thyn/1c3f5efb0fa5e75b7284c507e146db93 to your computer and use it in GitHub Desktop.
Compile OpenSSL 1.0.2 and HAProxy from the source on CentOS 7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # make sure you have these installed | |
| yum install -y make gcc perl pcre-devel zlib-devel |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Compile and install OpenSSL - via https://github.com/haproxy/haproxy/blob/master/README | |
| wget -O /tmp/openssl.tgz https://www.openssl.org/source/openssl-1.0.2-latest.tar.gz | |
| tar -zxf /tmp/openssl.tgz -C /tmp | |
| cd /tmp/openssl-* | |
| ./config --prefix=/usr --openssldir=/etc/ssl --libdir=lib no-shared zlib-dynamic | |
| make | |
| make install_sw |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Compile and install HAProxy | |
| rm -rf /tmp/haproxy-current | |
| git clone http://git.haproxy.org/git/haproxy-1.7.git /tmp/haproxy-current | |
| cd /tmp/haproxy-current | |
| make \ | |
| TARGET=linux2628 USE_LINUX_TPROXY=1 USE_ZLIB=1 USE_REGPARM=1 USE_PCRE=1 USE_PCRE_JIT=1 \ | |
| USE_OPENSSL=1 SSL_INC=/usr/include SSL_LIB=/usr/lib ADDLIB=-ldl \ | |
| CFLAGS="-O2 -g -fno-strict-aliasing -DTCP_USER_TIMEOUT=18" | |
| make install | |
| cp /tmp/haproxy-current/examples/haproxy.init /etc/init.d/haproxy | |
| systemctl daemon-reload | |
| systemctl stop haproxy && cp /usr/local/sbin/haproxy /usr/sbin/ && systemctl start haproxy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment