英文:
Apache Open meetings run locally for development
问题
我计划在我的项目中使用Open Meetings。在开始之前,我先从一些UI颜色更改开始,并在我的本地机器上检查系统。为了做到这一点,我克隆了Git存储库https://github.com/apache/openmeetings。
在此之后,执行了以下命令:mvn clean install -PallModules
- 使用Java版本11和mvn版本3.6.3
在执行之后,构建成功生成:
之后,如Git中所述,我按照以下步骤操作:
- 进入openmeetings-server/target目录
- 将apache-openmeetings-x.x.x.tar.gz(或apache-openmeetings-x.x.x.zip用于Windows)解压到新目录
- 进入此新目录并执行./bin/startup.sh(Windows上为./bin/startup.bat)
结果显示,Tomcat已启动。还可以使用命令netstat -lntp
查看端口5080被一个Java jar占用。
但问题是,当我打开http://localhost:5080
时,它成功重定向到http://localhost:5080/openmeetings/
,但显示网站无法访问。
这非常奇怪,请帮忙解决!
英文:
I am aiming to use Open meetings in my project. Before doing that, I was starting with some UI colour changes and check the system on my local machine. For doing this, I cloned the Git repository https://github.com/apache/openmeetings .
After this, executed the command: mvn clean install -PallModules
*Working with Java version 11 and mvn version 3.6.3
After the execution, build generates successfully:
After this, as mentioned in git, I followed following steps:
- go to openmeetings-server/target directory
- extract apache-openmeetings-x.x.x.tar.gz (or apache-openmeetings-x.x.x.zip for windows) to new directory
- enter to this new directory and execute ./bin/startup.sh (./bin/startup.bat for Windows)
Results says, Tomcat started. Also with command netstat -lntp
, I can see port 5080 is occupied by a java jar.
But, the problem is when i open http://localhost:5080
, it successfully redirects me to http://localhost:5080/openmeetings/
but shows site can't be reached.
This is very weird, please help!
答案1
得分: 0
构建说明和有用的命令在这里:
https://openmeetings.apache.org/BuildInstructions.html
我建议使用“unpacked”构建
在 http://localhost:5080/openmeetings 下,OM 对我来说正常工作
(我建议在 https://localhost:5443/openmeetings 使用,否则摄像头和麦克风将被浏览器阻止)
可能你的请求被防火墙阻止了吗?
附言:我是 OpenMeetings 开发人员之一
英文:
Build instructions and helpful commands are here
https://openmeetings.apache.org/BuildInstructions.html
I would recommend to use unpacked
build
OM at http://localhost:5080/openmeetings works for me as expected
(I would recommend to use it at https://localhost:5443/openmeetings overwise Camera&Microphone will be blocked by browser)
Is it possible your request is being blocked by FW?
P.S. I'm one of OpenMeetings devs
专注分享java语言的经验与见解,让所有开发者获益!
评论