1 -- sslpassphrasedialog
Install Apache as follows:
$. /Configure -- prefix =/home/SVN/apps/Apache -- With-Apr =/home/SVN/apps/APR -- With-Apr-util =/home/SVN/apps/ apr-util -- With-SSL =/home/SVN/apps/SSL
After all the software is installed, start Apache. the following error occurs during startup:
Linux-rwdx:/home/SVN/apps/Apache/bin #. /apachectl startsyntax error on line 56 of/home/SVN/apps/Apache/CONF/extra/httpd-ssl.conf: Invalid Command 'sslpassphrasedialog ', perhaps misspelled or defined by a module not supported ded in the server configuration
Cause of error: run the "./httpd-T-D dump_modules" command to view the installed modules of Apache. We found that Apache did not load the mod_ssl module, So we re-compile and install the module. Add "-- enable-SSL" to the configuration options ":
Shell #. /configure -- prefix =/home/SVN/apps/Apache -- With-Apr =/home/SVN/apps/APR -- With-Apr-util =/home/SVN/apps/ apr-util -- With-SSL =/home/SVN/apps/SSL -- enable-SSL
2 -- dav_xml_get_cdata
Install Apache as follows:
$. /Configure -- prefix =/home/SVN/apps/Apache -- With-Apr =/home/SVN/apps/APR -- With-Apr-util =/home/SVN/apps/ apr-util -- With-SSL =/home/SVN/apps/SSL -- enable-SSL
After the installation is complete, start Apache with the following error:
Linux-rwdx:/home/SVN/apps/Apache/bin #. /apachectl starthttpd: syntax error on line 55 of/home/SVN/apps/Apache/CONF/httpd. conf: cannot load/home/SVN/apps/Apache/modules/mod_dav_svn.so into server:/home/SVN/apps/Apache/modules/mod_dav_svn.so: Undefined Symbol: dav_xml_get_cdata
The "-- enable-Dav" and "-- enable-so" options must be added during Apache Compilation:
Shell #. /configure -- prefix =/home/SVN/apps/Apache -- With-Apr =/home/SVN/apps/APR -- With-Apr-util =/home/SVN/apps/ apr-util -- With-SSL =/home/SVN/apps/SSL -- enable-Dav -- enable-so