你知道 zend 服务器的替代端口号吗?

发布于 2024-11-29 18:07:57 字数 114 浏览 2 评论 0原文

你知道 zend 服务器的任何替代端口号吗? 因为我的80端口已经被xampp占用了

<?php echo "help me install"; ?>

do you know any alternative port number for zend server ?
because my port 80 is already occupied by xampp

<?php echo "help me install"; ?>

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

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

发布评论

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

评论(1

我爱人 2024-12-06 18:07:57

通常,Zend Server Administration 默认在端口 10081 上运行,而 localhost 在端口 80 上运行。如果您不喜欢这个或其他端口,请选择您喜欢的任何空闲端口:)。以下是检查哪些端口已使用、打开、关闭等的方法。

Windows

netstat -a -n

Linux

netstat -nap

正如 hakre 评论的那样, Zend 编写了以下有关 Zend Server 和端口的内容

问:我的端口号是多少?

在大多数情况下,您的 Web 服务器的端口号将为 80。如果您的端口号是80、你浏览网页时可以省略 URL 中的参数(即您可以浏览到 http://localhost/ 而无需指定端口号)。

在以下情况下,您的端口号将会不同:

  • 您在 Mac OS X 上运行 Zend Server。在这种情况下,默认端口号将为 10088。
  • 您在 Linux 上使用 Generic Tarball 包安装了 Zend Server。在这种情况下,默认端口号将为 10088。
  • 您在安装期间或安装之后修改了 Zend Server 侦听的端口号。

Usually Zend Server Administration runs on port 10081 by default and localhost on port 80. If you don't like this or another port, choose any free port you like :). Here is how you check what ports are used, open, closed, etc.

Windows

netstat -a -n

Linux

netstat -nap

As hakre commented, Zend writes the following about Zend Server and ports:

Q: What is my port number?

In most cases, your Web server's port number will be 80. If your port number is 80, you can omit the parameter from your URL when browsing to your Web pages (i.e. you can browse to http://localhost/ without specifying a port number).

In the following circumstances, your port number will be different:

  • You are running Zend Server on Mac OS X. In this case, the default port number will be 10088.
  • You installed Zend Server using the Generic Tarball package on Linux. In this case, the default port number will be 10088.
  • You modified the port number on which Zend Server listens, during or after installation.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文