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 ... 9 10 [11] 12
151
Hi,

There is an old open issue in Github about IPv6, however, at this moment, Zentyal does not support it.

* https://github.com/zentyal/zentyal/issues/2018

--

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

152
Email and Groupware / Re: Changing ActiveSync port
« on: October 15, 2021, 02:00:34 pm »
Hi,

I didn't change it but I suppose that you just need to be aware of the stub 'SOGo.conf-apache.mas'.

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

153
Hi,

Did you try to configure each module after the initial wizard instead of let the wizard configures the modules? I mean:

1. Download the script.
2. Install just the firewall module.
3. In the initial wizard, just configure the Network module.
4. Install the DNS and Domain Controller modules.
5. Configure the DNS module (including a record 'A' for the Windows Servers) and enable it.
6. Check out the connection between both servers.
7. Finally, configure the Domain Controller module and enable it.

Hope it helps.

--

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

154
Hi,

There is an script located at '/usr/share/zentyal/smart-admin-report' that checks the status of a Zentyal, that script contains a function called 'dc_check' that do several checks in the Domain Controller module, perhaps you should run the script in both Zentyal and check the results.

Also, there is a command 'samba-tool showrepl' that you should run in both servers in order to check the replication status.

Finally, did you analyze the log files in both servers? Perhaps, the replication has some kind of issue.

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

155
Installation and Upgrades / Re: can't log in Webadmin
« on: September 27, 2021, 10:22:09 am »
In my case, I have created a cronjob that restarts the webadmin module each 6 hours. This 'fix' the behaviour for me. Below my cronjob code:

Code: [Select]
## Workaround
## Added on: 15-09-2021
## Bug: https://github.com/zentyal/zentyal/issues/2055
0 */6 * * * /usr/bin/zs webadmin restart >/dev/null 2>&1

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

156
Spanish / Re: Zentyal como DC y mikrotik como VPN pptp
« on: September 27, 2021, 10:18:02 am »
¿Es posible que estés experimentando el mismo error que el que reporta este usuario?

* https://forum.zentyal.org/index.php/topic,35274.msg114660.html#msg114660

157
Spanish / Re: Zentyal como DC y mikrotik como VPN pptp
« on: September 27, 2021, 10:16:10 am »
Hola,

¿Qué tipo de configuración estás usando? ¿Qué problemas te está dando Zentyal? ¿Has analizado los archivos de log?

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

158
Spanish / Re: no obtengo respuestas del DNS desde la red wifi
« on: September 17, 2021, 01:31:22 pm »
Holap,

* ¿Tienes una regla en el cortafuegos que permita a la red de los clientes el acceso al servicio DNS?
* ¿Has probado en añadir una regla en el cortafuegos de tipo 'Registrar' para ver las peticiones que recibe Zentyal?
* ¿Has revisado los parámetros de configuración 'allow-' del archivo '/etc/bind/named.conf.options'?

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


159
Other modules / Re: access to samba shares for sftp users
« on: September 17, 2021, 01:21:42 pm »
Hi,

Below you have the steps that I followed to access to the shares with a domain user through FTP:

1. Install the FTP module, disable the option 'Restrict to personal directories' and enable the module.

2. Through FileZilla, create a FTP connection using a 'Passive' transfer mode.

3. Connect to the FTP server, and then, just search for the path '/home/samba/shares'.

I also tested with SFTP, I enabled PAM and then, I could be able to connect to the shares through Filezilla. I think, this method requires steps 1 and 3 from above.

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

160
Installation and Upgrades / Re: Stuck Upgrading from 5.1.3 to 6.0
« on: September 17, 2021, 01:03:57 pm »
Any solutions? After restart my server get  EBox::DNS::appArmorProfiles - Setting DNS apparmor profile  and i cant run it

You can try to locate the DNS process, kill it and then, reconfigure the broken or pending packages. And then, restart again the module.

Code: [Select]
## To detect a process
ps -ef | egrep -i 'dns|zentyal'
lslocks | grep -Ei 'dns|zentyal'

## To kill the process
kill -9 pid_of_the_process

## To reconfigure the broken or pending packages
## It is possible that you need to run this
## command more than once
dpkg --configure -a

## Restarting the module
zs dns restart

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

161
Spanish / Re: GeoIP Firewall
« on: September 15, 2021, 01:29:14 pm »
Holap,

Puedes tratar de combinar las siguientes herramientas y funcionalidades:

* Ipset:
  * https://wiki.archlinux.org/title/Ipset_(Espa%C3%B1ol)

* Direcciones IP por paises:
  * http://www.ipdeny.com/ipblocks/data/countries

* Iptables:
  * https://wiki.archlinux.org/title/Iptables_(Espa%C3%B1ol)

* Hooks:
  * https://doc.zentyal.org/es/appendix-c.html#hooks


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

162
Other modules / Re: How to configure ssh access to the Zentyal 7.0
« on: September 10, 2021, 04:38:25 pm »
According the output, your SSH service is using port 100. Did you modify the SSH service (Network -> Services) or created a new one with that particular port?

--

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

163
Installation and Upgrades / Re: Migration from zentyal 4.0.18 to 7.0.4
« on: September 10, 2021, 04:34:38 pm »
When you import that backup, did you check in the Sogo database if the values of the users are restored?

Code: [Select]
## To access to the Sogo database
mysql -u root -p$(cat /var/lib/zentyal/conf/zentyal-mysql.passwd) sogo

--

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

164
Other modules / Re: How to configure ssh access to the Zentyal 7.0
« on: September 06, 2021, 03:50:48 pm »
Hi,

You need to check if the ssh service is running, which port it is using and if it is listening in that port:

Code: [Select]
## To see if the SSH is running
sudo systemctl status ssh

## To get the SSH port
sudo grep 'Port' /etc/ssh/sshd_config

## To see if the port is correctly listening (in this example, the port is 22)
ss -tunpl | grep '22'

Once you have ensure that the service is OK, make sure that the firewall allows the connection. You can check it in Zentyal Admin Interface.

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

165
Hi,

Even Zentyal has all the FSMO roles, it will always displays that it is an Additional Domain Controller. Don't change it or you will loose all the information from your Domain Controller, just ignore it.

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

Pages: 1 ... 9 10 [11] 12