linux 安装Apache服务器

这篇文章先别看,,有些地方我不是很明白,写错了一些地方,正在咨询会linux的大神

安装好Apache就可以用Http访问或者下载电脑的文件了

我还是用

linux 安装Apache服务器

连接我的linux电脑

linux 安装Apache服务器

linux 安装Apache服务器

linux 安装Apache服务器

linux 安装Apache服务器

咱把Apache安装到opt 文件里面

输入 cd ..    返回上一级目录

输入 ls 查看 目录

linux 安装Apache服务器

cd opt

linux 安装Apache服务器

httpd.apache.org/download.cgi

linux 安装Apache服务器

linux 安装Apache服务器

用http下载

wget   https://www-eu.apache.org/dist//httpd/httpd-2.4.39.tar.gz

linux 安装Apache服务器

ls  看一下文件目录

linux 安装Apache服务器

解压这个压缩包

tar xf httpd-2.4.39.tar.gz
然后ls看一下目录

linux 安装Apache服务器

cd httpd-2.4.39

ls

linux 安装Apache服务器

然后运行./configure 检测系统配置,看看是不是环境允许安装   (“.”表示当前目录;“/”是目录分隔符;合起来就是当前目录下的configure文件)

linux 安装Apache服务器

安装APR

http://apr.apache.org/download.cgi

linux 安装Apache服务器

linux 安装Apache服务器

cd ..  咱还是放到opt目录

linux 安装Apache服务器

wget https://www-eu.apache.org/dist//apr/apr-1.7.0.tar.gz

linux 安装Apache服务器

解压

tar xf apr-1.7.0.tar.gz

ls

cd apr-1.7.0

ls

linux 安装Apache服务器

可以看到这个也有configure  (Linux下,源码的安装一般由3个步骤组成:配置(configure)、编译(make)、安装(make install)。)

为了后期方便删除,我就指定apr的安装目录

mkdir aprinstall

linux 安装Apache服务器

现在安装

./configure --prefix=/aprinstall    (./configure就是上面说的检查配置  如果没有问题就会生成makefile    --prefix=告诉系统安装的路径)

make

make install

上一篇:s3cmd在配置后使用时提示ERROR: S3 error: 403 (InvalidAccessKeyId): The AWS Access Key Id you provided does not exist in our records.


下一篇:pt-table-checksum解读