search for: listmembers

Displaying 20 results from an estimated 183 matches for "listmembers".

2019 May 27
4
samba-tool group removemembers, not working
Because of other issues using ADUC, I tried to remove a domain member using: > samba-tool group removemembers "Domain Computers" MARKA\$ Removed members from group Domain Computers As shown, it say it "Removed members", but ... > samba-tool group listmembers "Domain Computers" : LABRAT$ : OHPRSSTORAGE$ MARKA$ : COMMON$ : listmembers still shows the computer as a member of "Domain Computers". What's up with this? Samba Version 4.8.2 THX --Mark
2017 Oct 30
5
Listing AD group members
Hi, Ive been trying to work out how to get wbinfo to list members of a specific AD group, rather than list groups a specific user is in. So far I have had no luck... In fact im not sure its possible with wbinfo. Is there another tool which could do this? James -- Sent using Dekko from my Ubuntu device
2019 May 30
2
samba-tool group removemembers, not working
Actually, I do/did leave the domain in the normal Windows way. But the (former) domain member computer still always show both in ADUC and samba-tool group listmembers "Domain Computers". So, I normally do a 2nd step by deleting the computer with ADUC. After doing so the computer no longer shows with samba-tool group listmembers "Domain Computers". I was simply looking for a way to do this 2nd step with samba-tool if ADUC happens to not be...
2016 Mar 18
5
classicupgrade migration issues
...==== # samba-tool user list Administrator dns-kwad usernameone usernametwo usernamethree krbtgt usernamefour Guest usernamefive root ========================================== However the users and computers are listed as group members: ========================================== # samba-tool group listmembers 'Domain Users' |wc -l 270 # samba-tool group listmembers 'Domain Computers' |wc -l 35 ========================================== It's important the I keep the same SIDs, secrets, etc. when moving to the new AD structure from the old PDC structure. But either I'm doing somet...
2017 Dec 02
2
idamp ad/rid
Found it! :) I thought in make a script more or less that way. #!/bin/bash # GROUP=ADM GUID=10000 # Domain Users UID=10000 # get the next ID ? for USER in $(samba-tool group listmembers $GROUP) do samba-tool user edit $USER -H ldap://samdom.example.com \ -U administrato --nis-domain=samdom \ --unix-home=/home/$USER \ --uid-number=${NEXTID} \ --login-shell=/sbin/nologin \ --gid-number=$GUID done Of course that script is very simple, but is a beginning. :)...
2017 Dec 02
2
idamp ad/rid
On Sat, 2 Dec 2017 10:21:07 -0200 Elias Pereira <empbilly at gmail.com> wrote: > Correcting! :) > > #!/bin/bash > # > GROUP=ADM > GUID=10000 # Domain Users > UID=10000 # get the next ID ? > > for USER in $(samba-tool group listmembers $GROUP) > do > samba-tool user edit $USER --nis-domain=samdom \ > --unix-home=/home/$USER \ > --uid-number=${NEXTID} \ > --login-shell=/sbin/nologin \ > --gid-number=$GUID > done > > > Of course that script is very simple, but is a beginning. :) &...
2014 Oct 15
1
Cannot add user to group in Samba AD DC
...in Samba AD DC and add user 'cas' and group 'aaa': # samba-tool user list | grep cas cas # samba-tool group list | grep aaa aaa Now I try to add user 'cas' to group 'aaa': # samba-tool group addmembers aaa cas -Uadministrator Added members to group aaa But listmembers does not show this user in group: # samba-tool group listmembers aaa -Uadministrator # There is no memberOf fields in sam.ldb for user 'cas': # LDB_MODULES_PATH=/usr/lib64/samba/ldb ldbsearch \ > -H /var/lib/samba/private/sam.ldb '(cn=cas)' \ > memberOf | grep ^memberOf...
2017 Oct 30
4
Listing AD group members
...come up with that option from Google, but wondered if it was >>> only suitable if Samba was the AD controller, since that was always >>> the context it was used in. >>> >>> This is the result I get. >>> >>> root at hostname:~# samba-tool group listmembers groupname >>> ERROR(ldb): Failed to list members of "groupname" group - >>> ldb_search: invalid basedn '(null)' root at hostname:~# >> >> Try something like this: >> >> root at devstation:~# samba-tool group listmembers Unix\ Admins -H l...
2006 Nov 17
3
Mayday ! Needing urgent help about writing results to a file
Hey listmembers, I am desperately trying to write a data frame to a file. Not in CSV, but as they "appear" on the screen (nice, easy to read tables). I've read that the sink function is the way to go. I have tried the following code inside a function. sink("ABC.txt") MyFrameA MyFrameB si...
2017 Oct 30
1
Listing AD group members
...e: > >> I did come up with that option from Google, but wondered if it was >> only suitable if Samba was the AD controller, since that was always >> the context it was used in. >> >> This is the result I get. >> >> root at hostname:~# samba-tool group listmembers groupname >> ERROR(ldb): Failed to list members of "groupname" group - >> ldb_search: invalid basedn '(null)' root at hostname:~# > > Try something like this: > > root at devstation:~# samba-tool group listmembers Unix\ Admins -H ldap://dc3 -d0 > rowla...
2008 Mar 06
2
Logging Options
Dear Listmembers, I tried to figure out how to get statistics not only about the amount of mails which where sent from / to my mailusers, but also about the size in byte (e.g. to compare with other traffic stats) for each of my users. postfix shows me the size of sent mails per user, but afaik I cannot get the...
2006 May 29
2
line over multiplot
Dear Listmembers, I do have a multiplot with 1 row and 4 columns (4 scatter plots with same x- and y-axe plotted in one row). I would like to draw a horizontal line across the whole multiplot at a certain y-value. Unfortunately the normal abline command stops between the plot. I hope my problem is clear and th...
2005 Aug 15
2
warning: dovecot list is being harvested
Just a warning to dovecot listmembers. The list is being harvested. test3943395 is a unique address I created only for communication to the dovecot list. The following spam came from: Received: from dial-dynamic-62-69-52-187.surfdial.murphx.net (dial-dynamic-62-69-52-187.surfdial.murphx.net [62.69.52.187]) by sasami.anime....
2017 Dec 02
1
idamp ad/rid
....com> wrote: > > > > > Correcting! :) > > > > > > #!/bin/bash > > > # > > > GROUP=ADM > > > GUID=10000 # Domain Users > > > UID=10000 # get the next ID ? > > > > > > for USER in $(samba-tool group listmembers $GROUP) > > > do > > > samba-tool user edit $USER --nis-domain=samdom \ > > > --unix-home=/home/$USER \ > > > --uid-number=${NEXTID} \ > > > --login-shell=/sbin/nologin \ > > > --gid-number=$GUID > > > done > >...
2019 May 28
2
samba-tool group removemembers, not working
...ed to remove a domain member using: > > > >> samba-tool group removemembers "Domain Computers" MARKA\$ > > Removed members from group Domain Computers > > > > As shown, it say it "Removed members", but ... > > > >> samba-tool group listmembers "Domain Computers" > > : > > LABRAT$ > > : > > OHPRSSTORAGE$ > > MARKA$ > > : > > COMMON$ > > : > > > > listmembers still shows the computer as a member of "Domain Computers". What's up with this? > > "Do...
2007 Jul 25
3
Asterisk 1.4.9.tar.gz download fails
Hello Fellow Asterisk Mailing ListMembers, When I tried to download the latest version of Asterisk this is what I get: http://ftp.digium.com/pub/asterisk/releases/asterisk-1.4.0.tar.gz Opening fileinfo database failed http://ftp.digium.com/pub/asterisk/releases/asterisk-1.4.0.tar.gz Opening fileinfo database failed Where are all the la...
2007 Sep 04
2
Table and ftable
Dear listmembers, I have a little question: I have my data organized as follow sic level area a 211 2.4 b 311 2.3 b 322 0.2 b 322 0.5 c 100 3.0 c 100 1.5 c 242 1.5 d 222 0.2 where levels and sics are factors. I'm trying to obtain a matrix like this: l...
2007 Feb 13
2
Problem with authentification Samba 3.0.24
Dear listmembers, a few weeks ago i've installed a server based on openSUSE 10.0 and Samba 3.0.20 in addition to two existing Windows 2003 servers. My aim is to replace the Windows servers in medium term. The Samba server uses Kerberos v5 to authentificate the users against the W2003-Server. The W2003-Server...
2007 Sep 24
2
Performance problems to fill up a dataframe
Dear Listmembers, I'm trying to fill up a dataframe depending on an arbitrary list of references: Here is my code, which works: dat <- data.frame(c(60001,60001,60050,60050,60050),c(27,129,618,27,1579)) LR <- sort(unique(dat[,1])) LC <- sort(unique(dat[,2])) m <- as.data.frame(matrix(data=NA, nro...
2018 Jun 06
2
Domain Member Computer not showing in ADUC
I am running Samba 4.4.16 on Slackware64 14.2. I have a domain member Windows 7 workstation. I upgraded the hardware on this computer a couple of weeks ago. I deleted the computer from the domain, the re-joined after finishing the upgrade. This computer show in the list with 'samba-tool group listmembers "Domain Computers"', but does not show up in ADUC > Computers. I've removed and re-joined the domain, but that didn't fix the problem. Can anyone tell me why, or where to look? THX --Mark