1、使用WinSCP.exe工具上传系统镜像文件rhel-server-7.0-x86_64-dvd.iso到/usr/local/src目录
2、使用Putty.exe工具远程连接到RHEL服务器
3、挂载系统镜像文件
- mkdir /media/cdrom #新建镜像文件挂载目录
- cd /usr/local/src #进入系统镜像文件存放目录
- ls #列出目录文件,可以看到刚刚上传的系统镜像文件
- mount -t iso9660 -o loop /usr/local/src/rhel-server-7.0-x86_64-dvd.iso /media/cdrom #挂载系统镜像
- cd /media/cdrom #进入挂载目录,使用ls命令可以看到已经有文件存在了
备注:umount /media/cdrom #卸载系统镜像
4、设置开机自动挂载系统镜像文件
- vi /etc/fstab #添加以下代码。实现开机自动挂载
- /usr/local/src/rhel-server-7.0-x86_64-dvd.iso /media/cdrom iso9660 defaults,ro,loop 0 0
- :wq! #保存退出
备注:iso9660使用df -T 查看设备
5、配置本地yum源
- cd /etc/yum.repos.d/ #进入yum配置目录
- touch rhel-media.repo #建立yum配置文件
- vi rhel-media.repo #编辑配置文件,添加以下内容
- [rhel-media]
- name=Red Hat Enterprise Linux 7.0 #自定义名称
- baseurl=file:///media/cdrom #本地光盘挂载路径
- enabled=1 #启用yum源,0为不启用,1为启用
- gpgcheck=1 #检查GPG-KEY,0为不检查,1为检查
- gpgkey=file:///media/cdrom/RPM-GPG-KEY-redhat-release #GPG-KEY路径
- :wq! #保存退出
6、使用yum命令自动安装软件
- yum clean all #清除yum缓存
yum makecache #缓存本地yum源中的软件包信息
- yum install httpd #安装apache
- rpm -ql httpd #查询所有安装httpd的目录和文件
- systemctl start httpd.service #启动apache
- systemctl stop httpd.service #停止apache
- systemctl restart httpd.service #重启apache
- systemctl enable httpd.service #设置开机启动
RHEL 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙。
关闭firewall:
- systemctl stop firewalld.service #停止firewall
- systemctl disable firewalld.service #禁止firewall开机启动
- yum install iptables-services #安装iptables
- vi /etc/sysconfig/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 -j REJECT --reject-with icmp-host-prohibited
- -A FORWARD -j REJECT --reject-with icmp-host-prohibited
- COMMIT
- :wq! #保存退出
- systemctl start iptables.service #启动防火墙
- systemctl stop iptables.service #停止防火墙
- systemctl restart iptables.service #重启防火墙
- systemctl status iptables.service #查看防火墙状态
- systemctl enable iptables.service #设置开机启动