Home > Backend Development > PHP7 > body text

How to change the port number in php7

藏色散人
Release: 2023-02-18 10:32:01
Original
1568 people have browsed it

How to modify the port number of php7: 1. Modify the php7 port number through "vim /usr/local/php7/etc/php-fpm.d/www.conf listen = 0.0.0.0:9000"; 2. Start php through "/usr/local/php7/sbin/php-fpm".

How to change the port number in php7

The operating environment of this tutorial: linux5.9.8 system, PHP7 version, Dell G3 computer.

How to change the port number in php7?

Change the port number of php7 under Linux

The path of the installed PHP7 configuration file is /usr/local/php7/etc

1 .Modify the php7 port number

vim /usr/local/php7/etc/php-fpm.d/www.conf
listen = 0.0.0.0:9000
Copy after login

Start php

/usr/local/php7/sbin/php-fpm
Copy after login

The path to the installed PHP5 configuration file is /usr/local/php5/etc

2.Modify the php5 port number

vim /usr/local/php5/etc/php-fpm.conf
listen = 0.0.0.0:9001
/usr/local/php5/sbin/php-fpm
Copy after login

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to change the port number in php7. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!