su failure


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users su failure
# 1  
Old 09-18-2009
Question su failure

Usually when su rejects an attempt to switch user it responds with "Sorry" but with a certain username on some unix servers the response is "Killed". I'm guessing the su accepted the username/password but refused to spawn child shell with the specified username. What's causing this and what has to be done to remediate it so the process is not killed?
# 2  
Old 09-18-2009
What's going wrong of course depends a lot on what it's trying to do. Can the user login -- is it just su that breaks it?
# 3  
Old 09-18-2009
I'm logged into the host using my personal credentials they su to a production username.
Here is the entire exchange:

~ $ su - produser
Enter your LAN Password:
<username produser entered>
Killed
~ $

If in another host under my personal credentials ssh into the other host is basically the same.
Here is the exchange

$ ssh produser@host
Enter your LAN Password:
<username produser entered>
Last login: Fri Sep 18 13:13:05 2009 from hostother
/bin/ksh: Not ownerConnection to host closed.

Last edited by twk; 09-18-2009 at 02:21 PM..
# 4  
Old 09-18-2009
Hmm. The "Not owner" message makes me think that the SSH server couldn't change the ownership of the pseudo-terminal to be the name you specified. Usually that means the user doesn't exist or the user id numbers assigned to the user is outside the allowable range of values.

Check the stats for that user and look for anything unusual. Compare the entry to another username that works fine.
# 5  
Old 09-18-2009
Thanks for reply but, unfortunately, I don't know where to go to get the info you mention for me to check.
# 6  
Old 09-18-2009
Quote:
Originally Posted by twk
Thanks for reply but, unfortunately, I don't know where to go to get the info you mention for me to check.
There is a file called "/etc/passwd", where the user should have a corresponding line. Depending on the systems OS it should look like (or very similar to) this:

Code:
produser:x:1000:1000:Production User:/home/produser:/bin/ksh

Depending on your systems OS there might be several other files and/or commands outputs which might shed some light on this.

In case it is an AIX system: the users corresponding stanza in /etc/security/passwd if there is one and the output of "lsuser produser" issued as root.

To know what system you are on (and which OS you want to connect to) wouldn't hurt either. Also interesting would be the type of authentication you are using: local passwords, kerberos, NIS, NISplus, LDAP, other directory services?

Bottom line: describe your system better and help us to help you.

bakunin
# 7  
Old 09-18-2009
If he doesn't know where to get the information, he also won't have the authority to fix it. So it's probably moot. Time for him to call his sys admin support center.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

boot up failure unix sco after power failure

hi power went out. next day unix sco wont boot up error code 303. any help appreciated as we are clueless. (11 Replies)
Discussion started by: fredthayer
11 Replies

2. Red Hat

NT_STATUS_LOGON FAILURE

I am configuring Samba on one of my vmware.when i put smbclient -L local its showing error message : NT_STATUS_LOGON failure.I found that when i remove "Encrypted password entry from smb.conf" it works. pls help me ---------- Post updated at 08:39 PM ---------- Previous update was at 07:11 PM... (0 Replies)
Discussion started by: Vaibhav.T
0 Replies

3. UNIX for Advanced & Expert Users

mount failure

i am tryin to mount my shared folder on the server, I used a command suggested to me, but it also fails, any suggestions would be thankful saman@saman-G41MT-ES2L:~$ sudo mount -t cifs //safe/tabatabaian_s -o username="myuser",password="mypass" /mnt/share mount: wrong fs type, bad option, bad... (1 Reply)
Discussion started by: dr_mabuse
1 Replies

4. Programming

pthread_cancel failure

I'm running a simple web server and seem to be having a problem canceling sessions. When a new request is received I start a thread to handle that session's requests. Since I want to keep the pipe open for a long time - 10 minutes or maybe 2 hours - I also have a session manager that... (4 Replies)
Discussion started by: John S.
4 Replies

5. Shell Programming and Scripting

SFTP Failure

Hi , I need to write a IF condition to know if a SFTP file transfer is successful or not and send email if its failed. `sftp username@servername <<comm1 cd /directory put filename comm1 bye` I use above commands for my connections. So please help me to write a IF statement. ... (0 Replies)
Discussion started by: krishna87
0 Replies

6. UNIX for Advanced & Expert Users

kernel failure

hi, i´ve been the last 48 hours with this issue, this is my last resort.... after clone another system to a new one with lvm, the last step is mkinitrd. i execute it and it finish, but some errors are sent to stderrr. /sbin/mkinitrd: line380: gawk: command not found Traceback (most... (2 Replies)
Discussion started by: pabloli150
2 Replies

7. Linux

Boot failure

Hi all I used a dual boot operating system and it works fine for me. Now , i install a Ati radeon 9250 Agp card on my system and this results in boot failure of fedora 6. The graphics card is working fine with windows XP , i.e i have no compatibility issues.The system also refuses to boot when i... (2 Replies)
Discussion started by: joshighanshyam
2 Replies

8. UNIX for Advanced & Expert Users

subsystem failure

aix 4.3 I get the following error from the errpt log BD797922 0306170008 P H enclosure0 SUBSYSTEM FAILURE I'm not clear on this kind of error. It never happened to me. What do this errors mean, and how do I clear or solve them? Any help is appreciated. (2 Replies)
Discussion started by: andwhat
2 Replies

9. UNIX for Advanced & Expert Users

Bind failure

Hi all, I am using Perl program to do socket communication. My application has to use port 40001 this is a condition I can't change the port. The execution of this script always gave an error 'Bind failure port already in use' netstat execution gives below line: udp 0 0 ... (5 Replies)
Discussion started by: zing_foru
5 Replies

10. Programming

ld failure

Hi, I am using gmake to compile a c program with a makefile. The make file runs ld. I get the following error jsh1035c:/users/egate453/admegate/kapil/samples $ gmake -e -f GNUmakefile queue_c gmake -f ./GNUmakefile queue_c in_objdir=1 build_root=/users/egate453/admegate/kapil/samples... (2 Replies)
Discussion started by: handak9
2 Replies
Login or Register to Ask a Question