Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

loadmodule throws error for resin and jakarta

Status
Not open for further replies.

FishermensFriend

Programmer
Apr 2, 2001
2
DE
I'am trying to install caucho resin1.2.2 with apache 1.3.x and all i get at the apache restart is a "invalid command 'loadmodule', perhaps misspelled or defined by a module not included in your server environment." the installation didn't throw any errors, the mod_caucho.so exists in the libexec folder.

Anybody an idea? (Same error occurs while including jakarta)
 
I'm having the same problem but have not resolved it at the moment, I've been told that it's probably a compiling-resin error. Are you running under red-hat 7?
 
I had a similar problem and discovered the answer within Apache's README.configure file. To find the answer, I searched Google for "apache LoadModule" (and this thread came up on top), the next hit revealed the connection to mod_so as the library supporting LoadModule, then I grep'ed the Apache config and home directories. Once I found it mentioned in the README.configure file, I thought that would be a good place to look.

You probably want to set up your make with something like this:

$ ./configure --prefix=/path/to/apache --enable-module=most --enable-shared=max
$ make
$ make install

See the README.configure file for more information.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top