admin 发表于 2014-9-26 09:52

阿里云服务器linux下安装Apache、php环境

一、ssh登陆阿里云服务器

执行命令:

yum installphp

二、启动Apache+php服务器

命令:

httpd -k start

异常:

httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
处理:

find -name httpd.conf
编辑httpd.conf文件,搜索"#ServerName",添加ServerName localhost:80
搜索命令:
你在命令模式下敲斜杆(/)这时在状态栏(也就是屏幕左下脚)就出现了 “/”然后输入你要查找的关键字
敲回车就可以了。如果你要继续查找此关键字,敲字符n就可以继续查找了。值得注意的是“/”是向下查找,而“?”
是向上查找,而在键盘定义上“?”刚好是“/”的上档符.

如:
# vi httpd.conf
#ServerName www.example.com:80
ServerName localhost:80
再重新启动apache 即可。

三、通过ftp上传HTML或php项目文件到/var/www/html

如:上传文件为test.html或test.php

四、访问阿里云apahe+php服务器

如:在浏览器中输入:阿里云公网ip/test.html/php 访问阿里云服务器

至此配置结束。

页: [1]
查看完整版本: 阿里云服务器linux下安装Apache、php环境