十(1,5),十一单元练习题

<<<第十单元练习题>>>
1.配置desktop主机和server主机的日志服务要求如下:
*)desktop主机中的日志全部定向到/var/log/westos文件中
*)时时同步desktop主机中的所有日志到server中

5.配置系统中的systemd-journal程序,使journal命令可以查看到关机前的日志

1.

desktop主机:

vim /etc/rsyslog.conf

重启rsyslog服务


---------------------------------------------------------------------

desktop主机:

systemctl stop firewalld.service

vim /etc/rsyslog.conf

重启rsyslog服务

server主机:

systemctl stop firewalld.service

vim /etc/rsyslog.conf

重启rsyslog服务,并查看UDP端口号

清空日志,并发送测试消息

收到测试消息

5.

创建目录“journal”-->修改权限-->重启进程-->重启虚拟机

发现日志是从05:42:50开始记录,这个时间是重启前的时间

<<<第十一单元练习>>>
1.在系统中创建set-ip-tool命令要求如下
当在系统中执行set-ip-tool 172.25.254.X 后
*)会自动显示ifconfig命令的输出
*)系统ip被设定为:172.25.254.X
*)系统网关被设定为:172.25.254.250
*)系统dns被设定为:172.25.254.250

1.
[[email protected] Desktop]# vim set-ip-tool
--------------------------------------------------
#!/bin/bash
IP=$1
DIR=/etc/sysconfig/network-scripts
> $DIR/ifcfg-eth0
echo "DEVICE=eth0" > $DIR/ifcfg-eth0
echo "BOOTPROTO=none" >> $DIR/ifcfg-eth0
echo "ONBOOT=yes" >> $DIR/ifcfg-eth0
echo "TYPE=Ethernet" >> $DIR/ifcfg-eth0
echo "IPADDR0=$IP" >> $DIR/ifcfg-eth0
echo "PREFIX0=24" >> $DIR/ifcfg-eth0
echo "GATEWAY=172.25.254.250" >> $DIR/ifcfg-eth0
echo "DNS=172.25.254.250" >> $DIR/ifcfg-eth0
systemctl restart network.service &> /dev/null
ifconfig
:wq
--------------------------------------------------
[[email protected] Desktop]# ll
total 4
-rw-r--r--. 1 root root 452 Oct 17 23:17 set-ip-tool
[[email protected] Desktop]# chmod u+x set-ip-tool
[[email protected] Desktop]# ll
total 4
-rwxr--r--. 1 root root 452 Oct 17 23:17 set-ip-tool
[[email protected] Desktop]# $PATH
bash: /usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin: No such file or directory
[[email protected] Desktop]# mv set-ip-tool /usr/local/bin/
[[email protected] Desktop]# ls /usr/local/bin/
lab  set-ip-tool
[[email protected] Desktop]# systemctl stop NetworkManager.service
[[email protected] Desktop]# set-ip-tool 172.25.254.100
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 172.25.254.100  netmask 255.255.255.0  broadcast 172.25.254.255
        inet6 fe80::5054:ff:fe00:320a  prefixlen 64  scopeid 0x20<link>
        ether 52:54:00:00:32:0a  txqueuelen 1000  (Ethernet)
        RX packets 456  bytes 43765 (42.7 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 1492  bytes 106903 (104.3 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 0  (Local Loopback)
        RX packets 739  bytes 66718 (65.1 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 739  bytes 66718 (65.1 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

[[email protected] Desktop]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         172.25.254.250  0.0.0.0         UG    0      0        0 eth0
172.25.254.0    0.0.0.0         255.255.255.0   U     0      0        0 eth0
[[email protected] Desktop]# cat /etc/resolv.conf
# Generated by NetworkManager
domain ilt.example.com
search ilt.example.com example.com
nameserver 172.25.254.250

时间: 2024-12-28 21:48:58

十(1,5),十一单元练习题的相关文章

LINUX REDHAT第十一单元练习题

<<<第十一单元练习>>> 1.在系统中创建set-ip-tool命令要求如下 当在系统中执行set-ip-tool 172.25.254.X 后 *)会自动显示ifconfig命令的输出 *)系统ip被设定为:172.25.254.X *)系统网关被设定为:172.25.254.250 *)系统dns被设定为:172.25.254.250

第十一单元练习题

在系统中创建set-ip-tool命令要求如下 当在系统中执行set-ip-tool 172.25.254.X 后 *)会自动显示ifconfig命令的输出 *)系统ip被设定为:172.25.254.X *)系统网关被设定为:172.25.254.250 *)系统dns被设定为:172.25.254.250. 命令: vim  /mnt/set-ip-tool.sh    ##建立命令 **命令内容 **测试 命令:/mnt/set-ip-tool.sh 172 25 254 6 命令:rou

第十单元练习题

<<<第十单元练习题>>> 1.配置desktop主机和server主机的日志服务要求如下: *)desktop主机中的日志全部定向到/var/log/westos文件中 打开vim /etc/rsystem.conf 在55行 写入*.*     /var/log/westos *)时时同步desktop主机中的所有日志到server中 关闭desktop server中的防火墙 发送端: 接收端: 发送端打入:logger test messages 接收方打入:t

LINUX REDHAT第十单元练习题

<<<第十单元练习题>>> 1.配置desktop主机和server主机的日志服务要求如下: *)desktop主机中的日志全部定向到/var/log/westos文件中 *)时时同步desktop主机中的所有日志到server中 2.在server主机中用timedatectl命令设定系统时区为上海,时间为11:11:11 3.配置server主机的chronyd服务,使server主机中的时间可以被desktop主机同步 4.同步server主机中的时间到deskt

十(2,3,4),十三单元练习题

<<<第十单元练习题>>>2.在server主机中用timedatectl命令设定系统时区为上海,时间为11:11:113.配置server主机的chronyd服务,使server主机中的时间可以被desktop主机同步4.同步server主机中的时间到desktop主机中 2. 查看时间 修改并查看修改后的时间 3. [[email protected] ~]# vim /etc/chrony.conf 关闭server主机的防火墙并重启服务 4. [[email p

第一单元练习题

<<<第一单元练习题>>> 1.用student用户登陆系统图形界面 2.打开一个bash 3.修改student的密码,把密码更新成"T3st1ngtlme"(主机字母和数字) psaawad student 4.显示当前系统时间 date 5.显示当前系统时间,显示格式为:"小时:分钟:秒 AM/PM"(AM/PM为上下午标识) date +%X%p 6.显示"/usr/bin/clean-binary-files&

运维第一单元练习题

<<<第一单元练习题>>> 1.用student用户登陆系统图形界面 点击student user - 输入password 2.打开一个bash 右键--open in terminal application--utilities--terminal gnome-terminal 3.修改student的密码,把密码更新成"T3st1ngtlme"(主机字母和数字) passwd student -更改密码T3st1ngtlme 4.显示当前系统

第 1 2 4 单元练习题作业

<<<第一单元练习题>>> 1.用student用户登陆系统图形界面 2.打开一个bash 3.修改student的密码,把密码更新成"T3st1ngtlme"(主机字母和数字) 4.显示当前系统时间 date 5.显示当前系统时间,显示格式为:"小时:分钟:秒 AM/PM"(AM/PM为上下午标识) date +%r 6.显示"/usr/bin/clean-binary-files"的文件类型 file /u

一,二,四(1)单元练习题

<<<第一单元练习题>>>1.用student用户登陆系统图形界面2.打开一个bash3.修改student的密码,把密码更新成"T3st1ngtlme"(主机字母和数字)4.显示当前系统时间5.显示当前系统时间,显示格式为:"小时:分钟:秒 AM/PM"(AM/PM为上下午标识)6.显示"/usr/bin/clean-binary-files"的文件类型7.统计"/usr/bin/clean-bin