search for: userid

Displaying 20 results from an estimated 1442 matches for "userid".

2015 Apr 17
2
user authentication issue
...hat's all of the information I've been given, along with the user's UID. Preferring to work at the command line, I've tried the following (from the host running the Samba server): 1. First I checked that the user has an entry in our LDAP server: ldapsearch -h sambahost -x -LLL uid=userid This returns an entry of the following form: dn: uid=userid,ou=people,o=org objectClass: inetOrgPerson objectClass: posixAccount objectClass: sambaSamAccount uid:: c2tkNjg0IA== uidNumber: 1076 homeDirectory:: L2hvbWUvc2tkNjg0IA== loginShell: /bin/bash gidNumber: 1076 sambaLogonTime: 0 sambaLogoff...
2006 Nov 29
2
Trouble using 2 IAX2 DiDs provided by different ITSPs
...the DiD provided by ITSP_B, the other ITSP seems to reject it. For example when I call the ITSP_B DiD, I get the following error message: Nov 29 21:50:17 NOTICE[23106]: chan_iax2.c:7203 socket_read: Host <IP> failed to authenticate as ITSP_A iax.conf ====== [general] register => <my UserID>:<my password>@<ITSP A Server #1 domain> register => <my UserID>:<my password>@<ITSP A Server #2 domain> register => <my UserID>:<my password>@<ITSP B #1 domain> notransfer=yes bindport=4569 bindaddr=0.0.0.0 bandwidth=low disallow=all allow=u...
2012 Aug 02
1
documentation for configuring folder redirection
I believe that once you have roaming profiles configured, all you need to do to configure folder redirection is set some registry keys. I'd like to turn that job over to our Windows sys admin. Can someone provide me with their favorite documentation for configuring folder redirection? Keep in mind I am passing this link along to a Windows sys admin. Our backend is samba 3.6.3 if it
2008 Dec 16
6
logging mechanism in rsync
Hi Friends, Does rsync V3 has the feature for logging the files which have not been transferred? Its already logs the file which have been transfered. Thanks, Jignesh -------------- next part -------------- HTML attachment scrubbed and removed
2007 Sep 03
7
relationing has_many, belongs_to
...f i am relationing fine, because i am having problems,i have 2 models, one for members and other to relate some members to this: class Member < ActiveRecord::Base has_many :matrix, :foreign_key=>:parent end class Matrix < ActiveRecord::Base set_table_name :matrix set_primary_key :userid belongs_to :member, :foreign_key=>:userid acts_as_tree :foreign_key=>:parent end when i try to save a new member it says: undefined method `userid='' for Matrix:Class and i think is because he wants to do find() first, but i dont want it, because i am saving a new. def create...
2015 Apr 20
0
user authentication issue
...on I've been given, along with the user's UID. > Preferring to work at the command line, I've tried the following > (from the host running the Samba server): > > 1. First I checked that the user has an entry in our LDAP server: > > ldapsearch -h sambahost -x -LLL uid=userid > > This returns an entry of the following form: > > dn: uid=userid,ou=people,o=org > objectClass: inetOrgPerson > objectClass: posixAccount > objectClass: sambaSamAccount > uid:: c2tkNjg0IA== > uidNumber: 1076 > homeDirectory:: L2hvbWUvc2tkNjg0IA== > loginShell:...
1998 Jun 26
0
Problem with mapping, userid that gets sent by NT
...eded by killing any samba daemons that are for connections from the host in question. Type 1: <Map Drive> Share: \\samba01\install User: <leave blank> <OK> attempts to connect as 'machinename' attempts to connect as 'loginname' (administrator) Puts up userid/pass dialog User: <anything> Pass: my password Attempts to connect as guest. NEVER sends the userid I entered. Impossible to map drive at this point unless I kill the smbd. Type 2: <Map Drive> Share: \\samba01\install User: myuserid <OK> attempts to connect as '...
2009 May 17
2
Problem with domain part in user_query in dovecot 1.1.14
...listen client: path: /var/spool/postfix/private/auth mode: 432 user: postfix group: postfix dovecot-sql.conf: driver = pgsql connect = host=localhost dbname=hosting_db user=hosting_db password=adsfweae password_query = SELECT NULL AS password, 'Y' as nopassword, userid AS user FROM main.mail_base WHERE userid = '%n' AND password = '%w' and domain='%d' #password_query = SELECT password, userid AS user FROM main.mail_base WHERE user id = '%n' and domain='%d' #user_query = SELECT '/var/mail/vhosts/' || domain || '...
2011 Dec 14
7
Actionmailer woes
hi Guys I have now spent hours on this and turn to you in desperation. I am using Actionmailer to fetch emails, but I need to pass a userid to the receive method, so that the receive method knows what user to pass the email to. I tried: (ATTEMPT 1) class PokeMailer < ActionMailer::Base def receive(email,userid) ... end I then invoke the receipt of email with task = PokeMailer.receive(m.pop,userid) But I get the error '...
2010 Apr 16
4
score counts in an aggregate function
Dear R-Users, I have a big data set "mydata" with repeated observation and some missing values. It looks like the format below: userid sex item score1 score2 1 0 1 1 1 1 0 2 0 1 1 0 3 NA 1 1 0 4 1 0 2 1 1 0 1 2 1 2 NA 1 2 1 3 1 NA 2 1 4 NA 0 3...
2010 May 14
1
Strange behavior when plotting with ggplot2 and lattice
Hi all, I have the following script,which won't plot (tried in RGUI and also in Eclipse StatET): library(ggplot2) # for plotting results userids <- c(1,2,3) for (userid in userids){ qplot(c(1:10), c(1:20)) } print ("end") No plot shows up. If I run the following: library(ggplot2) # for plotting results userids <- c(1,2,3) for (userid in userids){ blabla))) qplot(c(1:10), c(1:20)) } print ("end") which contai...
2006 Mar 24
2
RoR, pg_connections, and pg_users
In a RoR application, is it possible to have individual userids associated with particular sessions employed to establish their related connections to the postgresql DBMS backend and, if so, is this design desireable? What are the implications for performance and future deployment limitations? The idea behind this question is that in our application cert...
2013 Aug 30
0
ddply for comparing simulation results
...wrote: >> >> try the 'data.table package. It gives the answer in less than a second. >> >> > # 1 million leads, half of which were simulated, half of which were not >> > id=1:1000000 >> > isSimulated = c(rep(0,500000), rep(1, 500000)) >> > userId=sample(1:100000, 1000000, replace=T) >> > df_leads=data.frame(id, isSimulated, userId) >> > require(data.table) >> Loading required package: data.table >> data.table 1.8.8 For help type: help("data.table") >> > system.time({ >> + df_leads...
2015 Apr 17
1
userdb username changed
...seems that despite the "username changed" line, auth returns the original username: Apr 17 09:27:34 imap21 dovecot: quota-status: Debug: Loading modules from directory: /usr/lib64/dovecot (...) Apr 17 09:27:34 imap21 dovecot: auth-worker(27661): Debug: sql(ppp at example.net): SELECT at.userid AS user, at.home AS home, at.uid AS uid, at.gid AS gid, concat('*:storage=', at.quotabytes, 'b:messages=', at.quotamessages) AS quota_rule FROM auth at INNER JOIN mailaddr mt ON at.userid = mt.userid WHERE mt.mailaddress = 'ppp at example.net' OR at.userid = 'ppp at exam...
2004 Aug 09
0
ssh remote command fuser problem
...user to work (although other commands ok) I've got ssh and sftp and scp finally to work, but I am left with one problem, I can use ssh from sol9 to sol8 to start a remote session. I can ssh from sol9 to sol8 to execute some remote commands, but not fuser i.e. all from the solaris 9 system ssh userid at anothersol9 ls works fine ssh userid at anothersol9 fuser afile works fine ssh userid at sol8 ls works fine ssh userid at sol8 fuser afile fails, I get select: Bad file number Having seen this type of message before when it was to do with paths, I have tried the following... created a...
2004 Apr 14
0
Authentication problem using userid@mydomain.com format
...Windows XP Pro image is copied onto the machine, then after a reboot the local administrator is autologged on and a drive is mapped from the Samba server using Active Directory domain credentials. At this point the new machine hasn't been added to AD yet. The credentials are specified in userid@mydomain.com format, and Samba is failing to separate the userid from the domain so the connection is made anonymously (I have "guest ok = Yes" set for the share). I've manually tested this and have found the problem only exists with this specific situation: - PC not added to AD...
2007 Oct 12
2
Perfomance tuning for NIS client
Hi, I have both linux and solaris NIS client against a Solaris NIS Server, but my linux box are shamefully slow compare to solaris some sample: on Solaris 5.8: # ypwhich transporter02.domain.com # time id userid uid=36923(userid) gid=36923(u_036923) real 0.0 user 0.0 sys 0.0 on Linux: [root at linux]# ypwhich transporter02.domain.com [root at amsdc2-n-s04taw root]# time id userid uid=36923(userid) gid=36923(u_036923) groups=36923(u_036923) real 0m10.509s user 0m0.030s sys...
2011 May 08
2
help with mysql and R: partitioning by quintile
Hi, I have a mysql table with fields userid,track,frequency e.g u1,1,10 u1,2,100 u1,3,110 u1,4,200 u1,5,120 u1,6,130 . u2,1,23 . . where "frequency" is the number of times a music track is played by a "userid" I need to turn my 'frequency' table into a rating table (it's for a recommender system). So, for eac...
2009 Mar 13
4
running yum from userid
I added via visudo my userid for authorization of me ALL(ALL) NOPASSWD: ALL and I still cannot run yum as me. Is this just not possible?
2010 Jul 20
1
Error using sqldf
Hi, I am running a query using sqldf() [package : sqldf]. The query is:- userid <- 5 taskid <- 5 tab1 <- fn$sqldf("SELECT tobiiEvents.data1, tobiiEvents.data2, events.`timestamp` as tobiiTime FROM tobiiEvents INNER JOIN events ON events.eventid = tobiiEvents.eventid WHERE tobiiEvents.subtype = 'MOUSE' AND tobiiEvents.userid = 5 AND tobiiEvents.taskid =...