Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bugzilla installation issue in apache2- Ubuntu

When running

sudo /usr/bin/perl install-module.pl mod_perl2

command to install mod_perl for installing bugzilla in apache2 Ubuntu. I got the following error. I have installed apache2 ,MySql and Perl.

Checking for                 CPAN (v1.81)     ok: found v1.960001 
Checking for                 YAML (any)       ok: found v0.84 
Checking for   ExtUtils-MakeMaker (v6.31)     ok: found v6.82 
Going to read '/root/.cpan/Metadata'
  Database was generated on Wed, 20 Nov 2013 19:08:54 GMT
Installing mod_perl2 version 2.000008...
Running install for module 'mod_perl2'
Running make for P/PH/PHRED/mod_perl-2.0.8.tar.gz
Checksum for /root/.cpan/source/authors/id/P/PH/PHRED/mod_perl-2.0.8.tar.gz ok

  CPAN.pm: Going to build P/PH/PHRED/mod_perl-2.0.8.tar.gz

Reading Makefile.PL args from @ARGV
no conflicting prior mod_perl version found - good.
************* WARNING *************

  Your Perl is configured to link against libgdbm,
  but libgdbm.so was not found.
  You could just symlink it to /usr/lib/x86_64-linux-gnu/libgdbm.so.3.0.0


************* WARNING *************

Next we need to know where the 'apxs' script is located. This script
provides a lot of information about the Apache installation, and makes
it easier to find things on your system. Normally it's located in the
same directory as the 'httpd' executable.

If you don't yet have Apache installed you can build Apache against
the Apache source code, but you won't be able to run the test suite (a
very important step). Therefore you may want to install Apache before
proceeding.


Please provide a full path to 'apxs' executable
(press Enter if you don't have it installed):  


Please provide the location of the Apache directory:  
[  error] Can't find dir ''
Please provide the location of the Apache directory:  
[  error] Can't find dir ''
like image 704
user2956452 Avatar asked Oct 19 '25 04:10

user2956452


1 Answers

To resolve the perl lib issue, cd /usr/lib/x86_64-linux-gnu/ then link libgdbm.so.3.0.0 to libgdbm.so. ln -s libgdbm.so.3.0.0 libgdbm.so. That should clear up the first warning.

For the apxs issue, you need to install apache2-dev. on Ubuntu use the following command sudo apt-get install apache2-dev

Rerun and that should correct it.

like image 183
Bert Davis Avatar answered Oct 22 '25 02:10

Bert Davis



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!