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
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
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-18-2002 03:49 AM
тАО05-18-2002 03:49 AM
mod_perl
Where do I get mod_perl and how do i get it installed on hpux?
Thank you,
Jayesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-18-2002 05:20 AM
тАО05-18-2002 05:20 AM
Re: mod_perl
you should be able to download it from CPAN at http://www.perl.com and use it from within your Apache's "httpd.conf" file with as dynamically loaded module, so check your Apache has been "configure"d and "make"d with the proper options... (use "./configure -h" in the Apache-Source-dir for the correct spelling).
HTH,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-18-2002 05:31 AM
тАО05-18-2002 05:31 AM
Re: mod_perl
I believe Apache source code is not available with hpux (hpux is supplied only with the apache binaries).
I had downloaded mod_perl from
perl.apache.org but could not install it.
I tried perl Makefile.pl after extracting the module, but I was prompted for apached src directory and could not proceed.
Please, any ideas?
Thanks,
Jayesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-19-2002 02:13 AM
тАО05-19-2002 02:13 AM
Re: mod_perl
well, getting the Apache sources from httpd.apache.com is quite easy, extract (with the GNU tar) and then cd into your source directory. Now "./configure -h" for the help, and call it with all the options you want, especially the one to permit "DSO" (Dynamic Shared Objects", i.e. without re-compilation. Then "make" (with the GNU make) and "make install", that's it, basically.
HTH,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-19-2002 06:56 PM
тАО05-19-2002 06:56 PM
Re: mod_perl
#########################
How to enable mod_perl in Apache server. DocId: KBAN00000583 Updated: 20010130
DOCUMENT
The Apache web server, version 1.3.12 distributed and supported by HP has
mod_perl statically linked into the server binary. This enables the Apache
server to interpret Perl scripts internally, without calling an external perl
interpreter. In order to utilize this functionality, first install the HP
supported HP Perl product "Perl 32 bit on HP-UX", product number B9829AA.
Ensure that the line AddModule mod_perl.c is uncommented, and add
the following lines to /opt/apache/conf/httpd.conf:
PerlModule Apache::Registry
Alias /perl/ /home/httpd/perl/
SetHandler perl-script
PerlHandler Apache::Registry
PerlSendHeader On
Options +ExecCGI
This will cause Apache to look in directory /home/httpd/perl whenever a URI
preceded with /perl is requested, and invoke the perl-script handler linked in
with the server binary. Of course any directory accessible by Apache may be
used to store perl scripts.
Use the following simple perl script, test_perl as a test:
use strict;
use CGI qw(:all);
print "Content-type: text/plain\n\n";
print `echo Apache mod_perl works!!!!`;
Open the uri http://HOSTNAME/perl/test_perl, and you should receive the output:
"Apache mod_perl works!!!!".