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.
31
Installation and Upgrades / Re: Language Enconding Problem
« on: May 21, 2013, 02:13:49 pm »
Hello Gilberto Ferreira,
Installing your local might help...
Log to your server using a terminal/SSH and paste the following line:
(this is for installing Portuguese + Brasilian along with the dictionaries)
Best,
Marcus
Installing your local might help...
Log to your server using a terminal/SSH and paste the following line:
Code: [Select]
sudo apt-get install language-pack-pt language-support-pt aspell-pt language-pack-br language-support-br aspell-pt-br -y
(this is for installing Portuguese + Brasilian along with the dictionaries)
Best,
Marcus
32
Installation and Upgrades / Re: General error mounting filesystems
« on: May 13, 2013, 10:55:51 pm »
Hello Alex,
According to your screenshot, sudo isn't required since you are already "root"
Can you do the following:
That should purge and reinstall your ssh server - once done you should be able to work from a remote desktop.
Side note
Make sure to add the "./" prefix when executing a script from the directory that you are in
e.g. (when you are in the /etc/init.d/ directory)
good
bad
Best,
Marcus
According to your screenshot, sudo isn't required since you are already "root"
Can you do the following:
Code: [Select]
apt-get remove --purge ssh && apt-get install ssh
That should purge and reinstall your ssh server - once done you should be able to work from a remote desktop.
Side note
Make sure to add the "./" prefix when executing a script from the directory that you are in
e.g. (when you are in the /etc/init.d/ directory)
good
Code: [Select]
./ssh start
bad
Code: [Select]
ssh start
Best,
Marcus
33
Installation and Upgrades / Re: General error mounting filesystems
« on: May 13, 2013, 08:24:14 pm »
Hello alecuba,
> SUDO is an unknow command
Did you typed "SUDO" or "sudo"?
Lower/Upper does matter...
> Zentyal service is not recogniced anymore
Have you tried using the following ?
If not, how did you restart the service ?
> SSH service does not start
Have you tried starting it manually ?
Best,
Marcus
> SUDO is an unknow command
Did you typed "SUDO" or "sudo"?
Lower/Upper does matter...
> Zentyal service is not recogniced anymore
Have you tried using the following ?
Code: [Select]
sudo /etc/init.d/zentyal restart
If not, how did you restart the service ?
> SSH service does not start
Have you tried starting it manually ?
Best,
Marcus
34
Installation and Upgrades / Re: Web Virtual host directory permissions chage on restart
« on: May 12, 2013, 04:32:35 pm »
Hello don,
Installing suPHP could also be an alternate fix...
Best,
Marcus
Installing suPHP could also be an alternate fix...
Best,
Marcus
35
Installation and Upgrades / Re: Zentyal VOIP, no sound
« on: May 12, 2013, 04:27:27 pm »
Hello ohdude,
** The following is based on my knowledge of Asterisk - not on Zentyal VoIP module - Still, it should basically be the same **
It sounds like your firewall is blocking RTP (no pun intended).
Try allowing port range 10000 - 20000 on your firewall.
Explanations
Strictly speaking, this shouldn't be required, but different adapters and such use different ranges. Generally port 10000 is where they start (these are for RTP for the actual voice packets), and you usually don't need more than a handful, but providers often tell you to forward the whole lot to make sure it works.
i.e.
The defaults for the PAP2T are as follows:
SIP Ports - UDP Ports 5060-5061
RTP Ports - UDP Ports 16384-16482
The 10000-20000 number just "covers all the bases".
Please share your feedbacks and results with the community.
Best,
Marcus
** The following is based on my knowledge of Asterisk - not on Zentyal VoIP module - Still, it should basically be the same **
It sounds like your firewall is blocking RTP (no pun intended).
Try allowing port range 10000 - 20000 on your firewall.
Explanations
Strictly speaking, this shouldn't be required, but different adapters and such use different ranges. Generally port 10000 is where they start (these are for RTP for the actual voice packets), and you usually don't need more than a handful, but providers often tell you to forward the whole lot to make sure it works.
i.e.
The defaults for the PAP2T are as follows:
SIP Ports - UDP Ports 5060-5061
RTP Ports - UDP Ports 16384-16482
The 10000-20000 number just "covers all the bases".
Please share your feedbacks and results with the community.
Best,
Marcus
36
Installation and Upgrades / Re: phpMyAdmin installtion OK but problems to access phpMyAdmin
« on: May 08, 2013, 12:49:32 am »
Hello knarf,
Your error 1045 refer to a misconfigured phpMyAdmin.
Did you modified the config.inc.php file?
If not, please check those two lines in it and make sure to set the proper root password in it:
Just in case, restart MySQL:
That should fix it...
Best,
Marcus
Your error 1045 refer to a misconfigured phpMyAdmin.
Did you modified the config.inc.php file?
If not, please check those two lines in it and make sure to set the proper root password in it:
Code: [Select]
$cfg['Servers'][$i]['password'] = 'YOUR ROOT PASSWORD';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
Just in case, restart MySQL:
Code: [Select]
/etc/init.d/mysql restart
That should fix it...
Best,
Marcus
37
Installation and Upgrades / Re: Internal Error
« on: May 07, 2013, 03:00:49 pm »
Hello vStar,
The following isn't a Zentyal specific error. It is a normal behavior for any misconfigured Apache installation.
You'll have to raise the maximum MaxClients limits in /etc/apache2/apache2.conf (I would recommend setting it to something like 250)
If I'm looking at my own Apache configuration, there is 3 "MaxClients" entries. Only 1 is actually used but since you don't seem to know what Apache module that you are using, I would recommend to change ALL of it
Once changed make sure to restart Apache...
Also, while in the configuration of Apache, make sure to enable the "Keep Alive" (if it isn't already enabled). Otherwise a single visitor will fill up your available slots (loading a single page can use more than 10 concurrents Apache requests IF Keep Alive isn't enabled).
You may also post your Apache configuration and I'll take a look at it and give you better, more precise advices.
Best,
Marcus
The following isn't a Zentyal specific error. It is a normal behavior for any misconfigured Apache installation.
Code: [Select]
[Fri Apr 05 09:31:51 2013] [error] server reached MaxClients setting, consider raising the MaxClients setting
You'll have to raise the maximum MaxClients limits in /etc/apache2/apache2.conf (I would recommend setting it to something like 250)
Code: [Select]
sudo nano /etc/apache2/apache2.conf
If I'm looking at my own Apache configuration, there is 3 "MaxClients" entries. Only 1 is actually used but since you don't seem to know what Apache module that you are using, I would recommend to change ALL of it
Once changed make sure to restart Apache...
Also, while in the configuration of Apache, make sure to enable the "Keep Alive" (if it isn't already enabled). Otherwise a single visitor will fill up your available slots (loading a single page can use more than 10 concurrents Apache requests IF Keep Alive isn't enabled).
You may also post your Apache configuration and I'll take a look at it and give you better, more precise advices.
Best,
Marcus
39
Installation and Upgrades / Re: Webserver (www-data) reading samba shares
« on: April 22, 2013, 05:07:45 pm »
Hello acesuares,
You would be better off installing suPHP...
Best,
Marcus
You would be better off installing suPHP...
Best,
Marcus
40
Installation and Upgrades / Re: URL Forwarding
« on: April 22, 2013, 04:55:33 pm »
Hello,
You may also refer to this post regarding Apache mod_proxy:
http://forum.zentyal.org/index.php?topic=3054.0
Best,
Marcus
You may also refer to this post regarding Apache mod_proxy:
http://forum.zentyal.org/index.php?topic=3054.0
Best,
Marcus
41
Installation and Upgrades / Re: Mail for admin account
« on: March 25, 2013, 01:02:42 pm »
Hello grog,
christian is right- Most servers admin panel are doing the same. For example, under cPan*l, sysop won't find any email, hosting or what ever other services that regular users do have on their account.
This is the normal way of doing it since the sysop must be as secure as possible (and having an email, FTP, hosting account other than the bare minimum would be a major security flaw).
People will then tell me that they would like to receive root's emails (that is totally normal and, once again, it is the proper way of administrating a server).
Well, simply set up an email forwarder.
This is how to do it:
1) Open a terminal and log to your server using SSH
2) type this command (replace grog@your-email.com with your email):
You may replicate this command and replace the username "root" with any other system users. i.e. asterisk if you are running an VoIP server.
Best,
Marcus
christian is right- Most servers admin panel are doing the same. For example, under cPan*l, sysop won't find any email, hosting or what ever other services that regular users do have on their account.
This is the normal way of doing it since the sysop must be as secure as possible (and having an email, FTP, hosting account other than the bare minimum would be a major security flaw).
People will then tell me that they would like to receive root's emails (that is totally normal and, once again, it is the proper way of administrating a server).
Well, simply set up an email forwarder.

This is how to do it:
1) Open a terminal and log to your server using SSH
2) type this command (replace grog@your-email.com with your email):
Code: [Select]
sudo echo "grog@your-email.com" > /root/.forward
3) exit and doneYou may replicate this command and replace the username "root" with any other system users. i.e. asterisk if you are running an VoIP server.
Best,
Marcus
42
Installation and Upgrades / Re: Experiences with sssd?
« on: March 25, 2013, 12:46:15 pm »
Hello zentypenguin,
Please excuse my ignorance but... What is a sssd ?
Best,
Marcus
Please excuse my ignorance but... What is a sssd ?
Best,
Marcus
43
French / Re: zentyal3.0-1 et RAID1 + Grub2
« on: March 16, 2013, 04:22:09 pm »
Bonjour chrystophe,
GRUB éprouve parfois des soucis d'installation sur un RAID.
Il est possible de ne pas procéder à son installation lors de l'installation du système.
Pour ce faire, simplement sauter l'étape de l'installation du GRUB, redémarrer en "Rescue mode" et faire l'installation du GRUB manuellement.
Voici un petit tuto (pas testé mais qui semble bien détaillé):
http://opensource-sidh.blogspot.ca/2011/05/install-grub-in-ubuntu-from-server-cd.html
Bonne chance!
Marcus
GRUB éprouve parfois des soucis d'installation sur un RAID.
Il est possible de ne pas procéder à son installation lors de l'installation du système.
Pour ce faire, simplement sauter l'étape de l'installation du GRUB, redémarrer en "Rescue mode" et faire l'installation du GRUB manuellement.
Voici un petit tuto (pas testé mais qui semble bien détaillé):
http://opensource-sidh.blogspot.ca/2011/05/install-grub-in-ubuntu-from-server-cd.html
Bonne chance!
Marcus
44
Installation and Upgrades / Re: Tape Drive
« on: February 02, 2013, 05:12:18 pm »
Hello jdardozzi,
Is there any warning on the boot screen ? Something similar to:
If that is the case, you may add the option nobootwait to your /etc/fstab.
!! Be very careful with the fstab. It may render your system unbootable !!
Best,
Marcus
Quote
[...]this addition hangs the boot process.It is probably trying to mount the drive (waiting for it to be mounted before continuing the boot process).
Is there any warning on the boot screen ? Something similar to:
Quote
The disk drive for /commodore-64-tape-drive is not ready yet or not present
Continue to wait; or Press S to skip mounting or M for manual recovery
If that is the case, you may add the option nobootwait to your /etc/fstab.
!! Be very careful with the fstab. It may render your system unbootable !!
Best,
Marcus
45
Installation and Upgrades / Re: sh: 1: status: not found
« on: January 03, 2013, 07:46:11 pm »
Hello,
Same here - LDAP sync doesn't seem to work...
This is my post regarding my issue:
http://forum.zentyal.org/index.php/topic,13495.0.html
Best,
Marcus
Same here - LDAP sync doesn't seem to work...
This is my post regarding my issue:
http://forum.zentyal.org/index.php/topic,13495.0.html
Best,
Marcus