linux期末

1.linux配置ip

## 进入到路径配置ip
 cd /etc/sysconfig/network-scripts
 //重启网路
 systemctl restart network

linux期末_第1张图片

添加用户并配置密码

useradd lilinyu
passswd lilinyu
su lilinyu
cd /home/lilinyu
mkdir hello

linux期末_第2张图片

配置yum源
编写脚本文件

#!/bin/bash

# 创建本地源文件夹
mkdir -p /media/centos/
# 挂载镜像文件至指定的目录
mount /dev/cdrom /media/centos
# 备份原本地源
cp -rf /etc/yum.repos.d  /etc/yum.repos.d_$(date '+%Y%m%d_%H%M%S')
# 删除默认原本地源
rm -rf /etc/yum.repos.d/*
# 配置本地源,创建Media.repo文件,并配置如下内容
cd /etc/yum.repos.d/
>Media.repo
echo '[iso]'                            >> Media.repo
echo 'name=Media'                       >> Media.repo
echo 'baseurl=file:///media/centos/'    >> Media.repo
echo 'gpgcheck=0'                       >> Media.repo
echo 'enabled=1'                        >> Media.repo
# 清除yum缓存
yum clean all
# 缓存本地yum源
yum makecache

安装httpd

yum install httpd -y

查看httpd状态

systemctl status httpd

在这里插入图片描述

启动httpd

systemctl start httpd
systemctl status httpd

linux期末_第3张图片

关闭防火墙

systemctl stop firewalld
systemctl status firewalld

linux期末_第4张图片

在浏览器查看

linux期末_第5张图片

修改首页为自己的信息

在/var/www/html下新建index.html文件
linux期末_第6张图片
查看浏览器
linux期末_第7张图片
问题

systemctl stop NetworkManager
systemctl start network.service

你可能感兴趣的:(linux,服务器,运维)