Displaying 2 results from an estimated 2 matches for "terminc".
Did you mean:
termino
2002 Feb 21
1
Authenticaton problems using winbindd
...time = 15
winbind enum users = yes
smb.conf also includes the usually encrypted passwords. But is "server auth
type" suppost to be "server" or "domain"
I also install the *.so files compiled with winbind and edited the
pam.d/login file to allow authentication for termincal logons:
auth required /lib/security/pam_securetty.so
auth required /lib/security/pam_nologin.so
auth sufficient /lib/security/pam_winbind.so
auth required /lib/security/pam_pwdb.so use_first_pass shadow
nullok
And yes, I edited the nsswitch.conf file.
But when I am...
2012 Apr 02
10
Pessimistic locking locks the entire table?
...end
For each Foo model, I have an UpdateLockForFoo. This "lock" needs to
be acquired before doing any changes to Foo.
I believe it works, except that my entire UpdateLockForFoo table is
blocked during the sleep. If I open two terminals and do:
1st terminal:
f = Foo.find(1)
f.test
2nd termincal:
f = Foo.find(2)
f.test
The 2nd terminal waits 30s before doing what it has to do. My
understanding was that :lock => true only locks a specific record, but
it seems it is not the case and it locks the entire table.
Do you know?
Please note: it might not look like a good idea to have this s...