- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- net ads join: memory fault
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
тАО09-24-2008 11:31 AM
тАО09-24-2008 11:31 AM
net ads join: memory fault
I am experiencing a "core dump" message after trying to join a Windows 2003 domain, on an HP-UX samba server (HP CIFS Server A.02.03.04a) on HP-UX 11v1.
The strange thing is that on a DEV server, with identical operating system (the only difference is that the DEV system is 32 bit, the PROD system is 64 bit), all seems to function correctly.
On both systems I have installed the latest CIFS server, Kerberos client, LDAP-UX integration and PAM Kerberos software - and on the two systems the sw releases are identical.
The configuration files for Kerberos (krb5.conf) and the CIFS server (smb.conf) are identical, at least in the [global] section for smb.conf.
This is the output (the last lines) from a
# net ads join -U myusername -d 10
[2008/09/24 21:15:01, 4] libads/ldap.c:ads_server_info(2608)
time offset is 0 seconds
[2008/09/24 21:15:01, 5] lib/smbldap.c:smb_ldap_start_tls(535)
smb_ldap_start_tls: not ldap ssl start tls
[2008/09/24 21:15:01, 4] libads/sasl.c:ads_sasl_bind(455)
Found SASL mechanism GSS-SPNEGO
Bus error(coredump)
Any help would be appreciated.
Thank you
Enrico
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-24-2008 09:09 PM
тАО09-24-2008 09:09 PM
Re: net ads join: memory fault
You could download gdb and get a stacktrace to see if anything is useful.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-01-2008 10:33 PM
тАО10-01-2008 10:33 PM
Re: net ads join: memory fault
A "file core" command gives the following output:
core: core file from 'net' - received SIGSEGV
I tried to reinstall the Kerberos client (rel. C 1.3.5.06) without luck.
I don't know how to use 'gdb' ...
Any other help would be appreciated.
Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-01-2008 11:41 PM
тАО10-01-2008 11:41 PM
Re: net ads join: memory fault
(This won't solve the problem but it may help others triage it by matching some known issue.)
To use gdb:
gdb net core
(gdb) bt
(gdb) info reg
(gdb) disas $pc-4*20 $pc+4*4
(gdb) q
You should attach a text file with this output.
You can make gdb output directly to a file by:
(gdb) set redirect-file gdb.out
(gdb) set redirect on
Then do the above bt ... commands
If you want to turn redirection off:
(gdb) set redirect off
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-02-2008 12:25 AM
тАО10-02-2008 12:25 AM
Re: net ads join: memory fault
I have redirected the 'gdb' output as of your instructions: in the attached file the result.
Enrico
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-28-2008 01:06 AM
тАО11-28-2008 01:06 AM
Re: net ads join: memory fault
Sorry, I must have missed this until now.
Basically you are in ber_free_buf at io.c:176.
A field 32 bytes into a struct pointed to by the first argument has a bad pointer and it aborts when using that pointer.