Apache是一个免费的开放式供应程序。它在所有Web服务器上运行67%。它快速,无风险且舒适。它可能是极端定制的,可以通过利用扩展和模块来满足许多同类环境的需求。
要安装apache,请使用以下命令-
$ sudo apt-get update $ sudo apt-get install apache2
要获取有关apache安装的更多信息,请阅读本文。
apcahe2ctl是Apache超文本交换协议(HTTP)服务器的前端。它旨在帮助管理员控制Apache HTTP守护程序的功能。要获取有关apache2模块的更多信息,请使用以下命令–
$ man apache2ctl or $ apache2ctl -h
样本输出应如下所示–
Usage: /usr/sbin/apache2 [-D name] [-d directory] [-f file] [-C "directive"] [-c "directive"] [-k start|restart|graceful|graceful-stop|stop] [-v] [-V] [-h] [-l] [-L] [-t] [-T] [-S] [-X] Options: -D name : define a name for use in directives -d directory : specify an alternate initial ServerRoot -f file : specify an alternate ServerConfigFile -C "directive" : process directive before reading config files -c "directive" : process directive after reading config files -e level : show startup errors of level (see LogLevel) -E file : log startup errors to file -v : show version number -V : show compile settings -h : list available command line options (this page) -l : list compiled in modules -L : list available configuration directives -t -D DUMP_VHOSTS : show parsed vhost settings -t -D DUMP_RUN_CFG : show parsed run settings -S : a synonym for -t -D DUMP_VHOSTS -D DUMP_RUN_CFG -t -D DUMP_MODULES : show all loaded modules -M : a synonym for -t -D DUMP_MODULES -t : run syntax check for config files -T : start without DocumentRoot(s) check -X : debug mode (only one worker, do not detach)
要获取有关在Ubuntu 16.04中启用/加载哪些Apache模块的信息,请使用以下命令-
$ apache2ctl -M
样本输出应如下所示–
[Mon Jan 02 12:04:29.210625 2017] [so:warn] [pid 14538] AH01574: module dav_module is already loaded, skipping Loaded Modules: core_module (static) so_module (static) watchdog_module (static) http_module (static) log_config_module (static) logio_module (static) version_module (static) unixd_module (static) access_compat_module (shared) alias_module (shared) auth_basic_module (shared) authn_core_module (shared) authn_file_module (shared) authz_core_module (shared) authz_host_module (shared) dav_module (shared) dav_svn_module (shared) authz_svn_module (shared) authz_user_module (shared) autoindex_module (shared) cgi_module (shared) cgid_module (shared) deflate_module (shared) dir_module (shared) env_module (shared) filter_module (shared) include_module (shared) mime_module (shared) mpm_prefork_module (shared) negotiation_module (shared) php7_module (shared) rewrite_module (shared) setenvif_module (shared) status_module (shared)
如果要按字母顺序查看列表,请使用以下命令–
$ apachectl -M | sort
样本输出应如下所示–
[Mon Jan 02 12:08:33.025558 2017] [so:warn] [pid 14575] AH01574: module dav_module is already loaded, skipping access_compat_module (shared) alias_module (shared) auth_basic_module (shared) authn_core_module (shared) authn_file_module (shared) authz_core_module (shared) authz_host_module (shared) authz_svn_module (shared) authz_user_module (shared) autoindex_module (shared) cgid_module (shared) cgi_module (shared) core_module (static) dav_module (shared) dav_svn_module (shared) deflate_module (shared) dir_module (shared) env_module (shared) filter_module (shared) http_module (static) include_module (shared) Loaded Modules: log_config_module (static) logio_module (static) mime_module (shared) mpm_prefork_module (shared) negotiation_module (shared) php7_module (shared) rewrite_module (shared) setenvif_module (shared) so_module (static) status_module (shared) unixd_module (static) version_module (static) watchdog_module (static)
启用/加载获取Apache模块列表的另一种简单方法,如下所示–
$ apachectl -t -D DUMP_MODULES
样本输出应如下所示–
[Mon Jan 02 12:12:18.015390 2017] [so:warn] [pid 14641] AH01574: module dav_module is already loaded, skipping Loaded Modules: core_module (static) so_module (static) watchdog_module (static) http_module (static) log_config_module (static) logio_module (static) version_module (static) unixd_module (static) access_compat_module (shared) alias_module (shared) auth_basic_module (shared) authn_core_module (shared) authn_file_module (shared) authz_core_module (shared) authz_host_module (shared) dav_module (shared) dav_svn_module (shared) authz_svn_module (shared) authz_user_module (shared) autoindex_module (shared) cgi_module (shared) cgid_module (shared) deflate_module (shared) dir_module (shared) env_module (shared) filter_module (shared) include_module (shared) mime_module (shared) mpm_prefork_module (shared) negotiation_module (shared) php7_module (shared) rewrite_module (shared) setenvif_module (shared) status_module (shared)
如果要按字母顺序查看列表,请使用以下命令–
$ apachectl -t -D DUMP_MODULES | sort
样本输出应如下所示–
[Mon Jan 02 12:13:59.845909 2017] [so:warn] [pid 14657] AH01574: module dav_module is already loaded, skipping access_compat_module (shared) alias_module (shared) auth_basic_module (shared) authn_core_module (shared) authn_file_module (shared) authz_core_module (shared) authz_host_module (shared) authz_svn_module (shared) authz_user_module (shared) autoindex_module (shared) cgid_module (shared) cgi_module (shared) core_module (static) dav_module (shared) dav_svn_module (shared) deflate_module (shared) dir_module (shared) env_module (shared) filter_module (shared) http_module (static) include_module (shared) Loaded Modules: log_config_module (static) logio_module (static) mime_module (shared) mpm_prefork_module (shared) negotiation_module (shared) php7_module (shared) rewrite_module (shared) setenvif_module (shared) so_module (static) status_module (shared) unixd_module (static) version_module (static) watchdog_module (static)
在以上文章中,我们学习了–了解如何检查Ubuntu 16.04中启用/加载了哪些Apache模块。在我们的下一篇文章中,我们将提出更多基于Linux的技巧。继续阅读!
问题内容: 我在本地计算机上使用Ubuntu Linux 12.04 LTS。我很早以前就在计算机上安装了LAMP。现在,我想启用以下PHP扩展: php_zip php_xml php_gd2 首先,我要检查是否启用了这些PHP扩展。我搜索了很多有关如何检查已安装/启用的PHP扩展的信息,但是每次我都找到了如何在Ubuntu Linux上安装这些扩展的信息。所以有人可以让我知道如何在Ubuntu
我在我的本地机器上使用UbuntuLinux12.04 LTS。我很久以前就在我的机器上安装了LAMP。现在我想启用以下PHP扩展: php\u-zip 首先,我想检查是否启用了这些PHP扩展。我搜索了很多关于如何检查已安装/启用的PHP扩展的信息,但每次我都发现如何在Ubuntu Linux上安装这些扩展。那么,有人能告诉我应该如何检查Ubuntu Linux 12.04 LTS中启用/禁用的P
问题内容: 有没有办法检查正在运行的进程在使用哪些库? 更具体地说,如果程序使用dlopen加载某些共享库,则readelf或ldd不会显示它。是否有可能从正在运行的进程中获取该信息?如果是,怎么办? 问题答案: 其他人在正确的道路上。这有几种方法。 或者,使用strace: 这两个都假定共享库的路径中的某个位置带有“ .so”,但是您可以对其进行修改。第一个给出了相当漂亮的输出,只是一个库列表,
我有以下型号: 在另一个图书馆服务的方法: 只有在启用延迟加载时,它才能正常工作: 如果未启用延迟加载,则不填充用户属性。我想抛出一个异常,如果有人试图使用我的服务没有启用延迟加载。怎么做呢?我试图检查属性
问题内容: 我在想,如果有可能,以检查是否被启用 的Apache 和 IIS 在 。 *存在用于IIS的 *ModRewrite 。检查一下。 因此,我正在寻找一个在 Apache 和 IIS 上进行检查的PHP脚本 。 有谁知道这样的脚本或可以写一个? 特别是对于Microsoft IIS 。 谢谢! 问题答案: 如果您使用的是mod_php,则可以使用。这将返回所有已启用模块的数组,因此要检查
问题内容: 我正在尝试创建一个显示带有复选框的简单表单的servlet,当用户选择所需数量的复选框并单击“确认”我的servlet中的POST请求时,将检查哪些复选框已选中并基于数据库查询数据库。 。 我不确定如何在Java中执行此操作,因为用户可以选择1个或多个复选框。如果有人可以用一个小的例子来解释这一点,那将是很好的。 我是编程的新手,如果我知道怎么做的话,会提供代码片段。 问题答案: 这实