- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: sudo strange error message "/usr/lib/hpux32/dl...
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
Forums
Discussions
Discussions
Discussions
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
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
01-28-2010 03:22 AM
01-28-2010 03:22 AM
sudo strange error message "/usr/lib/hpux32/dld.so:...."
My system info:
hpux ver-11.23
sudo ver-1.7.2p1
user created-admin(adm group)
I've encounter this error on one of the servers installed with sudo (other server working good). After user created, I configured visudo as attachment. after logon and try to issue any command, this strange error message come up;
"/usr/lib/hpux32/dld.so: Unsatisfied code symbol 'setegid' in load module '/usr/local/bin/sudo'. Killed"
Hence, really appricite if someone can advise on this.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2010 04:12 AM
01-28-2010 04:12 AM
Re: sudo strange error message "/usr/lib/hpux32/dld.so:...."
Your system is attempting to load all the shared libraries required by the sudo command, but failing to find a library that would supply the "setegid" functionality. At this point, the sudo command is killed even before it can really start. So the sudo configuration is not an issue here.
Perhaps you've accidentally installed a sudo package intended for HP-UX 11.31 onto your 11.23 system, or something like that?
From the version and pathname, I guess you got your sudo installation depot from this website:
http://hpux.connect.org.uk/hppd/hpux/Sysadmin/sudo-1.7.2p1/
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2010 06:01 AM
01-28-2010 06:01 AM
Re: sudo strange error message "/usr/lib/hpux32/dld.so:...."
If you install the same depot of sudo on two different server I hope you have the same os release on the two servers too.
You could try ldd /usr/local/bin/sudo to know which lib sudo access and better check the difference between them on the two server
ll /usr/lib/hpux32/dld.so
You could also get sudo in the internet express
Sudo A.14.00-1.7.2p1.001
https://h20392.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXIEXP1123
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2010 07:33 AM
01-28-2010 07:33 AM
Re: sudo strange error message "/usr/lib/hpux32/dld.so:...."
I used the same depot I installed on working server (11.23 system too).
Hi Smatador,
I'm downloading the new copy of sudo from the given link and will re-install this one.
Sick server:
# ll /usr/lib/hpux32/dld.so
-r-xr-xr-x 1 bin bin 1066308 Jan 7 2009 /usr/lib/hpux32/dld.so
$ sudo mkdir /test
/usr/lib/hpux32/dld.so: Unsatisfied code symbol 'setegid' in load module '/usr/local/bin/sudo'.
Killed
Working server:
# ll /usr/lib/hpux32/dld.so
-r-xr-xr-x 1 bin bin 1066308 Jan 7 2009 /usr/lib/hpux32/dld.so
$ /usr/local/bin/sudo mkdir /tests
$
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2010 07:54 AM
01-28-2010 07:54 AM
Re: sudo strange error message "/usr/lib/hpux32/dld.so:...."
Well something is wrong with one of your server.
Could you post an ldd /usr/sbin/sudo
An idea is to get all lib that sudo want from the two server and compare with a command like
swlist -l file | grep
lib=libdl.so.1
Like that you could maybe see what is wrong.
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2010 06:18 PM
01-28-2010 06:18 PM
Re: sudo strange error message "/usr/lib/hpux32/dld.so:...."
Known problem with the current version of sudo supplied by HP (and also at the HP-UX Porting Centre). setegid has been removed from 11.23 and later versions. The writers of sudo realized that this can be a problem and have an ifdef in the code to handle the missinbg system call but sudo 1.7.2p1 was buile incorrectly, this the error message. Get an earlier version from your IExpress DVD for 11.23 (I used the 2004 DVD for 1.6.7p5) and it will work just fine. Otherwise, you'll need to get the source code and build it with the correct options.
Here are the details: http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1402767
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2010 08:40 PM
01-28-2010 08:40 PM
Re: sudo strange error message "/usr/lib/hpux32/dld.so:...."
I re-install a new copy of sudo from below link (ia64-11.23) and my problem solved perfectly .
http://hpux.connect.org.uk/ftp/hpux/Sysadmin/sudo-1.7.2p1/
really appreciates your helps and time.