


linux php compilation and installation, linuxphp compilation and installation_PHP tutorial
linux php compile and install, linuxphp compile and install
1. Download the php installation package
http://cn2.php.net/get/php-5.5.36.tar.gz/from/this/mirror
By default, there is no connection between Nginx and PHP. Apache PHP generates module files after compilation, and Nginx PHP requires PHP to generate executable files, so fastcgi technology must be used to integrate Nginx and PHP. This only needs to be enabled during installation. FastCGI can be used. This time we installed PHP not only using FastCGI, but also using something like PHP-FPM. To put it bluntly, PHP-FPM is a manager for managing FastCGI. It exists as a plug-in for PHP. You need to use it when installing PHP. PHP-FPM needs to install PHP-FPM into PHP in the form of a patch, and PHP must be consistent with the PHP-FPM version. This is a must, remember!
2. Installation
[root@localhost src]# <span>tar</span> -zxvf php-<span>5.5</span>.<span>36</span>.<span>tar</span><span>.gz [root@localhost src]# cd php</span>-<span>5.5</span>.<span>36</span><span> [root@localhost php</span>-<span>5.5</span>.<span>36</span>]# ./configure --prefix=/usr/local/php --with-config-<span>file</span>-path=/usr/local/php/etc --with-png-<span>dir</span>=/usr/local/libpng --with-jpeg-<span>dir</span>=/usr/local/jpeg --with-freetype-<span>dir</span>=/usr/local/freetype --with-zlib-<span>dir</span>=/usr/local/zlib --with-mcrypt=/usr/local/libmcrypt --with-libxml-<span>dir</span>=/usr/local/libxml2/ --with-iconv-<span>dir</span>=/usr/local/libiconv --enable-libxml --enable-xml --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --enable-opcache --enable-mbregex --enable-fpm --enable-mbstring=all --enable-gd-native-ttf --with-openssl --enable-pcntl --enable-sockets --with-xmlrpc --enable-<span>zip</span> --enable-soap --without-pear --with-gettext --enable-session --with-curl --enable-ctype --enable-shared --with-<span>gd [root@localhost php</span>-<span>5.5</span>.<span>36</span>]<span>make</span><span> clean [root@localhost php</span>-<span>5.5</span>.<span>36</span>]<span>make</span><span> [root@localhost php</span>-<span>5.5</span>.<span>36</span>]<span>make</span> <span>install</span>
3. Copy php.ini-development in the source code to the set search path of php.ini
[root@localhost php-<span>5.5</span>.<span>36</span>]# <span>cp</span> php.ini-development /usr/local/php/etc/php.ini
4. Copy a php-fpm configuration file and name it php-fpm.conf (under the path /usr/local/php/etc)
[root@localhost etc]# <span>cp</span> php-fpm.conf.default php-fpm.conf
5. Start php-fpm
[root@localhost /]# /usr/local/php/sbin/php-<span>fpm [root@localhost </span>/]# <span>ps</span> aux | <span>grep</span> php-<span>fpm root </span><span>7790</span> <span>0.0</span> <span>0.2</span> <span>27300</span> <span>3048</span> ? Ss <span>22</span>:<span>23</span> <span>0</span>:<span>00</span> php-fpm: master process (/usr/local/php/etc/php-<span>fpm.conf) nobody </span><span>7791</span> <span>0.0</span> <span>0.4</span> <span>27300</span> <span>4380</span> ? S <span>22</span>:<span>23</span> <span>0</span>:<span>00</span> php-<span>fpm: pool www nobody </span><span>7792</span> <span>0.0</span> <span>0.2</span> <span>27300</span> <span>2524</span> ? S <span>22</span>:<span>23</span> <span>0</span>:<span>00</span> php-<span>fpm: pool www root </span><span>8124</span> <span>0.0</span> <span>0.0</span> <span>4420</span> <span>756</span> pts/<span>3</span> S+ <span>23</span>:<span>19</span> <span>0</span>:<span>00</span> <span>grep</span> php-fpm
Attachment:
1. Find the php configuration file path
[root@localhost /]# /usr/local/php/bin/php --<span>ini Configuration File (php.ini) Path: </span>/usr/local/php/<span>etc Loaded Configuration File: </span>/usr/local/php/etc/<span>php.ini Scan </span><span>for</span> additional .ini files <span>in</span><span>: (none) Additional .ini files parsed: (none)</span>
2. Close php-fpm
[root@localhost /]# <span>killall</span> php-fpm
3. PHP core configuration option list
http://php.net/manual/zh/configure.about.php

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



The steps to start Apache are as follows: Install Apache (command: sudo apt-get install apache2 or download it from the official website) Start Apache (Linux: sudo systemctl start apache2; Windows: Right-click the "Apache2.4" service and select "Start") Check whether it has been started (Linux: sudo systemctl status apache2; Windows: Check the status of the "Apache2.4" service in the service manager) Enable boot automatically (optional, Linux: sudo systemctl

When the Apache 80 port is occupied, the solution is as follows: find out the process that occupies the port and close it. Check the firewall settings to make sure Apache is not blocked. If the above method does not work, please reconfigure Apache to use a different port. Restart the Apache service.

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

To restart the Apache server, follow these steps: Linux/macOS: Run sudo systemctl restart apache2. Windows: Run net stop Apache2.4 and then net start Apache2.4. Run netstat -a | findstr 80 to check the server status.

This guide will guide you to learn how to use Syslog in Debian systems. Syslog is a key service in Linux systems for logging system and application log messages. It helps administrators monitor and analyze system activity to quickly identify and resolve problems. 1. Basic knowledge of Syslog The core functions of Syslog include: centrally collecting and managing log messages; supporting multiple log output formats and target locations (such as files or networks); providing real-time log viewing and filtering functions. 2. Install and configure Syslog (using Rsyslog) The Debian system uses Rsyslog by default. You can install it with the following command: sudoaptupdatesud

Apache cannot start because the following reasons may be: Configuration file syntax error. Conflict with other application ports. Permissions issue. Out of memory. Process deadlock. Daemon failure. SELinux permissions issues. Firewall problem. Software conflict.

PHP makes it easy to create interactive web content. 1) Dynamically generate content by embedding HTML and display it in real time based on user input or database data. 2) Process form submission and generate dynamic output to ensure that htmlspecialchars is used to prevent XSS. 3) Use MySQL to create a user registration system, and use password_hash and preprocessing statements to enhance security. Mastering these techniques will improve the efficiency of web development.
