系统为ubuntu
1.安装apache2
sudo apt-get install apache2
安装的目录在/etc/apache2下,配置文件apache2.conf。
在conf.d目录下,存在charset文件,可把设置编码,如:AddDefaultCharset UTF-8
日志文件在/var/log/apache2下,注意log文件的一定有可写权限。
/etc/apache2/envvars文件是一些环境参数,看看内容就知道:
export APACHE_RUN_USER=www-data
export APACHE_RUN_GROUP=www-data
export APACHE_PID_FILE=/var/run/apache2.pid
注:若想修改这些信息,就在这些文件里修改。
2.启动
sudo /etc/init.d/apache2 restart|start|stop
3.http://localhost/
出现It works!页面即表示正常运行。
看到的这个页面是在/var/www下的index.html。
不用配置任何即可使用。
运行起来后可使用命令查看进程信息:
ps -ef|grep apache2
没有评论:
发表评论