- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Linking apache with Shared Libraries
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
09-25-2003 12:20 AM
09-25-2003 12:20 AM
Linking apache with Shared Libraries
thanks to you guys that i am able to build apache and also my shared libraries. But i have one more issue.
Apache build has created .so (shared object) files.
while the shared libraries i have created are of (.sl) shared libraries
i am not able to create .so for my shared libraries.
my Issue now is that i am not able to link apache shared objects with my shared libraries.
my shared library is a plugin which i want to run on top of apache.
when i start apache it gives me the error
/usr/lib/dld.sl: Can't find path for shared library: libSM_DSV2Plugin.sl
/usr/lib/dld.sl: No such file or directory
Syntax error on line 237 of /home/smplug/Install/apache/conf/httpd.conf:
Cannot load /home/smplug/Install/apache/libexec/mod_auth_tkt.so into server: No such
file or directory
../bin/apachectl start: httpd could not be started
Note: in httpd.conf i have added the Plugin in LoadModule and also AddModule.
the plugin is in so mode. and it uses other functions which is in sl mode.
but when i start apache it doesnt recognise the Dsv2Plugin library which has a .sl extension.
please help me .
regards
shiva
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2003 12:25 AM
09-25-2003 12:25 AM
Re: Linking apache with Shared Libraries
OR:
Install apache off SD-UX depots and do something more fun.
http://software.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXWSATW100501
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
09-25-2003 12:38 AM
09-25-2003 12:38 AM
Re: Linking apache with Shared Libraries
cant you simply create symbolic links to each of your *.sl as *.so ?
for file in *.sl do ; name=`echo $file | cut -f1 -d.` ; ln -fs ${name}.sl ${name}.so ; done
--
ranga
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2003 01:55 AM
09-25-2003 01:55 AM
Re: Linking apache with Shared Libraries
i have already tried that and its not working.
steven i would try your option.
shlib and path are fine. and i hope i get the source code for apache in that site.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2003 05:12 AM
09-25-2003 05:12 AM
Re: Linking apache with Shared Libraries
--
ranga