This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Pages: [1]
1
Installation and Upgrades / Re: upgrade to 6.2.5 from 6.2.4 chashed server
« on: January 02, 2021, 08:07:30 pm »
I created a bug for this issue here:
https://github.com/zentyal/zentyal/issues/2012
I had to manually change /usr/share/zentyal/stubs/core/nginx.conf.mas, line 115 to:
ssl_certificate_key <% $zentyalconfdir %>ssl/ssl.pem;
This used to state "ssl.key" rather than "ssl.pem" - with this change in place webadmin started working again.
https://github.com/zentyal/zentyal/issues/2012
I had to manually change /usr/share/zentyal/stubs/core/nginx.conf.mas, line 115 to:
ssl_certificate_key <% $zentyalconfdir %>ssl/ssl.pem;
This used to state "ssl.key" rather than "ssl.pem" - with this change in place webadmin started working again.
2
Installation and Upgrades / Re: upgrade to 6.2.5 from 6.2.4 chashed server
« on: January 02, 2021, 07:12:09 pm »
I ran into the same problem - my webadmin stopped working recently, probably due to an automatic upgrade. When I manually restart the webadmin service I see errors like the following:
nginx[4584]: nginx: [emerg] SSL_CTX_use_PrivateKey_file("/var/lib/zentyal/conf/ssl/ssl.key") failed (SSL: error:0B080074:x509 certificate routines:X509_check_private_key:key values mismatch)
Indicative of some sort of issue with the certificates but I can't figure out how to fix it.
I'm not able to revert to the previous version since I don't have the earlier version of the packages at hand. Looks like both zentyal-core and zentyal-ca were updated recently (to 6.2.5 and 6.2.1, respectively).
nginx[4584]: nginx: [emerg] SSL_CTX_use_PrivateKey_file("/var/lib/zentyal/conf/ssl/ssl.key") failed (SSL: error:0B080074:x509 certificate routines:X509_check_private_key:key values mismatch)
Indicative of some sort of issue with the certificates but I can't figure out how to fix it.
I'm not able to revert to the previous version since I don't have the earlier version of the packages at hand. Looks like both zentyal-core and zentyal-ca were updated recently (to 6.2.5 and 6.2.1, respectively).
3
Installation and Upgrades / auto-update on Zentyal 5.0 is not working?
« on: February 04, 2017, 06:12:52 pm »
Hello,
I updated one of my Zentyal servers from 4.2 to 5.0 (I left the other one on 4.2, just in case).
So far most of the functionality I expect to see on my 5.0 server appears to be working; however for some reason the "auto-update" process doesn't appear to work.
I had auto-update set up on the 4.2 server before the upgrade; all settings appear to have migrated to 5.0, however no updates are actually applied... I kept seeing the notification on the web interface that updates were available - even though auto-update should have taken care of them.
Eventually I manually installed the updates - maybe that will also fix whatever it was that caused auto-update not to work...
Nevertheless I was wondering if I am the only one with this issue after upgrading 4.2 to 5.0?
Thanks!
I updated one of my Zentyal servers from 4.2 to 5.0 (I left the other one on 4.2, just in case).
So far most of the functionality I expect to see on my 5.0 server appears to be working; however for some reason the "auto-update" process doesn't appear to work.
I had auto-update set up on the 4.2 server before the upgrade; all settings appear to have migrated to 5.0, however no updates are actually applied... I kept seeing the notification on the web interface that updates were available - even though auto-update should have taken care of them.
Eventually I manually installed the updates - maybe that will also fix whatever it was that caused auto-update not to work...
Nevertheless I was wondering if I am the only one with this issue after upgrading 4.2 to 5.0?
Thanks!
4
Contributions / Tips&Tricks / Features Requests / Updating Mason Templates
« on: January 29, 2017, 09:13:25 pm »
Hello all,
I have been trying to develop some local updates to the Mason templates (in /usr/share/zentyal/stubs/) to try and influence the behavior of some of the Zentyal components.
However I am running into an issue that I can't seem to figure out what the types are used in the templates.
I assume that the types used in the templates are the same as those used in the Zentyal Perl infrastructure - but I'm not sure how to figure out what's what.
For instance, in /usr/share/zentyal/stubs/dns/named.conf.local.mas:
% foreach my $dom (@domains) {
% next if (defined $sambaZones and
% lc ($dom->{name}) eq any @{$sambaZones});
@domains is declared as an input into the template - it clearly is a type defined "somewhere", judging by the use of "$dom->{name}"; however how do I figure out that "name" is part of "$dom"?
Thanks
I have been trying to develop some local updates to the Mason templates (in /usr/share/zentyal/stubs/) to try and influence the behavior of some of the Zentyal components.
However I am running into an issue that I can't seem to figure out what the types are used in the templates.
I assume that the types used in the templates are the same as those used in the Zentyal Perl infrastructure - but I'm not sure how to figure out what's what.
For instance, in /usr/share/zentyal/stubs/dns/named.conf.local.mas:
% foreach my $dom (@domains) {
% next if (defined $sambaZones and
% lc ($dom->{name}) eq any @{$sambaZones});
@domains is declared as an input into the template - it clearly is a type defined "somewhere", judging by the use of "$dom->{name}"; however how do I figure out that "name" is part of "$dom"?
Thanks
Pages: [1]