准备
检查当前系统版本 确定自己是否要更新
# cat /etc/redhat-release
检查当前系统是否已安装 apache 和 mysql
# yum list installed | grep httpd
# yum list installed |grep httpd
如果已经存在,请先执行卸载命令,不同的安装方式使用不同的卸载方式,例:
# yum remove httpd
添加apache和mysql用户
useradd -s /sbin/nologin -M apache
useradd -s /sbin/nologin -M mysql
CentOS 7.0 默认使用的是firewall作为防火墙,修改为iptables防火墙
1.关闭firewall
停止firewall
# systemctl stop firewalld.service
禁止firewall开机启动
# systemctl disable firewalld.service
安装iptables防火墙
# yum install iptables-services
编辑防火墙配置文件
# vi /etc/sysconfig/iptables
编辑 iptables 文件内容
# Firewall configuration written by system-config-firewall
# Manual customization of this file is not recommended.
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
-A INPUT -p icmp -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
-A INPUT -j REJECT --reject-with icmp-host-prohibited
-A FORWARD -j REJECT --reject-with icmp-host-prohibited
COMMIT
新增内容
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
重启防火墙使配置生效
# systemctl restart iptables.service
设置防火墙开机启动
# systemctl enable iptables.service
关闭SELINUX
# vi /etc/selinux/config
编辑 config 文件内容
#SELINUX=enforcing
#SELINUXTYPE=targeted
SELINUX=disabled
使配置立即生效
# setenforce 0
开始安装
安装软件时,根据提示,输入Y安装即可成功安装
安装Apache
# yum install httpd
启动apache
# systemctl start httpd.service
停止apache
# systemctl stop httpd.service
重启apache
# systemctl restart httpd.service
设置apache开机启动
# systemctl enable httpd.service
在客户端浏览器中打开服务器IP地址,会出现apache默认界面,即apache安装成功
若不能打开默认界面 安装也没有问题则:
设置阿里云的安全组:
1、进入阿里云的云服务管理控制台,在管理实例中选择本实例安全组,选择配置规则。
2、点击快速创建规则
3、添加安全组规则如下:
网卡类型:如果是经典网络,选择 公网。如果是 VPC (专有)网络,不需要选择。
规则方向:入方向。
授权策略:允许。
协议类型 和 端口范围:选择 HTTP 服务的 TCP 80 端口,HTTPS 的 443 端口,或者自定义 TCP 8080 端口(如图所示)。
授权对象:0.0.0.0/0,表示允许所有地址访问。
优先级:1,表示安全规则中优先级最高,数字越小优先级越高。
尝试
若还不能访问查看httpd.conf 文件中将 AllowOverride None 改为AllowOverride All
再尝试。
安装mysql
CentOS 7的yum源中没有mysql,需要下载mysql的repo源
下载mysql的repo源
# wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
安装mysql-community-release-el7-5.noarch.rpm包
# rpm -ivh mysql-community-release-el7-5.noarch.rpm
安装这个包后,会获得两个mysql的yum repo源:
# /etc/yum.repos.d/mysql-community.repo
# /etc/yum.repos.d/mysql-community-source.repo
安装mysql
# yum install mysql-server
根据步骤安装,到目前为止还没有设置数据库的密码
重置密码
重置密码前,首先要登录
# mysql -u root
登录时有可能报这样的错误:ERROR 2002 (HY000): Can‘t connect to local MySQL server through socket ‘/var/lib/mysql/mysql.sock‘ (2),原因是/var/lib/mysql的访问权限问题。
重启 mysql 服务
# systemctl restart mysqld.service
重置密码
# mysql -u root
mysql > use mysql;
mysql > update user set password=password('123456') where user='root';
mysql > exit;
安装PHP
# yum install php
安装PHP组件,使PHP支持 mysql
# yum install php-mysql php-gd libjpeg* php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-bcmath php-mhash
配置环境
Apache配置
编辑 httpd.conf 文件内容
# vi /etc/httpd/conf/httpd.conf
//添加ServerSignature On (在错误页中显示Apache的版本)
ServerSignature On
//允许服务器执行CGI及SSI,禁止列出目录
Options Indexes FollowSymLinks #修改为:Options Includes ExecCGI FollowSymLinks
//允许.htaccess
AllowOverride None #修改为:AllowOverride All
//设置不在浏览器上显示树状目录结构
#Options Indexes FollowSymLinks #修改为 Options FollowSymLinks
//设置默认首页文件,增加index.php
DirectoryIndex index.html#修改为:DirectoryIndex index.html index.htm index.php
//添加MaxKeepAliveRequests 500 (增加同时连接数)
MaxKeepAliveRequests 500
删除默认测试页
# rm -f /etc/httpd/conf.d/welcome.conf /var/www/error/noindex.html
php配置
编辑 php.ini 文件内容
# vi /etc/php.ini
//设置时区,把前面的分号去掉
date.timezone = PRC
//禁止显示php版本的信息
expose_php = Off
//支持php短标签
short_open_tag = ON
重启apache
# systemctl restart httpd.service
测试服务
# cd /var/www/html
# vi index.php
输入下面内容
<?php
phpinfo();
?>
注:apache 默认的程序目录是/var/www/html
权限设置:chown apache.apache -R /var/www/html
权限设置:chown mysql.mysql -R /var/lib/mysql
网友评论