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 - Josep

Pages: 1 ... 4 5 [6] 7 8 ... 17
77
Installation and Upgrades / Re: Suscripción a Zentyal Cloud
« on: June 09, 2011, 03:37:43 pm »
Maybe you are using transparent proxy?

78
Installation and Upgrades / Re: [SOLVED] no admin page
« on: June 09, 2011, 03:33:17 pm »
Good to know. By the way, the Apache configuration for the interface is in /var/lib/ebox/conf/apache2.conf.

79
Installation and Upgrades / Re: Zentyal - Static Route Problem
« on: June 08, 2011, 09:36:18 am »
You may want to take a look at the firewall definitions. Have you done something there?

80
Not sure about the MIME thing, haven't tried it.
Have you checked http://support.microsoft.com/kb/927847? Blocking the ports listed the via firewall may be tricky. On the other hand you should be able to block those URLs easily.

81
Spanish / Re: Problema con VPN
« on: June 07, 2011, 08:10:52 pm »
Roberto, no explicas exactamente como está estructurada la red y, más específicamente, quién manda en la red. Qué servidor aloja el DNS y DHCP?
Si partimos del principio que es el servidor Zentyal, entonces su servidor DHCP pasa información como Gateway y nombre de dominio (sufijo DNS) a los ordenadores que se le conectan.
Dentro de la LAN (sin conectarte por VPN) las conexiones funcionan? Consigues acceder al servidor Windows 2003?
Si no lo consigues, probablemente tengas que comenzar por asegurar que el DNS y DHCP están bien configurados.
Sabrás que están bien cuando consigas hacer ping por nombre o por IP a cualquier máquina dentro de la red.

Si internamente funciona, es posible que sea un problema con la VPN.
En mi caso tuve que perder algún tiempo tuneando la configuración hasta dejarla como yo quería.
Por cierto, yo uso OpenVPN GUI para acceder a mi red.

Tuve que configurar el fichero /usr/share/ebox/stubs/openvpn/openvpn.conf.mas, añadiendo las siguientes líneas:
Code: [Select]
# Redirect al traffic though VPN server
push "redirect-gateway"
# Set some configuration values for the client
push "dhcp-option DNS <IPdelservidorZentyal>"
push "dhcp-option WINS <IPdelservidorZentyal>"
push "dhcp-option DOMAIN <tudominio>"

Por ejemplo <IPdelservidorZentyal> puede ser 10.0.0.5 y <tudominio> puede ser delujo.com.
Esas opciones hacen que mi cliente se configure adecuadamente y todos los que usamos esta configuración trabajamos remotamente sin problemas.

No sé si te va a resolver el problema, pero espero que te ayude a indagar algunos caminos.
Si obtienes algún mensaje de error en alguna operación, es muy importante que lo coloques tal y como te aparece, y aprovecha para hacer una búsqueda en Google.

Saludos.

82
Spanish / Re: Como utilizar lvm
« on: June 07, 2011, 12:28:01 pm »
Code: [Select]
e2fsck /dev/mapper/ccc--PDC-home
resize2fs -p /dev/mapper/ccc--PDC-home 60G
lvresize --size 60G --verbose /dev/mapper/ccc--PDC-home
lvresize --size 16.5G --verbose /dev/mapper/ccc--PDC-root
resize2fs -p /dev/mapper/ccc--PDC-root

83
Spanish / Re: Windows 7 en la red
« on: June 07, 2011, 12:18:42 pm »
Sin problemas con clientes Windows 7. Es mejor que revises las configuraciones de red de clientes y servidor.

84
Spanish / Re: Problema con VPN
« on: June 07, 2011, 12:16:58 pm »
Es este el mismo caso en el que cuando hacías ping al servidor Windows, éste no respondía?
En cualquier caso, un poco más de información sobre la estructura de la red y los pasos que diste no van a perjudicar a nadie y quizás permitan que alguien dé una respuesta que te pueda ayudar.

85
Portuguese / Re: Host ou Destino do Backup
« on: June 06, 2011, 03:09:34 pm »
Viva. A interface do Zentyal (Basic) suporta "File System" (uma pasta disponível no próprio servidor onde Zentyal corre), FTP, RSYNC e SCP.
Não pode copiar directamente para uma partilha Windows (Samba no Linux) num computador.
As opções são:
  • Montar a partilha remota Windows numa pasta local com "mount -t cifs".
  • Correr um servidor FTP na máquina Windows (posso sugerir Filezilla FTP Server?).

86
How come there is a single quote unescaped in 'home/samba/shares/MARKETING/Products\\ Index/AA0062\\ Workin\'\''Hard\\ EXP\\ 0.4/Technical\\ Sheet'?

You have Workin\'\''Hard in the result. That (third) unescaped quote confuses Duplicity. What was the original name?

87
Installation and Upgrades / Re: eGroupware Zarafa
« on: June 04, 2011, 12:08:11 pm »
You shouldn't recreate the users on the new server, as they will get different UIDs.
You need to backup and restore the user configuration to ensure that they get the same numbers.
Now, i guess that would involve, at the very least, dumping your LDAP database and restoring it in the new server. If someone could step in with a more detailed process for this, it would be very helpful.

88
Portuguese / Re: Remover interface
« on: June 04, 2011, 11:41:01 am »
Code: [Select]
aptitude purge remove lxdm

89
Installation and Upgrades / Re: eGroupware Zarafa
« on: June 03, 2011, 04:15:40 pm »
As far as I know, all you need is the /var/vmail folder and the MySQL DB dump.
On the new server you would need to recreate all users prior to restoring the database.

90
All right, I have created a short script as a proof of concept:

Code: [Select]
#!/usr/bin/perl
$a = q(abc'def"gh\'i);

$a =~ s/\\/\\\\/g;
$a =~ s/\'/\\\'/g;

print $a."\n";

With this script, the input string abc'def"gh\'i becomes abc\'def"gh\\\'i.
I assume that Duplicity would accept an escaped string lilke that.

How can you apply it? By editing the file /usr/share/perl5/EBox/EBackup.pm. On lines 182-187, where you have

Code: [Select]
    $rFile = shell_quote($rFile);
}

# shell quote does not work well for espaces with duplicity...
$destination =~ s:\ :\\\ :g;
$destination = shell_quote($destination);

Replace with

Code: [Select]
    $rFile =~ s/\\/\\\\/g;
    $rFile =~ s/\'/\\\'/g;
    $rFile = shell_quote($rFile);
}

$destination =~ s/\\/\\\\/g;
$destination =~ s/\'/\\\'/g;
# shell quote does not work well for espaces with duplicity...
$destination =~ s:\ :\\\ :g;
$destination = shell_quote($destination);

I have not tested the results so make no guarantees, use it at your own risk!
Having said that, I would make those changes and try to restore the file.
If it works, post it here and it is up to you to decide whether you keep the changes or not.
If it doesn't work, post it here with whatever error messages you get and undo the changes in the file.

Good luck.


Pages: 1 ... 4 5 [6] 7 8 ... 17