- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Error: Unauthorized Login
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-20-2003 02:02 PM
тАО05-20-2003 02:02 PM
Error: Unauthorized Login
Anyone know what to do with this? I try either direct login, su from a standard user account or su from root, ALL get the same message:
unauthorized login
Killed
It seems to start ok, shows the message of the day, then a copyright, but then bombs out with the above error. I thought it might be something in the /etc/profile, but regardless of what changes I make to that file, this still occurs. Anyone?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-20-2003 02:17 PM
тАО05-20-2003 02:17 PM
Re: Error: Unauthorized Login
Is your problem limited to non-system accounts other than root, daemon, lp, etc? Using NIS?
You can verify your /etc/passwd file (* if not trusted *) with 'pwck'. Use 'grpck' for /etc/group.
It sound like you're hitting the /etc/profile file ok, so you can also copy in the default an try again.
cp /usr/newconfig/etc/profile /etc/profile
'set -xv' when added to the /etc/passwd will indicate where the bombing out occurs. Put it near the top.
Any error numbers reported along with 'Error: Unauthorized Login'?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-20-2003 02:26 PM
тАО05-20-2003 02:26 PM
Re: Error: Unauthorized Login
# su - oracle
(c)Copyright 1983-2000 Hewlett-Packard Co., All Rights Reserved.
(c)Copyright 1979, 1980, 1983, 1985-1993 The Regents of the Univ. of California
(c)Copyright 1980, 1984, 1986 Novell, Inc.
(c)Copyright 1986-1992 Sun Microsystems, Inc.
(c)Copyright 1985, 1986, 1988 Massachusetts Institute of Technology
(c)Copyright 1989-1993 The Open Software Foundation, Inc.
(c)Copyright 1986 Digital Equipment Corp.
(c)Copyright 1990 Motorola, Inc.
(c)Copyright 1990, 1991, 1992 Cornell University
(c)Copyright 1989-1991 The University of Maryland
(c)Copyright 1988 Carnegie Mellon University
(c)Copyright 1991-2000 Mentat Inc.
(c)Copyright 1996 Morning Star Technologies, Inc.
(c)Copyright 1996 Progressive Systems, Inc.
(c)Copyright 1991-2000 Isogon Corporation, All Rights Reserved.
RESTRICTED RIGHTS LEGEND
Use, duplication, or disclosure by the U.S. Government is subject to
restrictions as set forth in sub-paragraph (c)(1)(ii) of the Rights in
Technical Data and Computer Software clause in DFARS 252.227-7013.
Hewlett-Packard Company
3000 Hanover Street
Palo Alto, CA 94304 U.S.A.
Rights for non-DOD U.S. Government Departments and Agencies are as set
forth in FAR 52.227-19(c)(1,2).
*****************************************************************
INFORMATICA DEVELOPMENT
*****************************************************************
WARNING: You are now connected to SAICnet!
SAICnet is an SAIC information and data transmission, processing
and storage system for use only by SAIC authorized users.
SAIC may at any time monitor the SAICnet and access messages, data
and information transmitted, processed and/or stored in SAICnet.
As a condition of your use of SAICnet, you authorize such monitoring
and accessing of messages, data and information transmitted,
processed and/or stored in SAICnet.
unauthorized login
Killed
-Russ
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-20-2003 03:40 PM
тАО05-20-2003 03:40 PM
Re: Error: Unauthorized Login
Make sure the .profile for that user is backed up some where.
Take a look at the .profile and any oracle configuration scripts that set values like ORACLE_SID and ORACLE_HOME for this problem.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-20-2003 07:37 PM
тАО05-20-2003 07:37 PM
Re: Error: Unauthorized Login
it is one causing problem.if u can login as other user without problems /etc/profile should be ok(unless there is any specific setting for the particular user).
please check ur .profile it does have something which is causing the problem.
radhakrishnan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-20-2003 07:43 PM
тАО05-20-2003 07:43 PM
Re: Error: Unauthorized Login
try to loginh without user profile
su oracle
is it working if yes then devide .profile in different block and try to locate where is the problem.
Sunil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-21-2003 11:49 AM
тАО05-21-2003 11:49 AM
Re: Error: Unauthorized Login
The old code:
if ( `whoami` == oracle ) then
didn't work because it depended on the whoami command which only reports on the current session. I change the test part to:
if ( `who am i|cut -c 1-8` == oracle ) then
This works the 'who am i' reports base login.
Anyone with another solution to controlling logins please chime in. I may put up another post to ask this question.
Thanks!