This script expects om folder belongs to nobody Search nobody ...
(from mobile, sorry for typos) On Tue, May 5, 2020, 20:40 Peter-Otto Weber <cyber...@hotmail.de> wrote: > Tested > > > > sudo cp a-simple-file.txt logs/catalina.out > > > > and this worked. So „root“ hast he right to create the file. > > > > Who in this situation (starting service) is trying to create the log???? > > > > Best wishes > > > > POW > > > > *Von:* Juan Antonio Moreno Carmona <jam...@gmail.com> > *Gesendet:* Dienstag, 5. Mai 2020 14:33 > *An:* user@openmeetings.apache.org > *Betreff:* Re: AW: AW: OpenMeetings <-> BigBlueButton > > > > HI again. > > By the way, what operating system or distribution are you using for the > server? > > Regards. > > El 5/5/20 a las 14:02, Peter-Otto Weber escribió: > > Hello Juan and Maxim, > > > > i tested doing this: > > > > created backup oft he two files > > added AmbientCapabilities=CAP_NET_BIND_SERVICE to openmeetings.service > > changed 5443 to 443 in server.xml > > > > (There’s another line with port 5443 – shouldn’t this be changed also?????) > > > > rebooted the server > > > > than login > > > > sudo /etc/init.d/mysql start > > sudo /etc/init.d/tomcat3 start > > > > waiting about 1 minute > > > > No access to openmeetings on 443 or 5443? > > > > Used sudo netstat -plnt to see if port 443 is in use – could not find it. > > > > Than copying back the changed files, reboot, start services and everything > is back on port 5443. > > > > Using netstat -plnt i can only see java but on tcp6 localhost :::5443 i > can not see on what port openmeetings is listening??? > > > > Your last hints regarding openmeetings.service did not hit my brain at the > right position – i do not understand??? > > > > Best wishes > > > > POW > > > > *Von:* Maxim Solodovnik <solomax...@gmail.com> <solomax...@gmail.com> > *Gesendet:* Dienstag, 5. Mai 2020 13:13 > *An:* Openmeetings user-list <user@openmeetings.apache.org> > <user@openmeetings.apache.org> > *Betreff:* Re: AW: OpenMeetings <-> BigBlueButton > > > > instructions are in the script: > > > https://github.com/apache/openmeetings/blob/master/openmeetings-server/src/main/assembly/scripts/openmeetings.service#L15 > > > > don't forget to update the paths :) > > > > On Tue, 5 May 2020 at 18:10, Juan Antonio Moreno Carmona <jam...@gmail.com> > wrote: > > Hi again. > > I forgot to warn that you must use the file openmeetings.service to manage > openmeetings for this to work. That is, you have copied the file > openmeetings.service to /etc/systemd /system and you start, stop, restart > openmeetings with: > > sudo systemctl start openmeetings > > sudo systemctl stop openmeetings > > sudo systemctl restart openmeetings > > Regards. > > El 5/5/20 a las 13:04, Peter-Otto Weber escribió: > > Thx Juan – i will give it a try. > > > > Maybe it helps to get more acceptance with my business users. > > > > Best wishes > > > > POW > > > > *Von:* Juan Antonio Moreno Carmona <jam...@gmail.com> <jam...@gmail.com> > *Gesendet:* Dienstag, 5. Mai 2020 12:45 > *An:* user@openmeetings.apache.org > *Betreff:* Re: OpenMeetings <-> BigBlueButton > > > > Hi all. > > As Maxim has already said, on *nix systems the use of ports below 1024 is > restricted to the root user. So, you have two options, one is to run > openmeetings as root user and then you can configure to use port 443 or run > openmeetings as another user (openmeetings, nobody, etc.) and use a port > above 1024 (usually 8443). Well, this It is not the whole truth, you can > really use a user other than root and configure openmeetings to run on port > 443. There are several ways to achieve this and you can see some of them in > > > https://superuser.com/questions/710253/allow-non-root-process-to-bind-to-port-80-and-443 > > I tell you how I get it. I use the file openmeetings.service that comes > with the openmeetings distribution with some minor modifications. You can > see that lines 23-24 contain the following: > > [Service] > Type=forking > > Okay, add one more line just below so it looks like this > > [Service] > Type=forking > AmbientCapabilities=CAP_NET_BIND_SERVICE > > Then edit server.xml file and change > > <Connector port="5443" > > to > > <Connector port="443" > > Restart openmeetings and visit https://yourdomain.com/openmeetings > > Regards. > > El 5/5/20 a las 8:35, Maxim Solodovnik escribió: > > > > > > On Tue, 5 May 2020 at 13:29, Peter-Otto Weber <cyber...@hotmail.de> wrote: > > Hello Maxim, > > > > sometimes your answers are a bit „cryptic“ for dummies like me 😊 > > > > What do you mean with „privileged on *nix“. What can happen if i use a > „privileged“ web Port? > > > > Special privileges are required to use ports <=1024 on *nix systems > (MacOS, Ubuntu, Fedora etc.) > > > > To do it secure way you need to create special user and grant it with > special permission > > Or use front-end proxy > > > > > > I find 5443 one time in config. So i just change this to 443 and reboot? > > > > > https://github.com/apache/openmeetings/blob/master/openmeetings-server/src/main/assembly/conf/server.xml#L57 > > > https://github.com/apache/openmeetings/blob/master/openmeetings-server/src/main/assembly/conf/server.xml#L73 > > > > and restart OM > > > > > > Best wishes for having long nights with growing up daughter… > > POW > > > > *Von:* Maxim Solodovnik <solomax...@gmail.com> > *Gesendet:* Dienstag, 5. Mai 2020 08:12 > *An:* Openmeetings user-list <user@openmeetings.apache.org> > *Betreff:* Re: OpenMeetings <-> BigBlueButton > > > > > > > > On Tue, 5 May 2020 at 13:08, Rohrbach, Gerald <g.rohrb...@funkegruppe.de> > wrote: > > Peter, > > > > good question. I mean not if Maxim is sleeping ever… > > > > Yes, I think it’s an important hint to use a standard port. > > In business environments it´s a problem with special ports. > > > > Maxim, where we have to configure this? > > > > it depends on your configuration > > for Tomcat stand-alone config > > > https://github.com/apache/openmeetings/blob/master/openmeetings-server/src/main/assembly/conf/server.xml > > > > Please NOTE port 443 is privileged on *nix systems .... > > > > > > > > > > Regards > > > > Gerald. > > > > > > *Von:* Peter-Otto Weber [mailto:cyber...@hotmail.de] > *Gesendet:* Dienstag, 5. Mai 2020 08:05 > *An:* user@openmeetings.apache.org > *Betreff:* AW: OpenMeetings <-> BigBlueButton > > > > Hello Maxim, > > > > has this been tested / done before and mos impotant for „newbies“ how can > this be configured? > > > > Regards > > > > è Do you ever sleep ? 😉 > > > > POW > > > > *Von:* Maxim Solodovnik <solomax...@gmail.com> > *Gesendet:* Dienstag, 5. Mai 2020 08:02 > *An:* Openmeetings user-list <user@openmeetings.apache.org> > *Betreff:* Re: OpenMeetings <-> BigBlueButton > > > > > > > > On Tue, 5 May 2020 at 12:58, Peter-Otto Weber <cyber...@hotmail.de> wrote: > > I just got in first contact with „bigbluebutton“. > > > > It seems to be very similar to openmeetings but – as i suggested before – > has a better implementation of video arrangement. > > > > All videos automatically were arranged above the whitboard – i like it. > > > > What i wonder is ,why open meetings needs to use specific https port and > bigbluebutton does not? > > > > port 8443 is used for demo-next because version 4.0.x using 443 ATM > > port 5443 is used for out-of-box version to avoid conflicts with running > HTTP server > > > > you free to set up OM on port 443 > > > > > > The main problem is with customers having a firewall allowing only 80/443. > We had scheduled a meeting with customers that had to be canceled due to > networking / firewall problems. > > > > Using 80/443 like on bigbluebutton would make everything much easier? Is > this possible? > > > > Best wishes > > > > POW > > > > > -- > > Best regards, > Maxim > > > > > -- > > Best regards, > Maxim > > > > > -- > > Best regards, > Maxim > > > > > -- > > Best regards, > Maxim > >