在MacOS Sierra 10.12.1上安装/卸载Apache2

时间:2016-12-01 15:43:29

标签: php parsing virtualhost macos-sierra apache2.4

我不知道我的Mac附带Apache2.4并且没有检查我操作的操作系统,我按照本指南使用Homebrew在我的机器上获取Apache / MySQL / PHP:https://echo.co/blog/os-x-109-local-development-environment-apache-php-and-mysql-homebrew

这导致我在我的机器上运行两个版本的Apache2:2.2和2.4。在终端询问apache运行时答案是2.4但是当我尝试在我的虚拟主机上打开我的程序实例时,我无法访问该页面。 之后发生的事情很困惑,因为我让其他人正在努力解决它,他们改变并移动了文件,所以当我拿回电脑时,我甚至不知道从哪里开始了解我的位置,所以我尝试卸载两个apache版本并重新安装2.4。

由于我找不到任何帮助我卸载apache的指南,并且brew命令删除无法正常工作,我去删除了apache文件夹,并在我的目录中搜索了包含单词"阿帕奇"或" httpd" (我能找到的任何东西,这意味着我可能也错过了一些文件,因为我只是不知道在哪里搜索它们。)

在我这样做之后,我按照其他指南https://getgrav.org/blog/macos-sierra-apache-multiple-php-versions重新安装了apache 2.4直到PHP安装(我还没有执行)。

再次安装apache之后,我在httpd-vhost.conf中插入了我的虚拟主机的数据,如下所示:

<VirtualHost *:80>
    ServerAdmin personal@mail.com
    DocumentRoot "/Users/username/apache_vh/myApp"
    ServerName myApp.username.com
    ErrorLog "/usr/local/var/log/apache2/myApp-error_log"
    CustomLog "/usr/local/var/log/apache2/myApp-access_log" common
 <Directory />
        Options Indexes FollowSymLinks Includes ExecCGI
        AllowOverride All
        Require all granted
 </Directory>
</VirtualHost>

然后我修改了/usr/local/etc/apache2/2.4文件夹中的httpd.conf文件,其中包含以下内容(我省略了注释行):

ServerRoot "/usr/local/opt/httpd24"
Listen 80

LoadModule authn_file_module libexec/mod_authn_file.so
[...]
LoadModule authn_core_module libexec/mod_authn_core.so
LoadModule authz_host_module libexec/mod_authz_host.so
LoadModule authz_groupfile_module libexec/mod_authz_groupfile.so
LoadModule authz_user_module libexec/mod_authz_user.so
[...]
LoadModule authz_core_module libexec/mod_authz_core.so
LoadModule access_compat_module libexec/mod_access_compat.so
LoadModule auth_basic_module libexec/mod_auth_basic.so
[...]
LoadModule reqtimeout_module libexec/mod_reqtimeout.so
[...]
LoadModule filter_module libexec/mod_filter.so
[...]
LoadModule mime_module libexec/mod_mime.so
LoadModule log_config_module libexec/mod_log_config.so
[...]
LoadModule env_module libexec/mod_env.so
[...]
LoadModule headers_module libexec/mod_headers.so
[...]
LoadModule setenvif_module libexec/mod_setenvif.so
LoadModule version_module libexec/mod_version.so
[...]
LoadModule unixd_module libexec/mod_unixd.so
[...]
LoadModule status_module libexec/mod_status.so
LoadModule autoindex_module libexec/mod_autoindex.so
[...]
<IfModule mpm_prefork_module>
    #LoadModule cgi_module libexec/mod_cgi.so
</IfModule>
<IfModule !mpm_prefork_module>
    #LoadModule cgid_module libexec/mod_cgid.so
</IfModule>
[...]
LoadModule dir_module libexec/mod_dir.so
[...]
LoadModule alias_module libexec/mod_alias.so
LoadModule rewrite_module libexec/mod_rewrite.so

<IfModule unixd_module>
User _www
Group staff
</IfModule>

ServerAdmin you@example.com

ServerName localhost

<Directory />
    AllowOverride none
    Require all denied
</Directory>

<Directory "/Users/username/Sites">
    MultiViews
    Options Indexes FollowSymLinks
    AllowOverride All
    Require all granted
</Directory>

<IfModule dir_module>
    DirectoryIndex index.html
</IfModule>

<Files ".ht*">
    Require all denied
</Files>

ErrorLog "/usr/local/var/log/apache2/error_log"

LogLevel warn

<IfModule log_config_module>
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common

     <IfModule logio_module>
      LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>

     CustomLog "/usr/local/var/log/apache2/access_log" common

</IfModule>

<IfModule alias_module>

    ScriptAlias /cgi-bin/ "/usr/local/var/apache2/cgi-bin/"

</IfModule>

<Directory "/usr/local/var/apache2/cgi-bin">
    AllowOverride None
    Options None
    Require all granted
</Directory>

<IfModule mime_module>
    TypesConfig /usr/local/etc/apache2/2.4/mime.types

    #AddType application/x-gzip .tgz
    #AddEncoding x-compress .Z
    #AddEncoding x-gzip .gz .tgz
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
    #AddHandler cgi-script .cgi
    #AddHandler type-map var
    #AddType text/html .shtml
    #AddOutputFilter INCLUDES .shtml
</IfModule>

# Virtual hosts
Include /usr/local/etc/apache2/2.4/extra/httpd-vhosts.conf

[...]

<IfModule proxy_html_module>
Include /usr/local/etc/apache2/2.4/extra/proxy-html.conf
</IfModule>

<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>

后来我将以下内容添加到/ etc文件夹中的hosts文件中(与/ usr / local / etc不同,这个文件位于根目录,一个级别为/ usr):

127.0.0.1   localhost
255.255.255.255 broadcasthost
::1             localhost

127.0.0.1  myApp.username.com

我希望看到&#34;它有效!&#34; on localhost:8080和myApp on localhost:80。 我确实看到&#34;它有效!&#34;在localhost:8080,但如果我更新页面,我得到&#34;无法访问此站点/ localhost拒绝连接。&#34;。我已经启动,停止,重新启动了apache,但我始终得到同样的行为。 在localhost:80而不是我得到myApp,但我无法运行它,PHP没有被解析,我只看到文件夹的树结构。

我运行了apachectl configtest,我得到了语法OK。我运行了php -v,我得到了PHP 5.4.45(cli)(内置:2016年11月23日11:12:05)所以一切正常。

检查我上面粘贴的httpd.conf文件,我注意到我错过了php模块,所以我添加了LoadModule php5_module libexec/libphp5.so

我仍然遇到同样的问题。

我真正不理解的是所有内容的文件夹结构,因为我试图关注其他指南,但它们似乎指向一个我必须删除的apache2文件夹,而我不应该#39 ; t试图卸载旧版本,显然它在重新安装过程中没有重新创建(/ etc / apache2 / users)。我的etc文件夹中没有apache2文件夹,我在根级别,所以我假设我必须在/ etc / apache2中搜索/ usr / local下的/ users,但是在那个文件夹中我只有有目录2.4。

我对所有这些目录和文件的组织感到非常困惑,我似乎无法理解他们是否被试图帮助我的人感动,如果我不小心删除了/ etc / apache2 / users在卸载那些以前的版本时,或者我刚刚搞砸了太多不同的指南。

所以我的问题是:

我可以以某种方式修复此问题,因为它是在localhost中正确解析PHP的端口80上显示myApp吗?

如果没有,我怎样才能以干净的方式卸载apache,确保我不会删除那些不应该触及的重要文件,同时我会删除所有会创建的文件与新安装的版本冲突?

1 个答案:

答案 0 :(得分:0)

经过大量的研究和协作,使Apache再次工作的唯一方法是为我的操作系统重置工厂并返回默认组织。 现在我的文件夹看起来很干净,而且apache正在端口80上运行,而不是8080.我现在将继续为myApp创建一个虚拟主机。