- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- apache & tomcat integration
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
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
10-14-2002 10:48 PM
10-14-2002 10:48 PM
apache & tomcat integration
Can any one help me in configuring apache & tomcat.
While creating the mod_jk.so file, I am getting the following error... thanks in advance for you help.
# ./build-hpux.sh
Building mod_jk
syntax error in file /usr/local/apache/bin/apxs at line 67, next 2 tokens "use s
trict"
syntax error in file /usr/local/apache/bin/apxs at line 74, next 2 tokens "my $C
FG_TARGET "
syntax error in file /usr/local/apache/bin/apxs at line 99, next 2 tokens "my $o
pt_n "
syntax error in file /usr/local/apache/bin/apxs at line 125, next 2 tokens "my (
"
syntax error in file /usr/local/apache/bin/apxs at line 198, next 2 tokens "my $
rc"
syntax error in file /usr/local/apache/bin/apxs at line 201, next 2 tokens "1 an
d"
syntax error in file /usr/local/apache/bin/apxs at line 202, next 2 tokens "not
$opt_q "
syntax error in file /usr/local/apache/bin/apxs at line 211, next 2 tokens "my (
"
syntax error in file /usr/local/apache/bin/apxs at line 214, next 2 tokens "my (
"
syntax error in file /usr/local/apache/bin/apxs at line 216, next 2 tokens "$var
and"
/usr/local/apache/bin/apxs has too many errors.
Error with apxs
#
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2002 11:38 PM
10-14-2002 11:38 PM
Re: apache & tomcat integration
apxs is a perl script,
the trouble you have is probably linked with the perl release installed on your server ....
check it !
hth
Benoit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2002 12:04 AM
10-15-2002 12:04 AM
Re: apache & tomcat integration
Thanks for the info. I have perl in all of the following directories.
# find . -name 'perl'
./opt/apache/lib/site_perl/5.6.1/PA-RISC1.1-thread-multi/auto/Apache/include/mod
ules/perl
./opt/perl
./opt/perl/html/perl
./opt/perl/bin/perl
./opt/perl_64/html/perl
./opt/perl_64/bin/perl
./opt/hpapache2/lib/perl
./usr/contrib/bin/perl
./usr/contrib/Q4/bin/perl
./var/adm/sw/products/perl
./var/adm/sw/save/PHCO_20262/Q4/usr/contrib/Q4/bin/perl
./qsc/perl5.005_03/bin/perl
How can I instruct the system to use the particular version. I have installed perl5.X version in /opt/perl folder.. Thanks..
Awaiting your reply.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2002 01:43 AM
10-15-2002 01:43 AM
Re: apache & tomcat integration
by default :
#!/opt/perl5/bin/perl
either you change this line,
either you place in opt/perl5/bin/perl the good version.
check the version with :
/opt/perl5/bin/perl -v
hope that help.
Benoit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2002 03:12 AM
10-15-2002 03:12 AM
Re: apache & tomcat integration
It worked..
Thanks pal. :)