Tuesday, March 25, 2014

Compiling and installing php 5.4.15 and httpd 2.4.4 from source

High-performance PHP on apache httpd 2.4.x using mod_proxy_fcgi and php-fpm
Bài viết sau sẽ hướng dẫn các bạn build Linux Web server nâng cao bao gồm MySQL, php và apache(LAMP) từ source trên CentOS 6.4

1. Cài đặt MySQL
Xem chi tiết tại:
2. Build php 5.4.15 từ Source PHP 5.4.15 (tar.gz)
Tải gói cài đặt tại: http://fi2.php.net/get/php-5.4.15.tar.gz/from/a/mirror
Code:
[root@linux24h ~]# wget http://sg2.php.net/distributions/php-5.4.15.tar.gz
Giải nén và Build php
Code:
[root@linux24h ~]# tar xzvf php-5.4.15.tar.gz
[root@linux24h ~]# cd php-5.4.15
[root@linux24h php-5.4.15]# ./configure --prefix=/usr/local/php --with-libdir=/lib64 --enable-fpm --with-bz2 --with-config-file-path=/usr/local/php/ --with-config-file-scan-dir=/etc/php.d/ --with-curl=/opt/curlssl/ --with-gd --with-gettext --with-jpeg-dir=/usr/local/lib --with-freetype-dir=/usr/local/lib --with-mcrypt --with-mhash --with-mysql --with-mysql-sock=/tmp/mysql.sock --with-mysqli --with-pcre-regex --with-pear=/usr/local/lib64/php --with-png-dir=/usr/local/lib64 --with-sqlite=shared --with-tidy --with-xmlrpc --with-xsl --with-zlib --with-zlib-dir=/usr/local/lib64 --with-openssl --with-iconv --enable-bcmath --enable-calendar --enable-exif --enable-ftp --enable-gd-native-ttf --enable-libxml --enable-magic-quotes --enable-soap --enable-sockets --enable-mbstring --enable-zip --enable-wddx --with-mysql=mysqlnd -with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd
[root@linux24h php-5.4.15]# make && make install
[root@linux24h php-5.4.15]# cp php.ini-production /usr/local/php/php.ini
Lưu ý: Bạn sẽ nhận được thông báo lỗi:

Warning: No matches found for: mcrypt

No Matches found

Giải quyết:

Code:
[root@linux24h php-5.4.15]# rpm -Uvh http://ftp.jaist.ac.jp/pub/Linux/Fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm
[root@linux24h php-5.4.15]# yum install libmcrypt-devel mcrypt -y
3. Build apache từ Source httpd-2.4.4.tar.gz
Code:
[root@linux24h ~]# wget http://mirrors.digipower.vn/apache//httpd/httpd-2.4.4.tar.gz
[root@linux24h ~]# tar xzvf httpd-2.4.4.tar.gz
[root@linux24h ~]# cd httpd-2.4.4
[root@linux24h httpd-2.4.4]# ./configure --prefix=/usr/local/apache --sysconfdir=/etc/httpd.d --with-mpm=prefork --disable-charset-lite --disable-include --disable-env --disable-status --disable-asis --disable-negotiation --disable-imap --disable-actions --disable-userdir --enable-so --enable-rewrite --enable-vhosts-alias --enable-ssl --enable-modules='unique-id' --with-included-apr [root@linux24h httpd-2.4.4]# make && make install
Lưu ý: các thông báo lỗi khi build apache(httpd)
Bạn sẽ nhận được thông báo lỗi:

configure: error: Bundled APR requested but not found at ./srclib/. Download and unpack the corresponding apr and apr-util packages to ./srclib/.

Giải quyết:
Code:
[root@linux24h httpd-2.4.4]# wget http://apache.osuosl.org/apr/apr-1.4.6.tar.gz
[root@linux24h httpd-2.4.4]# wget http://apache.osuosl.org/apr/apr-util-1.4.1.tar.gz
[root@linux24h httpd-2.4.4]# tar xzvf apr-1.4.6.tar.gz
[root@linux24h httpd-2.4.4]# tar xzvf apr-util-1.4.1.tar.gz
[root@linux24h httpd-2.4.4]# mv apr-1.4.6 srclib/apr
[root@linux24h httpd-2.4.4]# mv apr-util-1.4.1 srclib/apr-util
Bạn sẽ nhận được thông báo lỗi:

configure: error: pcre-config for libpcre not found. PCRE is required and available fromhttp://pcre.org/

Giải quyết:
Code:
[root@linux24h httpd-2.4.4]# yum install pcre-devel -y
Cấu hình cơ bản httpd:
Code:
[root@linux24h httpd-2.4.4]# cd /etc/httpd.d/
[root@linux24h httpd.d]# vim httpd.conf
Trong file httpd.conf, config các tham số cơ bản sau:

Code:
Listen 80
ServerAdmin admin@linux24h.com
UseCanonicalName Off
ServerSignature Off
HostnameLookups Off
ServerTokens Prod
Bỏ dấu # đằng trước các dòng:
Code:
LoadModule deflate_module modules/mod_deflate.so
LoadModule expires_module modules/mod_expires.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so
LoadModule proxy_scgi_module modules/mod_proxy_scgi.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
LoadModule proxy_express_module modules/mod_proxy_express.soLoadModule rewrite_module modules/mod_rewrite.so
Include /etc/httpd.d/extra/httpd-vhosts.conf
Sau đó nhấn ESC  :wq để lưu lại và thoát

4. Config php-fpm
Xem thêm tại: 5. Config virtual host
Xem thêm tại: 6. Start apache httpd và kiểm tra kết quả
Khởi động dịch vụ apache server:
Code:
[root@linux24h ~]# cp /usr/local/apache/bin/apachectl /etc/init.d/httpd
[root@linux24h ~]# /etc/init.d/httpd start
Để apache httpd có thể tự khởi động khi reboot server:
Code:
[root@linux24h httpd.d]# chkconfig --level 235 httpd on
Bạn sẽ nhận được 1 thông báo lỗi:

service httpd does not support chkconfig

vào:
Code:
[root@linux24h httpd.d]# vim /etc/init.d/httpd
Thêm các dòng bên dưới vào trên cùng file sau dòng #!/bin/sh:
Code:
# Startup script for the Apache Web Server
#
# chkconfig: - 85 15
# description: Apache is a World Wide Web server. It is used to serve
# HTML files and CGI.
# processname: httpd
# pidfile: /usr/local/apache/logs/httpd.pid
# config: /usr/local/apache/conf/httpd.conf
Tạo file xem thông tin php để test:
Code:
<?php
echo phpinfo();
?>
Nhấn ESC  :wq để lưu và thoát ra.

Related Posts:

  • Giới thiệu Vagrant Mở bàiTrong quá trình phát triển application thì chắc chắn developer phải đi qua 1 công đoạn gọi là "setup environment" bởi vì từng project sẽ có những yêu cầu, frameworks, tools, libraries etc.. khác nhau.Và nếu là ở v… Read More
  • Quản lý tiến trình trong linuxPhân loại tiến trình: 3 loạiInteractive process (tiến trình đối thoại)Là tiến trình khởi động và quản lý bởi shell, kể cả các tiến trình foreground hoặc background.Batch processTiến trình không gắn liền với terminal (tty… Read More
  • Creating a CentOS 6.2 base box for Vagrant One of the cool things I stumbled upon last year at the Dutch PHP Conference was Vagrant. After some little experimenting I was convinced: this is the right tool for our development environment! Since we’re running Cen… Read More
  • Cấu hình file /etc/fstab để quản lý việc mount thiết bị trong Linux Trong Linux, file fstab nằm tại thư mục /etc. Bài viết này sẽ tìm hiểu nội dung và cách chỉnh sửa thông tin trong file này và ngụ ý rằng bạn đã biết cơ bản về lệnh mount (xem lại bài “Làm sao để… Read More
  • Kiểm tra I/O của VPS/Server Linux I/O Speed (tốc độ đọc, ghi) của một máy chủ rất quan trọng. Với một máy chủ ảo VPS, bạn cần đạt tầm 60MB/s trở lên. Còn với dedicated bạn cần đạt tầm 120-130MB/sChạy lần lượt các lệnh sau để xem tốc độ I/O của mình. Chú… Read More