关闭防火墙编译安装

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关闭防火墙编译安装相关的知识,希望对你有一定的参考价值。

rpm -qa |grep 软件包名字 查询已经安装的软件
wget http://archive.apache.org/dist/httpd/httpd-2.4.25.tar.bz2 下载httpd的安装包
tar xvf httpd-2.4.25.tar.bz2 解压到当前目录
编译安装需要自己知道路径文件夹,然后自己删除
yum install *.rpm -y 安装所有的
./configure --prefix=/app/httpd --sysconfdir=/etc/httpd --enable-ssl 安装目录
echo ‘PATH=/app/httpd/bin:$PATH‘ > /etc/profile.d/httpd.sh 加入变量里
. /etc/profile.d/httpd.sh 启动变量
echo $PATH 查看变量
apachectl start 启用网站

1 关闭防火墙
centos 7
systemctl disable firewalld
systemctl stop firewalld
centos6
chkconfig iptables off
service iptables stop

2 关闭SELinux
sed -i ‘s/SELINUX=enforcing/SELINUX=disabled/‘ /etc/selinux/config

3 reboot
echo ‘- - -‘ > /sys/class/scsi_host/host2/scan
显示所有设备

实验:基于 局网的Yum源

1 httpd 包 yum install httpd

实验:编译安装httpd-2.4.25
yum install gcc apr-devel apr-util-devel pcre-devel openssl-devel
tar xvf httpd-2.4.25.tar.bz2
./configure --prefix=/app/httpd --sysconfdir=/etc/httpd --enable-ssl
make
make install
ss -tnl查看端口
apachectl start开启80端口
/app/httpd/bapachectl start开启80端口
curl http://172.22.149.89/hello.sh|bash查询在执行bash
yum install apr apr-devel apr-util apr-util-devel -y
安装apr模块
1、查询命令java来自于哪个rpm包
2、yum的配置和使用,包括yum仓库的创建
3、编写系统初始化脚本 reset.sh,包括别名,提示符颜色,yum仓库配置文件,安装tree,ftp,lftp,telnet等包
4、在CentOS 7上编译安装 apache 2.4.25 源码包,并启动此服务

/dev/hda,hdb,hdc

实验:备份还原分区表

实验:建立基于网络Http的yum 仓库

实验:分区管理fdisk

yum install net-tools -y 安装网络查询命令
yum search curses.h搜索这个安装包
make && make install没有出现报错就继续执行安装
yum install ncurses-devel安装依赖包
./configure --prefix=/app/cmatrix 编辑安装路径创建文件夹
make && make install执行make,如果成功了就安装make install安装
echo ‘PATH=/app/cmatrix/bin:$PATH‘ > /etc/profile.d/cmatrix.sh 加入变量里并且加入至一个文件夹里
. /etc/profile.d/cmatrix.sh 使他现在就可以使用

dd if=/dev/sda of=/home/data/mbr bs=1 count=64 skip=446 从446字节开头的开始备份
dd if=/dev/zero of=/dev/sda bs=1 count=64 seek=446从446字节开始往后写64个字节填充0
hexdump -C -n 512 /dev/sda 查看512字节开头
scp /home/data/mbr 172.22.149.89:root/拷贝至其他机器root下
scp 172.22.149.89:/root/mbr ./考到当前光盘根目录下
parted -l 查看分区信息
parted /dev/sdb mklabel gpt 将分区转化为gpt分区
parted /dev/sdb print 查看分区信息
fdsik /dev/sdb 创建分区
parted /dev/sdb mkpart primary 1 1024 创建1到1024的分区主分区
fdisk /dev/sdb 创建分区,m帮助d删除w写入

yum install mysql-server mysql mysql-devel -y 安装mysql数据库
出现乱码ctrl+退格键
wget wget http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.63.tar.gz
wget http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.63.tar.gz下载数据库
wget -c 是断点下载中途中断后接着下载
/etc/init.d/mysqld restart 启用服务

以上是关于关闭防火墙编译安装的主要内容,如果未能解决你的问题,请参考以下文章

linux下的Mysql编译安装与基本使用

Redis数据库的编译安装方法

mariadb编译安装流程

MySQL编译安装多实例

centos7 编译安装lamp

CentOS6.5 编译安装Nginx