Apache - 上传文件冻结我的网站

发布于 2024-11-02 06:11:24 字数 268 浏览 0 评论 0原文

我有一个运行 PHP 网站的 Apache 服务器。

当我通过网站上传文件或从服务器下载文件时,下载完成后我的整个网站无法响应任何其他查询。

看起来我的 Apache 只有 1 个线程,在我的下载未完成时无法提供任何其他查询。

我的服务器有 Debian,Pentium4 3Ghz CPU 和 1Go RAM。

问题

如何解决此问题,以便在 Apache 向另一个客户端上传或下载文件时可以提供查询服务?

I have an Apache server running a PHP website.

When I am uploading a file or downloading a file from/to my server via the website, my whole website cannot respond to any other queries the time the download finishes.

It looks like my Apache has only 1 thread and cannot serve any other queries while my download is not finished.

My server has Debian, on a Pentium4 3Ghz CPU with 1Go RAM.

Question

How can I fix this issue so I can serve queries while Apache uploads or downloads a file to another client?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沙沙粒小 2024-11-09 06:11:24

您是否尝试过直接访问服务器上的图像或某些非 PHP 资源?我怀疑 Apache 会因文件上传而冻结,但 PHP 脚本可能会。

如果您已将 PHP 配置为自动启动会话,则默认的基于文件的会话处理程序会在脚本的生命周期内锁定会话文件,这意味着您的上传将在上传期间锁定所有其他 PHP 脚本。

因此,尝试直接点击图像、或一些文本等...非 PHP 的内容,看看服务器是否响应。如果确实如此,那么这是您的 PHP 配置的问题,而会话处理程序是最有可能的罪魁祸首。

Have you tried directly accessing an image or some non-PHP resource on the server? I doubt Apache would freeze from a file upload, but PHP scripts might.

If you've configured PHP to auto-start sessions, the default file-based session handler locks the session file for the lifetime of the script, which means your upload will lock out all other PHP scripts for the duration of the upload.

So, try directly hitting an image, or some text, etc... something that isn't PHP and see if the server responds. If it does, then it's your PHP configuration, and the session handler is the most likely culprit.

洒一地阳光 2024-11-09 06:11:24

我建议阅读此 http://httpd.apache.org/docs /current/mod/core.html#keepalive
并为您的 apache 服务器提供正确的设置...

I'd recommend reading this http://httpd.apache.org/docs/current/mod/core.html#keepalive
and providing the right settings for Your apache server...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文