search for: group_name

Displaying 20 results from an estimated 49 matches for "group_name".

2006 Feb 28
2
Most Popular Searches
Hi, I have an index where each document contains an untokenized ''url'' field. I would like to query the index for the most popular urls. In SQL I would do this via a Group By clause. Is there anything in Ferret that will do something similar? I found this discussion that proposed a solution involving TermEnums:
2002 Jun 05
1
using "@group_name" in smb.conf
Hi all, I need to give a group of users access to a file share that I am sharing via samba. In smb.conf I am using something similar to; [accts] comment = Accounts Dept Share path = /usr/local/share/accounts valid users = @accounts public = no writable = yes printable = no create mask = 0765 The valid users line says who can access this share: "@accounts". I
2024 Feb 23
2
Samba share and groups permissions
Thanks Rowland & Miguel, Sorry, I didn't know setting in share overrides setting in global. So I've in the global section "vfs objects = recycle acl_xattr", but it doesn't work either. getent group <GROUP_NAME> command returns the group name correctly (DOMAIN\group_name:x:10006:). Nicolas Le 23/02/2024 ? 10:23, Rowland Penny via samba a ?crit?: > On Fri, 23 Feb 2024 08:13:08 +0100 > Nicolas Boiss? via samba <samba at lists.samba.org> wrote: > >> Hello, >> >> I have...
2009 Aug 03
2
Scale set of 0 values returns NAN??
...structed. (That's a very "Good Thing") So, on to the question... I'm scaling data based on groups. I have it working well in a nice loop. (This WORKS, but if someone has a faster/cleaner way, I'd be curious.) #group-wide normailzation groups <- unique(rawdata$group) group_names = grep('norm_',names(rawdata)) for(group in groups){ for(name in group_names){ rawdata[rawdata$code==group, name] <- c(scale(rawdata[rawdata$code==group, name])) } } My problem is that if the particular list of data I'm scoring is all 0, then scale returns NaN...
2007 May 15
1
Share's accès : how to?
I have configure this folder share in samba : [share_name] Path = /home/folder With this acc?s : share root:group_name 2770 In my group ?group_name?, I?ve user1, user2, user3. Therefore the 3 users have complete acces in this folder. But in this one I have to add other folder shared : - /home/folder/ufold1 - /home/folder/ufold2 But I want the user1 have only an acces in the ufold1 and not the fold2 (and...
2012 Mar 19
0
Reshape data frame with dcast and melt
...my real data sets (about 200.000 to 300.000 rows) failed. What happens is set all values for X, Y and Z were set to 1. The structure of my real data looks exactly the same as the small example below. After working on it for 2 days I think the problem is that the "primary key" (test_name, group_name and id) is only unique in the wide form. After applying the reshape_long function the primary key is not longer unique. I was wondering if anyone can tell me whether the step from d1 -> reshape_wide -> d2 can work at all because of the non uniqueness of d1. library(reshape2) library(taR...
2024 Feb 23
1
Samba share and groups permissions
...to the share: "Access Denied". > The only way to access it is to authorize the "Domain Users" group or > users instead of groups. > > On servers, groups are recognized (wbinfo -g), as is user group > membership (wbinfo -r). Yes, but does 'getent group <GROUP_NAME>' show anything ? 'wbinfo' just shows what is in AD, it is meaningless to Unix. > > Below is my smb.conf file (Samba 4.19.4). > > Can you tell me what's wrong? Thanks a lot! > > ========= > > [global] > > workgroup = MYDOM > realm = MYDOM.FR...
2007 Jul 20
0
createlocalgroup: could not allocate a RID
Hello everybody. I have configured a linux box with samba 3.0.25b It's joined to a windows nt4 domain. It's running winbindd. Now I would like to create a local group with 'net sam createlocalgroup group_name' and adding members from the windows nt4 domain. I need this local group so I can assign permission to file/directories. This is my smb.conf: [global] workgroup = nt4domain server string = Samba on Slackware Linux idmap uid = 10000-100000000 idmap gid = 10000-100000000 idmap alloc...
2013 May 06
0
net rpc group add & by/pass the group scope value
...value when creating a group in AD by using the net tools? I can delete an AD group, add/remove members from a group but I can't create a group. I reckon it's because of the group scope value (even Power Shell/New-ADGroup prompts for it) $ net -U $ADMIN_USER -S $DC_ADDRESS rpc group add $GROUP_NAME -c $OU Error message: Failed to add group $GROUP_NAME with error: Access is denied. Powershell command (that works fine with the same credentials): > New-ADGroup -Name $GROUP_NAME " -groupScope global -Path $OU AD is win2k8 server, domain functional level is win2k3 Thanks, Abraham A...
2005 Sep 28
2
[ win32utils-Bugs-2532 ] Etc::Admin.configure_group problem
...mary: Etc::Admin.configure_group problem Initial Comment: Ruby 1.8.2 Windows XP Pro I can''t seem to configure an existing group with more than four users. As a test, I added users "user0" to "user99". Then I ran the following snippet: tc::Admin.configure_group( :group_name => "group0", :description => "Test group - delete this group", :local? => true, :users => %w/user7 user1 user2 user99 user0/ ) This fails. However, if I reduce the number of users to 4 or less, regardless of which users 0 through 99 I use, it works. Dan (...
2019 Oct 16
2
Samba with Winbind Doesn't See New AD Groups
On 16/10/2019 19:37, Ralph Boehme via samba wrote: > On 10/16/19 8:10 PM, Bill Riner wrote: >> I am logged in as root to one of the clustered Samba servers. Normally when a group is added to AD, it shows up using >> >> # getent -s winbind group {group_name} >> >> In this case, the group Drug_Discovery_Team_Meetings exists in AD, but I don?t see it using getent. > re-login that user over SMB. > > > -slow > I do not think that will help, root may be able to login over SMB and should be able to use getent to display the group...
2006 Feb 12
6
habtm doesn''t save old IDs
...User has_and_belongs_to_many :groups and each Group has_and_belongs_to_many :users. When I add a user, I want to apply a bunch of groups (like tags) to the user (manually, without acts_as_taggable). Here''s User#create: @user = User.new(params[:user]) @user.groups = params[:user][:group_names].split(/\s+/).collect do |group| Group.find(:first, :conditions => ["name = ?", group]) || Group.new({:name => group}) end @user.save Groups that have not yet been created are created and their associations to the user are saved in groups_users. Groups that al...
2008 Sep 23
2
Shell script to list group members
I have several shell scripts to manage user accounts on a server. I've been using a file with the usernames of peoples accounts that any script needs to process. I had a thought that I can and should be setting up groups and adding user accounts to those groups so I don't have to maintain a set of files with the user accounts. So essentially, I am looking for a (simple) shell
2001 Nov 06
0
setting shares
I've got a list of global shares that are up and working right now. I have restricted access by using the read list = @group_name and write list = @group_name Using this, only members of the group can open the folder, and they can read and write to it. However, when a user logs in that is not a member of the group, he can still the that the folder exists. I don't want this. How can I restrict who can actually see t...
2002 Dec 05
1
winbind + groups hogs CPU
I've been using winbind successfully for awhile now for user info (nothing in /etc/passwd), but today I tried to use it to pull group info, so I updated /etc/nsswitch.conf (RH 7.3) and then tried to add: valid users = @DOMAIN+group_name and now whenever I click on any folder (share) to open the cpu util goes up, and the connection hangs for awhile, and then eventually it times-out on the client side, and the server logs initgroup errors. Anyone seen this? It is connecting to a rather large AD forest, and I'm told there are...
2006 Jul 14
1
Samba 3.0.23 winbind use default domain = yes behaviour
Hello list, I encountered a problem in Samba 3.0.23 regarding the winbind use default domain = yes behaviour. It only works for the users an NOT anymore for the Group. So this make getent group to show NETBIOSDOMAINNAME/group which course mail squid configuration to fail. My squid configuration allowed access based on the AD groups, which are provided by Winbindd. Tested distribution: SuSE
2006 Aug 08
1
need to remove domain from Winbind group entries
Hi, I have server setup as BDC on a subnet different from the PDC. The BDC can auth fine against the PDC and they can browse each other just fine. The problem is on Unix side of the BDC. When I do a 'wbinfo -g' or 'getent group' each group fit the format 'DOMAIN\group_name' and the PDC does not. This is causing problems when synchronizing as the group perm is being set by name, not uid. I have configured both the PDC and BDC with the following entries: winbind trusted domains only = yes winbind use default domain = yes obey pam restrictions = Yes Yet the doma...
2007 Jul 31
1
check all - check box problem
...heck boxes. <form name="czar" action=''<%= url_for(:action => "list_supplier") %>'' method=''POST''> <% i = 0 %> <% @hotels.each do |hotel| %> <%= check_box(''hotel_'', '''', {}, hotel.group_name+i.to_s, '''') %></td> <% i = i + 1 %> <% end %> <input type=''submit'' value=''want to approve''/> thanks in advance, Czar --~--~---------~--~----~------------~-------~--~----~ You received this message because you are...
2005 Oct 03
1
group name in valid user
Hi, i've encountered a problem configuring the smb.conf... i must grant access i a share dir on a hp-ux server (11.11 with official HP samba 3.0.7 depot... maybe patch level to 3.0.14) i've write valid user = @group_name in [share_name] session of smb.conf We have just implemented the integration with the windows 2003 active directory domain for the validation using kerberos protocol... all work fine, but a group name (due to policy) is over 32 char... and, i've noticed that if i specify a group name length m...
2019 Oct 16
8
Samba with Winbind Doesn't See New AD Groups
We have an issue where new groups that are created in Active Directory are not visible in Samba. Groups that were created more than about one month ago are visible. We?re using clustered Sernet 4.3.9 with winbind (with ID mapping) and CTDB. NSCD is not running. We?ve tried restarting Samba, but still have the issue. The OS is RHEL 6.7 and the kernel is 2.6.32.