[部署]CentOS安装apache

环境

虚拟机:VMWare10.0.1 build-1379776

操作系统:CentOS7 64位

步骤

1、使用yum安装

yum install httpd httpd-devel

2、启动

apachectl start

开机启动服务安装

1、在/etc/init.d目录先建立httpd文件

vi /etc/rc.d/init.d/httpd

httpd文件内容

#!/bin/sh
#
# Startup script for the Apache Web Server
#
# chkconfig: 345 85 15
# Description: Apache is a World Wide Web server.  It is used to serve #           HTML files and CGI.
# processname: httpd
# Source function library.

. /etc/rc.d/init.d/functions

# See how we were called.
case "$1" in
start)
echo -n "Starting httpd:"
/usr/sbin/apachectl start
;;
stop)
echo -n "Shutting down httpd:";
/usr/sbin/apachectl stop
;;
status)
/usr/sbin/apachectl status
;;
restart)
echo -n "Restarting httpd:";
/usr/sbin/apachectl restart
;;
reload)
echo -n "Reloading httpd: "
/usr/sbin/apachectl restart
echo
;;
*)
echo "Usage: $0 {start|stop|restart|reload|status}"
exit 1
esac

exit 0

2、修改/etc/rc.d/init.d/httpd的执行权限

chmod 755 /etc/rc.d/init.d/httpd

3、加入系统服务

chkconfig --add httpd
chkconfig --levels 2345 httpd on
时间: 2024-10-03 13:46:28

[部署]CentOS安装apache的相关文章

Centos 安装Apache软件

检查rpm    -qa    httpd [[email protected] icons]# rpm    -qa   |grep  httpd httpd-2.2.15-30.el6.centos.i686 查看安装路径 rpm -ql httpd-2.2.15-30.el6.centos.i686 确保安装完 [[email protected] icons]#  yum   -y  install      httpd 或者也可以 rpm -qa  httpd rmp -ql http

CentOS 安装 apache

apache在centos7中是Apache HTTP server.如下对httpd的解释就是Apache HTTP Server.所以想安装apache其实是要安装httpd. [[email protected] ~]# yum install httpd  #安装 [[email protected] ~]# chkconfig httpd on    #设置开机启动 Note: Forwarding request to 'systemctl enable httpd.service'

CentOS安装Apache的FastCGI模块(mod_fastcgi)

网上有很多篇关于Apache的fastcgi模块安装说明的文章,大部分都是基于Apache源码编译的,如果是通过yum install方式安装httpd的话,直接依葫芦画瓢必然会遇到各种各样的编译问题,通过查阅老外写的一些关于CentOS下Apache的FastCGI模块(mod_fastcgi)的安装文档,我大致重新整理了一下. 1. 安装编译相关的依赖包 # yum install httpd-devel apr apr-devel libtool 2. 下载mod_fastcgi源代码 #

Linux CentOS 安装Apache

一.安装Apache yum -y install httpd /etc/init.d/httpd start 文档目录在/var/www/html 二.安装PHP yum -y install php 修改Apache配置文件,/etc/httpd/conf/httpd.conf 对应位置追加以下内容: LoadModule php5_module /usr/lib64/httpd/modules/libphp5.so 追加 AddType application/x-httpd-php .p

CentOS 安装Apache服务

Centos基于Redhat, 通过yum可以安装所需要的软件包. 1. yum -y install httpd , 这个会将httpd安装在 /etc/目录下. 2. 安装成功后,执行以下命令来启动httpd服务 service httpd start 3. 在浏览器中访问, 下面这个IP是我的IP地址,需要替换为你自己的IP地址. http://10.64.246.152/ 会看到如下页面. 看到这个页面就说明apache启动成功了! 4. 要想查看安装的apahche版本,执行以下命令,

[部署]CentOS安装MariaDB

环境 虚拟机:VMWare10.0.1 build-1379776 操作系统:CentOS7 64位 步骤 1.添加MariaDB的yum仓库源,在/etc/yum.repos.d/ 下建立 MariaDB.repo文件,文件内容可以到https://downloads.mariadb.org/mariadb/repositories/选择自己的系统版本和mariadb版本,本文选了mariadb5.5: # MariaDB 5.5 CentOS repository list - create

[部署]CentOS安装PHP环境

环境 虚拟机:VMWare10.0.1 build-1379776 操作系统:CentOS7 64位 HTTP Server:Apache(httpd) 步骤 PHP环境需要HTTP服务器支持,本文使用的HTTP服务器为Apache,您也可以选用现在比较流行的Nginx. Apache默认根目录查看位置/etc/httpd/conf/httpd.conf文件中查看DocumentRoot配置值 1.安装php yum install php php-devel 2.安装php常用扩展(可选,根据

阿里云 centos 安装apache和php

mysql使用阿里云的rds httpd服务 1. 安装apr和apr-util 2. 安装 httpd apache.org,apr.apache.org 安装命令: ./configure --prefix=/usr/local/apache  --sysconfdir=/etc/httpd --enable-so --enable-ssl --enable-cgi --enable-rewrite --with-zlib --with-pcre --with-apr=/usr/local/

Centos安装Apache启动错误:

Apache启动错误:httpd.exe: Could not reliably determine the server's fully qualified 在自己电脑配置Apache开发环境问题的时候,可能会遇到apache的启动错误:httpd.exe: Could not reliably determine the server's fully qualified domain name, using 192.168. x. x for ServerName,这个错误在error.lo