标签:mysql apach 服务器 print attribute keyword 安装配置 基础 UI
Mac 自带了Apache,并默认支持PHP环境,只需要配置Apache和PHP即可使用。需要单独安装mysql服务端。
sudo cp /etc/apache2/httpd.conf /etc/apache2/httpd.conf.bak
sudo vim /etc/apache2/httpd.conf
#搜索DocumentRoot,把 DocumentRoot "/Library/WebServer/Documents"中的目录修改为自己的网站目录
DocumentRoot "/Users/apple/Sites"
#把 <Directory "/Library/WebServer/Documents"]] > 改为 <Directory "/Users/apple/Sites"]] >
#修改运行Apache的用户和用户组,搜索Group和User
Group www
User www
chmod 755 -R /Users/apple/Sites
Chown www:www -R /Users/apple/Sites
sudo vim /etc/apache2/httpd.conf
#找到 #LoadModule php5_module libexec/apache2/libphp5.so删除行首的 # 让服务器启动时加载php模块
#重启apache
sudo apachectl -k restart
brew install mysql
sudo apachectl -k restart
<?php
phpinfo();
?>
标签:mysql apach 服务器 print attribute keyword 安装配置 基础 UI
原文地址:https://www.cnblogs.com/cangqinglang/p/9001797.html