Show Posts

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.


Messages - turalyon

Pages: 1 2 [3] 4 5 ... 14
31
Other modules / Re: Network Configuration
« on: April 19, 2023, 01:44:35 pm »
You shouldn't change anything in Redis itself, you must use the Zentyal GUI. If for some reason you need it, you could use the script '/usr/share/zentyal/clean-conf network that resets the module from scratch. I am not sure if there would be an issue due to the module dependencies. So, if you try it, make sure you did a backup of the server.

--

“This world is ours, and by the Holy Light we will keep it safe, now and forever".

32
You can install as many additional domain controllers as you want, however, keep in mind that those ADCs increase the complexity of your environment, so you should analyze if it is worth it or not.

Regarding the license question, you should contact sales so they can inform you.

--

“This world is ours, and by the Holy Light we will keep it safe, now and forever".

33
Other modules / Re: Network Configuration
« on: April 18, 2023, 11:11:17 am »
Apparently, the interfaces name are gathered by the following function and passed as an argument to the stub 'interfaces.mas':

* https://github.com/zentyal/zentyal/blob/master/main/core/src/EBox/NetWrappers.pm#L83

Also, all the configurations you set in Zentyal GUI are stored in the Redis database, you can see all the configurations by running the following command:


Code: [Select]
sudo /usr/share/zentyal/redisvi

## For a particular module
sudo /usr/share/zentyal/redisvi network

--

“This world is ours, and by the Holy Light we will keep it safe, now and forever".

34
Other modules / Re: Network Configuration
« on: April 17, 2023, 03:15:49 pm »
Hi,

There is a stub called 'interfaces.mas' located by default in '/usr/share/zentyal/stubs/network/' that manages the '/etc/network/interfaces' configuration file.

* https://doc.zentyal.org/en/appendix-c.html#stubs

Remember that if you do any changes in the stub, you will need to run the following command to apply the changes:

Code: [Select]
sudo zs network restart

--

“This world is ours, and by the Holy Light we will keep it safe, now and forever".

35
Off topics / Re: SSL Certificate installation Mothed
« on: April 13, 2023, 10:13:22 am »
Depending on the module you want to configure, you will need to modify one stub or another. Below you have two links from the documentation that will help you to identify the correct one.

* https://doc.zentyal.org/en/ca.html#let-s-encrypt-configuration
* https://doc.zentyal.org/en/appendix-c.html#stubs

NOTE: Do not forget to restart the module to apply the changes.

--

“This world is ours, and by the Holy Light we will keep it safe, now and forever".

36
Hmm, both services are up and running and the port is listening, so the module seems to be working as expected. Did you try to connect from another machine?

--

“This world is ours, and by the Holy Light we will keep it safe, now and forever".

37
You must analyze the following log files in order to see why you are getting that error:

* /var/log/zentyal/zentyal.log
* /var/log/zentyal/error.log
* /var/log/nginx/error.log
* /var/log/syslog

Also, you can check the status of the following services:

Code: [Select]
sudo systemctl status zentyal.webadmin-nginx zentyal.webadmin-uwsgi
sudo journalctl --no-pager -u zentyal.webadmin-nginx

Moreover, you can see if the port is listening:

Code: [Select]
sudo ss -tunpl | grep ':8443'

Finally, in case the services are running and the port is listening, make sure the firewall is not blocking the connection. You can stop it temporarily with the below command so you can adjust the rules.

Code: [Select]
sudo zs firewall stop

--

“This world is ours, and by the Holy Light we will keep it safe, now and forever".

38
You need to add the Suricata repository so you can install it. Below are the commands:

Code: [Select]
echo "deb http://ppa.launchpad.net/oisf/suricata-stable/ubuntu $(lsb_release -sc) main" | sudo tee -a /etc/apt/sources.list
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys D7F87B2966EB736F
sudo apt update

After that, you should be able to install the module from Zentyal GUI.

--

“This world is ours, and by the Holy Light we will keep it safe, now and forever".

39
Installation and Upgrades / Re: ZENTYAL CONFIGURATION BACKUP ERROR
« on: March 20, 2023, 12:28:36 pm »
That bug was reported and fixed last week. You must update the domain controller package to 'zentyal-samba-7.0.2'. In case you do not have that update available is because you do not have access to the Zentyal repository. You can confirm it by running the following command:

Code: [Select]
sudo apt update

If this is the case, below you have a link where the required actions are explained:

* https://forum.zentyal.org/index.php/topic,35100.msg115467.html#msg115467

--

“This world is ours, and by the Holy Light we will keep it safe, now and forever".

40
I am having a similar issue with version 7 of Zentyal. Could someone assist me with a fix?

Quote
W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://packages.zentyal.com/zentyal-qa 7.0 InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY EF358ACFF842CD9E
W: Failed to fetch http://packages.zentyal.com/zentyal-qa/dists/7.0/InRelease  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY EF358ACFF842CD9E
W: Some index files failed to download. They have been ignored, or old ones used instead.

Thanks

The commands are:

Code: [Select]
sudo apt-key list
sudo apt-key del "935D 5F02 D09D 8E65 99D52A01 799E 2919 24B3 C2E9"

sudo wget -O - http://keys.zentyal.org/zentyal-7.0-packages-com.asc | sudo apt-key add -
sudo apt-key list

sudo apt update

--

“This world is ours, and by the Holy Light we will keep it safe, now and forever".

41
Hi,

The message from the log you posted is not complete but I imagined that the database that could not be backed up is Sogo (same error as in my environment).

Basically, Zentyal creates two databases in Mysql:

1. 'zentyal', which is created by the zentyal-core package.
2. 'sogo', which is created by the Webmail module.

As far as I know, this issue only affects the webmail database.

--

“This world is ours, and by the Holy Light we will keep it safe, now and forever".

42
I got that errors last week for Sogo database and I was able to fix it by running the following commands:

Code: [Select]
mysql -u root -p$(sudo cat /var/lib/zentyal/conf/zentyal-mysql.passwd)

GRANT RELOAD,PROCESS ON *.* TO 'sogo'@'127.0.0.1';
FLUSH PRIVILEGES;
EXIT;

--

“This world is ours, and by the Holy Light we will keep it safe, now and forever".

43
Installation and Upgrades / Re: saving webadmin module stuck on 100%
« on: February 07, 2023, 12:08:33 pm »
Those messages are just warnings, not errors, so they can be omitted if there isn't any error when the OpenVPN module is restarted (sudo zs openvpn restart). Perhaps, those messages are caused by the OpenVPN widget in the Zentyal GUI dashboard.

What you really need to do is test the VPN connections with a client to confirm the stability of the module.

--

“This world is ours, and by the Holy Light we will keep it safe, now and forever".

44
Email and Groupware / Re: Roundcube on Zentyal 7.0?
« on: February 07, 2023, 12:00:42 pm »
Hi,

I believe it is possible without any major issues. I do not install Rounbcube but I think the actions should be:

1. Install Rounbcube.
2. Configure Rounbcube.
3. Configure a new VirtualHost in Apache.
4. Disable the Webmail module.
5. Enable the Apache service.
6. Test the new integration

NOTE: Keep in mind that Zentyal installs and uses Mysql service, so, in case you need to use this local database service, just remember that the root password is located at '/var/lib/zentyal/conf/zentyal-mysql.password'.

--

“This world is ours, and by the Holy Light we will keep it safe, now and forever".

45
Hi,

According to the sed command, the option '--debug-stderr' must be removed from the file '/usr/share/perl5/EBox/Ldap.pm', and then, the webadmin and domain controller module must be restarted.

NOTE: That parameter has two matches, so both must be removed.

--

“This world is ours, and by the Holy Light we will keep it safe, now and forever".

Pages: 1 2 [3] 4 5 ... 14