


Installation and configuration notes of PHP accelerator APC under Linux, accelerator apc_PHP tutorial
Installation and configuration notes of PHP accelerator APC under Linux, accelerator apc
Currently I am using APC-3.1.9 stable, you can download the latest version from http://pecl.php.net/package/APC.
1. Installation
wget http://pecl.php.net/get/APC-3.1.9.tgz
tar xzvf APC-3.1.9.tgz
cd APC-3.1.9
/usr/local/php/bin/phpize
./configure --enable-apc --enable-apc-mmap --with-php-config=/usr/local/php/bin/php-config --prefix=/usr/local/apc
make && make install
Note: Check the corresponding directory after installation and compilation:
ll /usr/local/php/lib/php/extensions/no-debug-non-zts-20090626/
-rwxr-xr-x 1 root root 659164 Apr 8 18:30 apc.so
Installation successful!
2. Configuration/usr/local/php/etc/php.ini
vi /usr/local/php/etc/php.ini
shift+g to the last line and add
at the end[apc]
extension="/usr/local/php/lib/php/extensions/no-debug-non-zts-20090626/apc.so"
apc.enabled = 1
apc.cache_by_default = on
apc.shm_segments = 1
apc.shm_size = 64
apc.ttl = 7200
apc.user_ttl = 7200
apc.num_files_hint = 0
apc.write_lock = On
Then copy apc.php in the APC directory to an accessible directory
cp /root/APC-3.1.9/apc.php /home/wwwroot/
3. Restart LNMPA
/root/lnmpa restart
4. Attached: How to install apc under Windows
Download address: http://kromann.info/php5_2-Release_TS/php_apc.dll
extension = php_apc.dll
There are many reasons for the error, and specific problems need to be analyzed in detail
1. There is a problem using the mmcache module on linux x86-64
2. There is a problem with the PHP compilation and installation process, or after the apache+php installation is completed , PHP has been recompiled and installed, and apache has been recompiled at the same time. This phenomenon will occur. It is recommended to keep httpd.conf and related configuration files, and then reinstall apache+PHP. Pay attention to the order. If you still have this prompt, please Change the php version and reinstall.
3. PHP modules zend_extension and extension conflict
4. Due to the use of APC, this is a common problem with this type of op-code cache optimization software. It is recommended to try the latest version (pecl.php.net/package/APC). Once it appears, you can only restart apache.
5. There are too many files in the /tmp directory, and it will be normal after deleting it
6. The configuration mode is worker, change to prefork
7. ZendOptimizer-3.3.0 conflicts with jdk1.7.0
8. It is caused by some special files accessed by the web. Check the access_log and you can see that the deleted files
are transferred. One problem is that there is a problem with your apache and php. Or there is something wrong with your php.
Try to submit to an empty php file and see if there is anything wrong.
means just write one
in the php file
phpinfo();
?>
$memcache = new Memcache;
$memcache->pconnect("127.0.0.1", 11211);

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



PHP remains important in modern web development, especially in content management and e-commerce platforms. 1) PHP has a rich ecosystem and strong framework support, such as Laravel and Symfony. 2) Performance optimization can be achieved through OPcache and Nginx. 3) PHP8.0 introduces JIT compiler to improve performance. 4) Cloud-native applications are deployed through Docker and Kubernetes to improve flexibility and scalability.

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP and Python each have their own advantages and are suitable for different scenarios. 1.PHP is suitable for web development and provides built-in web servers and rich function libraries. 2. Python is suitable for data science and machine learning, with concise syntax and a powerful standard library. When choosing, it should be decided based on project requirements.

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

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.

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.
