apache - mod_ssl not compiling with apache2 -
solved
resolved, strange issue. check config.log, suggested capsule , found following line:
configure:14368: checking whether enable mod_ssl configure:16123: result: no i wondering why wasn't installing ssl when had asked to. found configuration command had parsed in:
./configure --prefix=/usr/local/apache --enable-so--enable-cgi--enable-info--enable-rewrite--enable-speling--enable-usertrack--enable-deflate --enable-ssl--enable-mime-magic notice lack of spaces? had entered command each directive in new line missing spaces, , arguments not being correctly passed.
and works expected!
apache build ( 2.2.1 ):
./configure --prefix=/usr/local/apache \ --enable-so \ --enable-cgi \ --enable-info \ --enable-rewrite \ --enable-speling \ --enable-usertrack \ --enable-deflate \ --enable-ssl \ --enable-mime-magic when try configure ssl, following try restart apache
syntax error on line 56 of /usr/local/apache/conf/extra/httpd-ssl.conf: invalid command 'sslpassphrasedialog', perhaps misspelled or defined module not included in server configuration here're list of compiledin modules ( ssl missing )
/usr/local/apache/bin/apachectl -m loaded modules: core_module (static) authn_file_module (static) authn_default_module (static) authz_host_module (static) authz_groupfile_module (static) authz_user_module (static) authz_default_module (static) auth_basic_module (static) include_module (static) filter_module (static) log_config_module (static) env_module (static) setenvif_module (static) version_module (static) mpm_prefork_module (static) http_module (static) mime_module (static) status_module (static) autoindex_module (static) asis_module (static) cgi_module (static) negotiation_module (static) dir_module (static) actions_module (static) userdir_module (static) alias_module (static) so_module (static) php5_module (shared)
check if ./configure doesn't yell missing when checking openssl librairies. didn't compile right, hence module not listed.
you can have @ config.log
Comments
Post a Comment