nginx - php-fpm 一直是ESTABLISHED
这两天服务器上的php-fpm 一直很奇怪的被一个外部ip访问到 我的php-fpm配置里 做了ip限制 listen.allowed_clients = 127.0.0.1 但是他还是能连进来 而且不是通过9000端口进来的 整个进程一直被占用处于ESTABLISHED状态 怎么回事 是php-fpm有漏洞么 该怎么查杀 ?为什么php-fpm本来监听的9000端口 却通过其他端口连出去了
正常的连接 是下面截图
回复内容:
这两天服务器上的php-fpm 一直很奇怪的被一个外部ip访问到 我的php-fpm配置里 做了ip限制 listen.allowed_clients = 127.0.0.1 但是他还是能连进来 而且不是通过9000端口进来的 整个进程一直被占用处于ESTABLISHED状态 怎么回事 是php-fpm有漏洞么 该怎么查杀 ?为什么php-fpm本来监听的9000端口 却通过其他端口连出去了
正常的连接 是下面截图
web server和fastcgi之间是通过网络连接的啊
一段fastcgi listen 9000,另一端难道不要开端口吗?
因为nginx和php之间是长连接,一旦连接建立成功,就不需要再关闭了,然后两者就可以一直愉快的通信了啊。如果用完一次,就关闭一次,会凭空产生不必要的重连的时延。反正这个连接就只有nginx和php使用,不用担心连接数被耗尽;传统的http协议之所以要做成短连接,是由于web服务是在公网上使用,一个浏览器访问当前网站建立的socket连接如果长时间不释放,然后每个访问的浏览器都学他不释放,服务器连接数就会被耗尽。综上所述,就是长短连接之间的区别和用途了。
我现在已经知道是什么了 那是php和memcache建立的长连接 和nginx没关系 请看清截图和问题 链接是从php出去连外部的 不是外部来连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



PHP is used to build dynamic websites, and its core functions include: 1. Generate dynamic content and generate web pages in real time by connecting with the database; 2. Process user interaction and form submissions, verify inputs and respond to operations; 3. Manage sessions and user authentication to provide a personalized experience; 4. Optimize performance and follow best practices to improve website efficiency and security.

PHP uses MySQLi and PDO extensions to interact in database operations and server-side logic processing, and processes server-side logic through functions such as session management. 1) Use MySQLi or PDO to connect to the database and execute SQL queries. 2) Handle HTTP requests and user status through session management and other functions. 3) Use transactions to ensure the atomicity of database operations. 4) Prevent SQL injection, use exception handling and closing connections for debugging. 5) Optimize performance through indexing and cache, write highly readable code and perform error handling.

How to confirm whether Nginx is started: 1. Use the command line: systemctl status nginx (Linux/Unix), netstat -ano | findstr 80 (Windows); 2. Check whether port 80 is open; 3. Check the Nginx startup message in the system log; 4. Use third-party tools, such as Nagios, Zabbix, and Icinga.

PHP and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.

How to configure an Nginx domain name on a cloud server: Create an A record pointing to the public IP address of the cloud server. Add virtual host blocks in the Nginx configuration file, specifying the listening port, domain name, and website root directory. Restart Nginx to apply the changes. Access the domain name test configuration. Other notes: Install the SSL certificate to enable HTTPS, ensure that the firewall allows port 80 traffic, and wait for DNS resolution to take effect.

Steps to start Nginx in Linux: Check whether Nginx is installed. Use systemctl start nginx to start the Nginx service. Use systemctl enable nginx to enable automatic startup of Nginx at system startup. Use systemctl status nginx to verify that the startup is successful. Visit http://localhost in a web browser to view the default welcome page.

Starting an Nginx server requires different steps according to different operating systems: Linux/Unix system: Install the Nginx package (for example, using apt-get or yum). Use systemctl to start an Nginx service (for example, sudo systemctl start nginx). Windows system: Download and install Windows binary files. Start Nginx using the nginx.exe executable (for example, nginx.exe -c conf\nginx.conf). No matter which operating system you use, you can access the server IP

In Linux, use the following command to check whether Nginx is started: systemctl status nginx judges based on the command output: If "Active: active (running)" is displayed, Nginx is started. If "Active: inactive (dead)" is displayed, Nginx is stopped.
