- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Error to run Listner
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
03-01-2001 09:01 PM
03-01-2001 09:01 PM
I am sorry to write this off topic. Actually our Oracle DBA is out of town. So I had to install Oracle & configure it after getting help from freind. But I am getting strange problem when I am trying to run listner. The error message is below..
/usr/lib/dld.sl:Call to mmap() failed - TEXT /usr/lib/dld.sl
/usr/lib/dld.sl:Not enough space
Abort(Coredump)
What could be the problem ? Pls help me to chalk out this problem.
Sandip
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2001 09:13 PM
03-01-2001 09:13 PM
Re: Error to run Listner
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2001 12:54 AM
03-02-2001 12:54 AM
Re: Error to run Listner
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2001 01:19 AM
03-02-2001 01:19 AM
Re: Error to run Listner
Has your kernel been tuned properly ie. settings for data segment parameters such as maxdsiz, shared memory parameters such as shmmax, semaphore parameters such as semmni etc.
Hope this helps. Regards.
Steven Sim Kok Leong
Brainbench MVP for Unix Admin
http://www.brainbench.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2001 04:48 AM
03-02-2001 04:48 AM
Re: Error to run Listner
I have checked my all Kernel parameter throughly & also made tally with different system where Oracle is running. Everything seems to fine. I was concerned about maxdsize,maxtsize,shmmax.etc.. But still I did not get any solution. Our server is D class server, Total RAM is only 256 MB. But I think Oracle should run here. Os is Hp 10.20.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2001 05:53 AM
03-02-2001 05:53 AM
Re: Error to run Listner
(1) The Oracle environmental variables need to be set
(2)The HP system resources (Kernel parameters) must be large enough for the IPC's being allocated.
For #1:
1a) "su - oracle -c $ORACLE_HOME/lsnrctl start" (prefered for security purposes)
1b) Source the "oraenv" script before attempting to start the listener (these values are typically also set in ~oracle/.profile)
1c) Make sure that environmental variables "LD_LIBRARY" & "SHLIB_PATH" include paths to the oracle installed libraries (see oracle doc CD
For #2: Check the Oracle install docs on the CD for single database requirements. If there are multiple DB's then get an experienced DBA to check for what you need to set in the Kernel.
For the future, get your DBA to show you MetaLink (the Oracle version of ITRC). Many of your questions/answers are already answered there.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2001 06:24 AM
03-02-2001 06:24 AM
Re: Error to run Listner
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2001 06:48 AM
03-02-2001 06:48 AM
Re: Error to run Listner
ORACLE_HOME,ORACLE_BASE and ORACLE_SID was set. Again I set SHLIB_PATH=$HOME/lib:/usr/lib:. and LD_LIBRARY is also same. But that problem still persists.
Sandip
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2001 09:17 AM
03-02-2001 09:17 AM
Re: Error to run Listner
Also check $ORACLE_HOME/install/make.log for any errors.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2001 11:37 AM
03-02-2001 11:37 AM
Re: Error to run Listner
You have not relinked the executables after installing software.
You can check this by investigating the date of the execuatbles
in $ORACLE_HOME/bin (ls -ltr $ORACLE_HOME/bin/*).
The executables should be of install date or later.
Relinking tnslsnr and lsnrctl executables solves this problem.
cd $ORACLE_HOME/network/lib
make -f ins_network.mk install
It is a good custom to relink the executables as part of the installation,
you prove at that moment that you were able to relink without problems and
can do it again if needed (installation of a patch for instance).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2001 11:37 AM
03-02-2001 11:37 AM
SolutionYou have not relinked the executables after installing software.
You can check this by investigating the date of the execuatbles
in $ORACLE_HOME/bin (ls -ltr $ORACLE_HOME/bin/*).
The executables should be of install date or later.
Relinking tnslsnr and lsnrctl executables solves this problem.
cd $ORACLE_HOME/network/lib
make -f ins_network.mk install
It is a good custom to relink the executables as part of the installation,
you prove at that moment that you were able to relink without problems and
can do it again if needed (installation of a patch for instance).
MDF
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2001 09:03 PM
03-02-2001 09:03 PM
Re: Error to run Listner
Please try to increase maxdsiz to more than 200MB or more if you have lot of memory.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2001 08:43 PM
03-04-2001 08:43 PM
Re: Error to run Listner
Thanks a lot for wonderful solution. Yes after relinking listner is working fine.Thanks to all member who had given their valuable suggetion too.
Sandip