当前位置:首页 » 操作系统 » apache安装linux

apache安装linux

发布时间: 2022-06-06 20:33:15

‘壹’ linux命令怎么安装apache

以Centos为例:
Apache在Linux系统中,其实叫“httpd”
CentOS可以使用yum命令,非常简单和容易的安装Apache,下面演示一下步骤:
1、安装Apache
yum install httpd
2、设置Apache服务的启动级别
chkconfig --levels 235 httpd on
Apache是一个服务,可以通过设置服务的启动级别来启动。2,3,5三个级别分别表示。
3、设置开机启动。
/etc/init.d/httpd start

‘贰’ linux怎么安装apache

这是CentOS7编译安装方法(或者你也可以yum安装,这种安装方法版本较低):
CentOS 下编译安装Apache
卸载原有的apache
首先从 http://httpd.apache.or 下载apache源码包httpd-2.4.4.tar.gz
然后从 http://apr.apache.org 下载apr-1.4.6.tar.gz和apr-util-1.5.1.tar.gz
然后从 http://sourceforge.net/ 下载pcre-8.32.tar.gz和pcre-devel-8.32.tar.gz
先装gcc和make
yum -y install gcc
yum -y install make
yum -y install gcc-c++ 没有这个gcc-c++一会编译不prce
切到下载好的源码包目录,本人是~/Download

安装apr:
tar -zvxf apr-1.4.6.tar.gz
cd apr-1.4.6
./configure --prefix=/usr/local/apr
make && make install

安装apr-util
tar -zvxf apr-util-1.5.1.tar.gz
cd apr-util-1.5.1
./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr
make && make install

安装pcre
tar -zvxf pcre-8.32.tar.gz
cd pcre-8.32
./configure
make && make install

安装pcre-devel
如果已经安装好了pcre 一定要安装
tar –zxvf pcre-devel-8.32.tar.gz
cd pcre-devel-8.32
./configure
make && make install

安装apache 一定要先装上面那三个不然编译不了
tar -zvxf httpd-2.4.4.tar.gz
cd httpd-2.4.4
./configure --prefix=/usr/local/apache –with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util
make && make install

配置/usr/local/apache/conf下的http.conf文件(先备份)。
1、服务器
#ServerName www.example.com:80 前的#号删除。
2、目录访问权限
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Allow from all #修改为此样
</Directory>
3、默认字符集
AddDefaultCharset utf-8 #指定默认字符集

4、启动httpd
cd bin/
./apachectl start | restart | stop

将httpd添加为系统服务
cp apachectl /etc/init.d/httpd
/etc/init.d/

编辑httpd,在第二行加入如下信息:
# chkconfig: 345 85 15
# description: Activates/Deactivates Apache Web Server
以上两句必须添加,否则会提示“httpd服务不支持”;第一行3个数字参数意义分别为:哪些Linux级别需要启动httpd(3,4,5);启动序号(85);关闭序号(15)。

添加启动信息(Ubuntu与CentOS有区别)
chkconfig –add httpd
查看是否添加成功
chkconfig --list

服务器控制
service httpd start | restart | stop

‘叁’ linux系统怎么安装apache服务器

解决方法:
安装准备工作
登录linux(root/123456)
利用netconfig命令设置IP地址等信息
(1)——设置IP、子网掩码、网关、主DNS
(2)——service network restart 重启网络服务使修改生效
也可以通过修改文件进行设置
vi /etc/sysconfig/network-scripts/ifcfg-eth0 设置IPADDR=IP地址,NETMASK=掩码,ONBOOT=YES,启动时启动网卡 vi /etc/resolv.conf 设置DNS

设置完成后通过ifconfig命令可以查看当前系统的网络信息

通过SecurCRT工具链接到linux下

通过Zmodem Upload List添加需要从本地传输到linux下的文件,然后执行Start Zmodem Upload启动传输。

APACHE的安装
[root@sugar ~]# gzip -d httpd-2.2.4.tar.gz[root@sugar ~]# tar xvf httpd-2.2.4.tar
[root@sugar ~]# cd httpd-2.2.4
[root@sugar ~]# ./configure
[root@sugar ~]# make
[root@sugar ~]# make install

apache默认安装路径:/usr/local/apache2
/usr/local/apache2下面关键目录说明
conf :apache服务器的配置目录
htdocs: 需要发布应用程序的目录
bin : apache服务器的可执行程序目录
apache的配置修改

‘肆’ linux下Apache2的安装和配置

在Ubuntu中安装apache

安装指令:sudo apt-get install apache2

安装结束后:

产生的启动和停止文件是:/etc/init。d/apache2

启动:sudo apache2ctl -k start

停止:sudo apache2ctl -k stop

重新启动:sudo apache2ctl -k restart

配置文件保存在:/etc/apache2

需要说明的是,普通的apache发行版本配置文件是:

httpd。conf

Ubuntu发行版本的主配置文件是:

apache2。conf

在apache2。conf引用到了以下文件:

# 包含动态模块的配置:

Include /etc/apache2/mods-enabled/*。load

Include /etc/apache2/mods-enabled/*。conf

# 包含用户自己的配置:

Include /etc/apache2/httpd。conf

# 包含端口监听的配置:

Include /etc/apache2/ports。conf

# 包含一般性的配置语句片断:

Include /etc/apache2/conf。d/

# 包含虚拟主机的配置指令:

Include /etc/apache2/sites-enabled/

修改httpd。conf

增加以下内容:

ServerName 127。0。0。1:80

‘伍’ 怎么安装linux里的httpd

首先安装httpd这个包
然后,你可以修改主配置文件/etc/httpd/httd.conf
或者,你可以不修改!
启动服务,service httpd start
默认就可以访问了哦!

‘陆’ linux命令怎么安装apache

以Centos为例:
Apache在Linux系统中,其实叫“httpd”
CentOS可以使用yum命令,非常简单和容易的安装Apache,下面演示一下步骤:
1、安装Apache
yum install httpd
2、设置Apache服务的启动级别
chkconfig --levels 235 httpd on
Apache是一个服务,可以通过设置服务的启动级别来启动。2,3,5三个级别分别表示。
3、设置开机启动。
/etc/init.d/httpd start

‘柒’ Linux服务器Apache怎么安装

解决方法:
安装准备工作
登录linux(root/123456)
利用netconfig命令设置IP地址等信息
(1)——设置IP、子网掩码、网关、主DNS
(2)——service network restart 重启网络服务使修改生效
也可以通过修改文件进行设置
vi /etc/sysconfig/network-scripts/ifcfg-eth0 设置IPADDR=IP地址,NETMASK=掩码,ONBOOT=YES,启动时启动网卡 vi /etc/resolv.conf 设置DNS

设置完成后通过ifconfig命令可以查看当前系统的网络信息

通过SecurCRT工具链接到linux下

通过Zmodem Upload List添加需要从本地传输到linux下的文件,然后执行Start Zmodem Upload启动传输。

APACHE的安装
[root@sugar ~]# gzip -d httpd-2.2.4.tar.gz[root@sugar ~]# tar xvf httpd-2.2.4.tar
[root@sugar ~]# cd httpd-2.2.4
[root@sugar ~]# ./configure
[root@sugar ~]# make
[root@sugar ~]# make install

apache默认安装路径:/usr/local/apache2
/usr/local/apache2下面关键目录说明
conf :apache服务器的配置目录
htdocs: 需要发布应用程序的目录
bin : apache服务器的可执行程序目录
apache的配置修改

[root@sugar ~]# vi /usr/local/apache2/conf/httpd.conf
将#ServerName www.example.com:80 中的“#”删掉,并将 www.example.com 改为本机的linux的ip地址

apache服务安装检测
apache安装是否成功的检测
启动apache服务
说明:apache服务的启动和停止
[root@sugar ~]# cd /usr/local/apache2/bin

[root@sugar ~]# ./apachectl stop 这是停止apache服务
[root@sugar ~]# ./apachectl start 这是启动apache服务

在window平台通过ie访问linux上面apache的测试页面,
http://your_linux_ip/ 如图所示

如果出现it works字样,说明apache安装成功

‘捌’ linux安装apache要不要重启

假设当前Linux用户的apahce安装目录为/usr/local/apache2,那么在命令行终端中使用以下命令启动,停止和重启apache。
1. 启动apahce的命令:
/usr/local/apache2/bin/apachectl start apache
2. 停止apache的命令:
/usr/local/apache2/bin/apachectl stop
3. 重启apache的命令:
/usr/local/apache2/bin/apachectl restart
要在重启 Apache 服务器时不中断当前的连接,则应运行:
/usr/local/sbin/apachectl graceful

如果当前用户的apache已经安装为linux的服务的话,可以使用以下命令进行以上操作。
1. 启动apache
service httpd start
2. 停止服务apache
service httpd stop
3. 重新启动apache
service httpd restart

‘玖’ 如何利用linux 安装apache 服务器的配置与管理

接下来就要试试动手安装Apache服务程序啦,同学们需要注意使用yum命令安装软件时后面写的是服务程序的名字,而apache服务的软件包名称叫做httpd,直接执行yum install apache命令则是会报错误的。

[root@linuxprobe ~]# yum install httpd

将httpd服务程序启动并加入到开机启动项中,让Web服务程序能够随系统开机而启动运行:

php">[root@linuxprobe~]#systemctlstarthttpd
[root@linuxprobe~]#systemctlenablehttpd
ln-s'/usr/lib/systemd/system/httpd.service''/etc/systemd/system/multi-user.target.wants/httpd.service'
#http://www.linuxprobe.com/chapter-10.html#101

‘拾’ 怎么在linux下安装apache服务器

解决方法: 安装准备工作 登录linux(root/123456) 利用netconfig命令设置IP地址等信息 (1)——设置IP、子网掩码、网关、主DNS (2)——service network restart 重启网络服务使修改生效 也可以通过修改文件进行设置 vi /etc/sysconfig/network-scripts/ifcfg-eth0 设置IPADDR=IP地址,NETMASK=掩码,ONBOOT=YES,启动时启动网卡 vi /etc/resolv.conf 设置DNS 设置完成后通过ifconfig命令可以查看当前系统的网络信息 通过SecurCRT工具链接到linux下 通过Zmodem Upload List添加需要从本地传输到linux下的文件,然后执行Start Zmodem Upload启动传输。 APACHE的安装 [root@sugar ~]# gzip -d httpd-2.2.4.tar.gz[root@sugar ~]# tar xvf httpd-2.2.4.tar [root@sugar ~]# cd httpd-2.2.4 [root@sugar ~]# ./configure [root@sugar ~]# make [root@sugar ~]# make install apache默认安装路径:/usr/local/apache2 /usr/local/apache2下面关键目录说明 conf :apache服务器的配置目录 htdocs: 需要发布应用程序的目录 bin : apache服务器的可执行程序目录 apache的配置修改 [root@sugar ~]# vi /usr/local/apache2/conf/httpd.conf 将#ServerName :80 中的“#”删掉,并将 改为本机的linux的ip地址 apache服务安装检测 apache安装是否成功的检测 启动apache服务 说明:apache服务的启动和停止 [root@sugar ~]# cd /usr/local/apache2/bin [root@sugar ~]# ./apachectl stop 这是停止apache服务 [root@sugar ~]# ./apachectl start 这是启动apache服务 在window平台通过ie访问linux上面apache的测试页面, your_linux_ip/ 如图所示 如果出现it works字样,说明apache安装成功

热点内容
ftperror550 发布:2024-10-31 21:22:06 浏览:472
c语言连接sqlserver 发布:2024-10-31 21:15:57 浏览:673
服务器和电脑主机的辐射大吗 发布:2024-10-31 21:09:40 浏览:461
移动彩云存储空间 发布:2024-10-31 21:07:25 浏览:324
编译armlinux 发布:2024-10-31 21:03:08 浏览:815
java获取字符串长度 发布:2024-10-31 21:03:00 浏览:527
触动精灵手机版手游免费脚本 发布:2024-10-31 20:48:16 浏览:962
ubuntu怎么编译deb包 发布:2024-10-31 20:37:31 浏览:69
少儿编程学院 发布:2024-10-31 20:34:40 浏览:74
选单反看什么配置 发布:2024-10-31 20:34:18 浏览:328