在 Tomcat 上安装 Liferay 6.1 后,我想以http:// myportal.local
.
我更改文件主机:
127.0.0.1 myportal.local
我更改文件server.xml
从<Connector port="8080"...
到<Connector port="80"...
但是当我输入 URLhttp:// localhost
或http:// myportal.local
响应是一个白页时
有用!
你能帮帮我吗?
端口 80 是 apache 使用的所有 http 请求的端口。通过这条线
127.0.0.1 myportal.local
你已经给你的本地主机起了一个名字,所以
http://localhost and http://myportal.local
将指向您的 apache 端口 80
现在您将看到一个带有“It works”的白页。这是您的 apache 中存在的 index.html 文件。
所以你要做的是,将你的tomcat端口保持为8080,并在你的apache中编辑你的workers.properties和httpd.conf,并将所有请求重定向到你的tomcat。
然后您可以将您的 webapp 放在 webapps/Root 中或相应地编辑您的 server.xml 以反映 url 更改。
编辑完所有这些文件后不要忘记重新启动 apache 和 tomcat。