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.


Topics - tuxmania

Pages: [1]
1
I have a problem when i try to join a Zentyal 3 server to an existing domain. The join will not go through successfully and DNS wont start after this error because it sources a file not created yet, "/etc/bind/named.conf.local:8: open: /var/lib/samba/private/named.conf: file not found"



 ERROR(runtime): uncaught exception - (-1073741807, 'NT_STATUS_END_OF_FILE')
   File "/usr/lib/python2.7/dist-packages/samba/netcmd/__init__.py", line 175, in _run
     return self.run(*args, **kwargs)
   File "/usr/lib/python2.7/dist-packages/samba/netcmd/domain.py", line 552, in run
     machinepass=machinepass, use_ntvfs=use_ntvfs, dns_backend=dns_backend)
   File "/usr/lib/python2.7/dist-packages/samba/join.py", line 1104, in join_DC
     ctx.do_join()
   File "/usr/lib/python2.7/dist-packages/samba/join.py", line 1014, in do_join
     ctx.join_finalise()
   File "/usr/lib/python2.7/dist-packages/samba/join.py", line 812, in join_finalise
     ctx.send_DsReplicaUpdateRefs(nc)
   File "/usr/lib/python2.7/dist-packages/samba/join.py", line 797, in send_DsReplicaUpdateRefs
     ctx.drsuapi.DsReplicaUpdateRefs(ctx.drsuapi_handle, 1, r)
2013/01/16 08:49:45 INFO> Base.pm:229 EBox::Module::Base::save - Restarting service for module: dns

2013/01/16 13:53:29 ERROR> Run.pm:139 EBox::CGI::Run::__ANON__ - When running EBox::CGI::Samba::Composite::General: Can't locate object method "throw" via package "APR::Error" at /usr/share/perl5/EBox/CGI/Base.pm line 374.
2013/01/16 13:54:20 INFO> GlobalImpl.pm:605 EBox::GlobalImpl::saveAllModules - Saving config and restarting services: firewall dns
2013/01/16 13:54:20 INFO> Base.pm:229 EBox::Module::Base::save - Restarting service for module: dns
2013/01/16 13:54:23 INFO> GlobalImpl.pm:689 EBox::GlobalImpl::saveAllModules - Changes saved successfully

2
Yesterday i tried installing Zentyal on two different servers. Both installs failed when setting the disks up. Nothing fancy at all, four disks in SATA mode. Also tried doing raid and setting legacy mode ide in the bios. One of the servers had Ubuntu 12.04 on it before i tried to install Zentyal 3.0-1.

3
Installation and Upgrades / Migrate to Zentyal from Resara.
« on: August 06, 2012, 08:37:12 am »
Hello,

As Resara has closed down its operation there is a number of customers like us that need to migrate to something else. We will probably migrate once Zentyal 3 is released, but im thinking of starting earlier with a shadow setup on the side of the current Resara enviroment. Has anyone done a migration, how did it go, what are the pitfalls?

Our enviroment is about 2000+ computers, 15 buildings and 2600 users. Clients mostly laptops.

4
I have a Zentyal 2.0 running on ubuntu 10.04 as a file server. I intend to connect various printers to it for sharing through samba. While it seems to work i have found one issue.

Printers added in the Cups interface wont be visible in the Zentyal management interface until a change occurs in the users and groups module. The only way i have found to make a newly added printer to show up is to change an access right. In /Users and Groups/Groups/, klick on a group and make an alteration of a right and then klick Change. After making this change the added printers show up.

Am i missing something here or does it work as intended?

Modules versions:

ii  ebox-antivirus                       2.0                                     Zentyal - Antivirus
ii  ebox-ca                              2.0                                     Zentyal - Certification Authority
ii  ebox-ebackup                         2.0                                     Zentyal - Backup
ii  ebox-firewall                        2.0                                     Zentyal - Firewall
ii  ebox-monitor                         2.0                                     Zentyal - Monitor
ii  ebox-network                         2.0                                     Zentyal - Network Configuration
ii  ebox-objects                         2.0                                     Zentyal - Network Objects
ii  ebox-office                          2.0                                     Zentyal - Office Suite
ii  ebox-openvpn                         2.0                                     Zentyal - VPN Service
ii  ebox-printers                        2.0                                     Zentyal - Printer Sharing
ii  ebox-remoteservices                  2.0.2                                   Zentyal - Zentyal Cloud Client
ii  ebox-samba                           2.0                                     Zentyal - File Sharing
ii  ebox-services                        2.0                                     Zentyal - Network Services
ii  ebox-software                        2.0                                     Zentyal - Software Management
ii  ebox-usersandgroups                  2.0.2                                   Zentyal - Users and Groups





5
Installation and Upgrades / [SOLVED] Cannot login to cups
« on: September 15, 2010, 10:30:50 am »
I have big trouble adding printers to cups as i only get additional login windows. No matter what login i use i cant manage cups, even as root. Everything else works fine.



6
Installation and Upgrades / Adding many users in bulk to multiple groups.
« on: September 09, 2010, 09:13:28 am »
Hi,

Im tinkering a bit with Zentyal in advance of our deployment. I managed to add users to more than one group and thought i would toss it here if someone would ever want to do that:

The script is called groupadd.pl but you can name it anything.pl I had trouble running it from /root because of permissions but it works if i put it in my /home/adminuser dir and run it with sudo.


#!/usr/bin/perl

use strict;
use warnings;

use EBox;
use EBox::Global;

EBox::init();
my $usersModule = EBox::Global->modInstance('users');

my @users = ();
open(my $USERS,"users") or die "Error opening 'users' file: $!";
while(my $line = <$USERS>) {
   chomp ($line);
   my $user;
   my ($username,$givenname,$surname,$password,$group1, $group2) = split(',',$line);
   $user->{'user'} = $username;
   $user->{'givenname'} = $givenname;
   $user->{'surname'} = $surname;
   $user->{'password'} = $password;
print "\n Creating user: $username $givenname $surname \n";
   $usersModule->addUser($user,0);
   $usersModule->addUserToGroup($username, $group1);
   $usersModule->addUserToGroup($username, $group2);
}
close($USERS);

1;


The script uses a csv formatted file that has to be in the same path and be called users This is its format:

Username1,Firstname1,Lastname1,Password1, Firstgroup1, Secondgroup1
Username2,Firstname2,Lastname2,Password2, Firstgroup2, Secondgroup2

etc...





7
Hi,

Im currently translating eBox through Pootle. For those that doesnt know its a very easy web GUI for translating.

http://translate.ebox-platform.com

I need help proofreading and translating so if you got some spare time please come and join me. Its very easy getting started.  :)

Thanks !

Pages: [1]