配置并验证Split分离解析
配置并验证Split分离解析
案例1:配置并验证Split分离解析
案例2:查看进程信息
案例3:进程调度及终止
案例4:系统日志分析
1案例1:配置并验证Split分离解析
1.1问题
本例要求配置一台智能DNS服务器,针对同一个FQDN,当不同的客户机来查询时能够给出不同的答案。需要完成下列任务:
从主机192.168.4.207查询时,结果为:www.tedu.cn--->192.168.4.100
从其他客户端查询时,www.tedu.cn--->1.2.3.4
1.2方案
在配置DNS服务器时,通过view视图设置来区分不同客户机、不同地址库:
view"视图1"{
match-clients{客户机地址1;....;};//匹配第1类客户机地址
zone"目标域名"IN{//同一个DNS区域
type master;
file"地址库1";//第1份地址库
};
};
view"视图2"{
match-clients{客户机地址2;....;};//匹配第2类客户机地址
match-clients{any;};//匹配任意地址
zone"目标域名"IN{//同一个DNS区域
type master;
file"地址库2";//第2份地址库
};
};
....
view"视图n"{
match-clients{any;};//匹配任意地址
zone"目标域名"IN{//同一个DNS区域
type master;
file"地址库n";//第n份地址库
};
};
1.3步骤
实现此案例需要按照如下步骤进行。
步骤一:配置Split分离解析
1)为tedu.cn区域建立两份解析记录文件
第一份解析记录文件提供给客户机192.168.4.207、网段192.168.7.0/24,对应目标域名www.tedu.cn的A记录地址为192.168.4.100。相关操作及配置如下:
[root@svr7~]#cd /var/named/
[root@svr7 named]#cp -p tedu.cn.zone tedu.cn.zone.lan
[root@svr7 named]#vim tedu.cn.zone.lan
$TTL 1D
@IN SOA@rname.invalid.(
0;serial
1D;refresh
1H;retry
1W;expire
3H);minimum
@NS svr7.tedu.cn.
svr7 A 192.168.4.7
pc207 A 192.168.4.207
www A 192.168.4.100
l 第二份解析记录文件提供给其他客户机,对应目标域名www.tedu.cn的A记录地址为1.2.3.4。相关操作及配置如下:
[root@svr7 named]#cp -p tedu.cn.zone tedu.cn.zone.other
[root@svr7 named]#vim tedu.cn.zone.other
$TTL 1D
@IN SOA@rname.invalid.(
0;serial
1D;refresh
1H;retry
1W;expire
3H);minimum
@NS svr7.tedu.cn.
svr7 A 192.168.4.7
pc207 A 192.168.4.207
www A 1.2.3.4
2)修改named.conf配置文件,定义两个view,分别调用不同解析记录文件
[root@svr7~]#vim /etc/named.conf
options{
directory "/var/named";
};
acl "mylan"{//名为mylan的列表
192.168.4.207;192.168.7.0/24;
};
....
view "mylan"{
match-clients{mylan;};//检查客户机地址是否匹配此列表
zone"tedu.cn" IN{
type master;
file "tedu.cn.zone.lan";
};
};
view "other"{
match-clients{any;};//匹配任意客户机地址
zone "tedu.cn" IN{
type master;
file "tedu.cn.zone.other";
};
};
3)重启named服务
[root@svr7~]#systemctl restart named
步骤二:测试分离解析效果
1)从mylan地址列表中的客户机查询
在客户机192.168.4.207(或网段192.168.7.0/24内的任意客户机)上查询www.tedu.cn,结果是192.168.4.100:
[root@pc207~]#host www.tedu.cn 192.168.4.7
Using domain server:
Name:192.168.4.7
Address:192.168.4.7#53
Aliases:
www.tedu.cn has address 192.168.4.100
2)从其他客户机查询
在DNS服务器本机或CentOS真机上查询www.tedu.cn时,结果为1.2.3.4:
[root@svr7~]#host www.tedu.cn 192.168.4.7
Using domain server:
Name:192.168.4.7
Address:192.168.4.7#53
Aliases:
www.tedu.cn has address 1.2.3.4
案例2:查看进程信息
2.1问题
本例要求掌握查看进程信息的操作,使用必要的命令工具完成下列任务:
找出进程gdm的PID编号值
列出由进程gdm开始的子进程树结构信息
找出进程sshd的父进程的PID编号/进程名称
查看当前系统的CPU负载/进程总量信息
2.2方案
查看进程的主要命令工具:
ps aux、ps–elf:查看进程静态快照
top:查看进程动态排名
pstree:查看进程与进程之间的树型关系结构
pgrep:根据指定的名称或条件检索进程
2.3步骤
实现此案例需要按照如下步骤进行。
步骤一:找出进程gdm的PID编号值
使用pgrep命令查询指定名称的进程,选项-l显示PID号、-x精确匹配进程名:
[root@svr7~]#pgrep -lx gdm
1584 gdm
步骤二:列出由进程gdm开始的子进程树结构信息
使用pstree命令,可以提供用户名或PID值作为参数。通过前一步已知进程gdm的PID为1584,因此以下操作可列出进程gdm的进程树结构:
[root@svr7~]#pstree -p 1584
gdm(1584)-+-Xorg(1703)
|-gdm-session-wor(2670)-+-gnome-session(2779)-+-gnom+
|||-gnom+
|||-{gno+
|||-{gno+
||`-{gno+
||-{gdm-session-wor}(2678)
|`-{gdm-session-wor}(2682)
|-{gdm}(1668)
|-{gdm}(1671)
`-{gdm}(1702)
步骤三:找出进程sshd的父进程的PID编号/进程名称
要查看进程的父进程PID,可以使用ps -elf命令,简单grep过滤即可。找到进程sshd所在行对应到的PPID值即为其父进程的PID编号。为了方便直观查看,建议先列出ps表头行,以分号隔开再执行过滤操作。
[root@svr7~]#ps -elf | head -1;ps -elf | grep sshd
F S UID PID PPID C PRI NI ADDR SZ WCHAN STIME TTY TIME CMD
4 S root 1362 1 0 80 0-20636 poll_s Jan05?00:00:00/usr/sbin/sshd–D
....//可获知进程sshd的父进程PID为1
l 然后再根据pstree–p的结果过滤,可获知PID为1的进程名称为systemd:
[root@svr7~]#pstree -p | grep '(1)'
systemd(1)-+-ModemManager(995)-+-{ModemManager}(1018)
步骤四:查看当前系统的CPU负载/进程总量信息
l 使用top命令,直接看开头部分即可;或者top-n次数:
[root@svr7~]#top
top-15:45:25 up 23:55,2 users,load average:0.02,0.03,0.05
Tasks:485 total,2 running,483 sleeping,0 stopped,0 zombie
%Cpu(s):1.7 us,1.0 sy,0.0 ni,97.3 id,0.0 wa,0.0 hi,0.0 si,0.0 st
KiB Mem:1001332 total,76120 free,419028 used,506184 buff/cache
KiB Swap:2097148 total,2096012 free,1136 used.372288 avail Mem
....
观察Tasks:485 total部分,表示进程总量信息。
观察load average:0.02,0.03,0.05部分,表示CPU处理器在最近1分钟、5分钟、15分钟内的平均处理请求数(对于多核CPU,此数量应除以核心数)。
n 对于多核CPU主机,如果要分别显示每颗CPU核心的占用情况,可以在top界面按数字键1进行切换:
[root@svr7~]#top
top-15:47:45 up 23:57,2 users,load average:0.02,0.03,0.05
Tasks:485 total,2 running,269 sleeping,0 stopped,1 zombie
Cpu0:0.6%us,7.8%sy,0.0%ni,91.6%id,0.0%wa,0.0%hi,0.0%si,0.0%st
Cpu1:0.7%us,3.7%sy,0.0%ni,95.6%id,0.0%wa,0.0%hi,0.0%si,0.0%st
Cpu2:0.7%us,1.7%sy,0.0%ni,97.6%id,0.0%wa,0.0%hi,0.0%si,0.0%st
Cpu3:0.3%us,1.0%sy,0.0%ni,98.3%id,0.3%wa,0.0%hi,0.0%si,0.0%st
Mem:16230564k total,15716576k used,513988k free,326124k buffers
Swap:8388604k total,220656k used,8167948k free,11275304k cached
....
案例3:进程调度及终止
3.1问题
本例要求掌握调度及终止进程的操作,使用必要的工具完成下列任务:
运行“sleep 600”命令,再另开一个终端,查出sleep程序的PID并杀死
运行多个vim程序并都放入后台,然后杀死所有vim进程
su切换为zhsan用户,再另开一个终端,强制踢出zhsan用户
3.2方案
进程调度及终止的主要命令工具:
命令行&:将命令行在后台运行
Ctrl+z组合键:挂起当前进程(暂停并转入后台)
jobs:列出当前用户当前终端的后台任务
bg编号:启动指定编号的后台任务
fg编号:将指定编号的后台任务调入前台运行
kill[-9]PID...:杀死指定PID值的进程
kill[-9]%n:杀死第n个后台任务
killall[-9]进程名...:杀死指定名称的所有进程
pkill:根据指定的名称或条件杀死进程
3.3步骤
实现此案例需要按照如下步骤进行。
步骤一:根据PID杀死进程
1)开启sleep测试进程
[root@svr7~]#sleep 600
//....进入600秒等待状态
2)找出进程sleep的PID
另开一个终端,ps aux并过滤进程信息(第2列为PID值):
[root@svr7~]#ps aux | grep sleep
root 32929 0.0 0.0 4312 360 pts/1 S+17:25 0:00 sleep 600
3)杀死指定PID的进程
[root@svr7~]#kill -9 32929
返回原终端会发现sleep进程已经被杀死:
[root@svr7~]#sleep 600
Killed
步骤二:根据进程名杀死多个进程
1)在后台开启多个vim进程
[root@svr7~]#vim a.txt&
[1]33152
[root@svr7~]#vim b.txt&
[2]33154
[1]+已停止vim a.txt
[root@svr7~]#vim c.txt&
[3]33155
[2]+已停止vim b.txt
2)确认vim进程信息
[root@svr7~]#jobs-l
[1]33152停止(tty输出)vim a.txt
[2]-33154停止(tty输出)vim b.txt
[3]+33155停止(tty输出)vim c.txt
3)强制杀死所有名为vim的进程
[root@svr7~]#killall -9 vim
[1]已杀死vim a.txt
[2]-已杀死vim b.txt
[3]+已杀死vim c.txt
4)确认杀进程结果
[root@svr7~]#jobs -l
[root@svr7~]#
步骤三:杀死属于指定用户的所有进程
1)登入测试用户zhsan
[root@svr7~]#useradd zhsan
[root@svr7~]#su - zhsan
[zhsan@svr7~]$
2)另开一个终端,以root用户登入,查找属于用户zhsan的进程
[root@svr7~]#pgrep -u zhsan
33219
[root@svr7~]#pstree -up 33219//检查进程树
bash(33219,zhsan)
3)强制杀死属于用户zhsan的进程
[root@svr7~]#pkill -9 -u zhsan
[root@svr7~]#
4)返回原来用户zhsan登录的终端,确认已经被终止
[zhsan@svr7~]$已杀死
[root@svr7~]#
案例4:系统日志分析
4.1问题
本例要求熟悉Linux系统中的常见日志文件,使用必要的命令工具完成下列任务:
列出所有包含关键词8909的系统日志消息
查看启动时识别的鼠标设备信息
列出最近2条成功/不成功的用户登录消息
列出最近10条重要程度在ERR及以上的日志消息
列出所有与服务httpd相关的消息
列出前4个小时内新记录的日志
4.2方案
常见的系统日志及各自用途:
/var/log/messages,记录内核消息、各种服务的公共消息
/var/log/dmesg,记录系统启动过程的各种消息
/var/log/cron,记录与cron计划任务相关的消息
/var/log/maillog,记录邮件收发相关的消息
/var/log/secure,记录与访问限制相关的安全消息
日志消息的优先级(高-->低):
EMERG(紧急):级别0,系统不可用的情况
ALERT(警报):级别1,必须马上采取措施的情况
CRIT(严重):级别2,严重情形
ERR(错误):级别3,出现错误
WARNING(警告):级别4,值得警告的情形
NOTICE(注意):级别5,普通但值得引起注意的事件
INFO(信息):级别6,一般信息
DEBUG(调试):级别7,程序/服务调试消息
RHEL7提供的journalctl日志工具的常见用法:
journalctl|grep关键词
journalctl-u服务名-p优先级
journalctl-n消息条数
journalctl--since="yyyy-mm-dd HH:MM:SS"--until="yyyy-mm-dd
HH:MM:SS"
4.3步骤
实现此案例需要按照如下步骤进行。
步骤一:分析系统日志及用户日志
1)列出所有包含关键词8909的系统日志消息
简单模拟一个故障(SELinux阻止Web开放8909端口):
[root@svr7~]#vim /etc/httpd/conf.d/8909.conf//添加开8909端口配置
Listen 8909
[root@svr7~]#setenforce 1//开启强制模式
[root@svr7~]#systemctl restart httpd//起服务失败
Job for httpd.service failed because the control process exited with error code.See"systemctl status httpd.service"and"journalctl-xe"for details.
从日志文件/var/log/messages中检索信息:
[root@svr7~]#grep 8909 /var/log/messages
Jan 6 17:53:48 svr7 setroubleshoot:SELinux is preventing/usr/sbin/httpd from name_bind access on the tcp_socket port 8909.For complete SELinux messages.run sealert-l 6d37b8f0-ab8a-4082-9295-c784f4f57190
Jan 6 17:53:48 svr7 python:SELinux is preventing/usr/sbin/httpd from name_bind access on the tcp_socket port 8909.#012#012*****Plugin bind_ports(92.2 confidence)suggests************************#012#012If you want to allow/usr/sbin/httpd to bind to network port 8909#012Then you need to modify the port type.#012Do#012#semanage port-a-t PORT_TYPE-p tcp 8909#012 where PORT_TYPE is one of the following:http_cache_port_t,http_port_t,jboss_management_port_t,jboss_messaging_port_t,ntop_port_t,puppet_port_t.#012#012*****Plugin catchall_boolean(7.83 confidence)suggests******************#012#012If you want to allow nis to enabled#012Then you must tell SELinux about this by enabling the'nis_enabled'boolean.#012#012Do#012setsebool-P nis_enabled 1#012#012*****Plugin catchall(1.41 confidence)suggests**************************#012#012If you believe that httpd should be allowed name_bind access on the port 8909 tcp_socket by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012#grep httpd/var/log/audit/audit.log|audit2allow-M mypol#012#semodule-i mypol.pp#012
....
使用完毕记得删除测试配置文件:
[root@svr7~]#rm -rf /etc/httpd/conf.d/8909.conf
[root@svr7~]#systemctl restart httpd
2)查看启动时识别的鼠标设备信息
[root@svr7~]#dmesg | grep -i mouse
[1.020385]mousedev:PS/2 mouse device common for all mice
[1.249422]input:ImPS/2 Generic Wheel Mouse as/devices/platform/i8042/serio1/input/input2
[2.279665]usb 2-1:Product:VMware Virtual USB Mouse
[2.603999]input:VMware VMware Virtual USB Mouse as/devices/pci0000:00/0000:00:11.0/0000:02:00.0/usb2/2-1/2-1:1.0/input/input3
[2.604222]hid-generic 0003:0E0F:0003.0001:input,hidraw0:USB HID v1.10 Mouse[VMware VMware Virtual USB Mouse]on
usb-0000:02:00.0-1/input0
3)列出最近2条成功/不成功的用户登录消息
查看成功登录的事件消息:
[root@svr7~]#last -2
zhsan pts/2 192.168.4.207 Fri Jan 6 18:00-18:00(00:00)
root pts/2 192.168.4.110 Fri Jan 6 17:26-17:59(00:33)
wtmp begins Thu Aug 4 00:10:16 2016
查看失败登录的事件消息:
[root@svr7~]#lastb -2
anonymou ssh:notty 192.168.4.207 Fri Jan 6 18:00-18:00(00:00)
anonymou ssh:notty 192.168.4.207 Fri Jan 6 18:00-18:00(00:00)
btmp begins Fri Jan 6 18:00:34 2017
步骤二:使用journalctl日志提取工具
1)列出最近10条重要程度在ERR及以上的日志消息
[root@svr7~]#journalctl -p err -n 10
--Logs begin at Thu 2017-01-05 15:50:08 CST,end at Fri 2017-01-06 18:01:01 CST.--
Jan 06 14:56:57 svr7 setroubleshoot[23702]:SELinux is preventing/usr/sbin/vsftpd from getattr access on the file/rhel7/repodata/repomd.xml.For complete SELinux mes
Jan 06 14:56:57 svr7 setroubleshoot[23702]:SELinux is preventing/usr/sbin/vsftpd from read access on the file repomd.xml.For complete SELinux messages.run sealert
Jan 06 14:56:57 svr7 setroubleshoot[23702]:SELinux is preventing/usr/sbin/vsftpd from read access on the file repomd.xml.For complete SELinux messages.run sealert
Jan 06 14:56:57 svr7 setroubleshoot[23702]:SELinux is preventing/usr/sbin/vsftpd from lock access on the file/rhel7/repodata/repomd.xml.For complete SELinux messag
Jan 06 17:53:48 svr7 setroubleshoot[33743]:Plugin Exception restorecon_source
Jan 06 17:53:48 svr7 setroubleshoot[33743]:SELinux is preventing/usr/sbin/httpd from name_bind access on the tcp_socket port 8909.For complete SELinux messages.run
Jan 06 17:53:53 svr7 setroubleshoot[33743]:SELinux is preventing/usr/sbin/httpd from name_connect access on the tcp_socket port 8909.For complete SELinux messages.
Jan 06 17:53:54 svr7 systemd[1]:Failed to start The Apache HTTP Server.
....
lines 1-11/11(END)
2)列出所有与服务httpd相关的消息
[root@svr7~]#journalctl -u httpd
--Logs begin at Thu 2017-01-05 15:50:08 CST,end at Fri 2017-01-06 18:01:01 CST.--
Jan 06 14:57:16 svr7 systemd[1]:Starting The Apache HTTP Server...
Jan 06 14:57:16 svr7 httpd[23812]:AH00557:httpd:apr_sockaddr_info_get()failed for svr7
Jan 06 14:57:16 svr7 httpd[23812]:AH00558:httpd:Could not reliably determine the server's fully qualified domain name,using 127.0.0.1.Set the'ServerName'directi
Jan 06 14:57:16 svr7 systemd[1]:Started The Apache HTTP Server.
Jan 06 17:53:44 svr7 systemd[1]:Stopping The Apache HTTP Server...
Jan 06 17:53:46 svr7 systemd[1]:Starting The Apache HTTP Server...
Jan 06 17:53:46 svr7 httpd[33741]:AH00557:httpd:apr_sockaddr_info_get()failed for svr7
....
3)列出前4个小时内新记录的日志
根据当前日期时间往前推4个小时,确定--since起始和--until结束时刻:
[root@svr7~]#journalctl --since "2017-01-06 14:11" --until "2017-01-06 18:11"
--Logs begin at Thu 2017-01-05 15:50:08 CST,end at Fri 2017-01-06 18:10:01 CST.--
Jan 06 14:20:01 svr7 systemd[1]:Started Session 160 of user root.
Jan 06 14:20:01 svr7 CROND[22869]:(root)CMD(/usr/lib64/sa/sa1 1 1)
Jan 06 14:20:01 svr7 systemd[1]:Starting Session 160 of user root.
Jan 06 14:30:01 svr7 systemd[1]:Started Session 161 of user root.
Jan 06 14:30:01 svr7 CROND[23028]:(root)CMD(/usr/lib64/sa/sa1 1 1)
Jan 06 14:31:39 svr7 systemd[1]:Starting Session 162 of user root.
Jan 06 14:32:17 svr7 sshd[23046]:pam_unix(sshd:session):session closed for user root
Jan 06 14:31:39 svr7 systemd[1]:Started Session 162 of user root.
Jan 06 14:31:39 svr7 sshd[23046]:pam_unix(sshd:session):session opened for user root by(uid=0)
Jan 06 14:31:39 svr7 systemd-logind[985]:New session 162 of user root.
...
配置并验证Split分离解析的更多相关文章
- Service系统服务(六):rsync基本用法、rsync+SSH同步、配置rsync服务端、访问rsync共享资源、使用inotifywait工具、配置Web镜像同步、配置并验证Split分离解析
一.rsync基本用法 目标: 本例要求掌握远程同步的基本操作,使用rsync命令完成下列任务: 1> 将目录 /boot 同步到目录 /todir 下 2> 将目录 /boot 下的 ...
- linux dns子域授权 split分离解析 缓存dns服务器
DNS子域授权作用:适用于同一个DNS组织父/子域名的解析工作由不同的dns服务器负责父dns服务器应该有为子域名迭代的能力 上下级区域属于不同的机构管理:.cn与.Anonymous.cn.cn需要 ...
- Linux:DNS主、从、缓存服务器配置、DNS同步加密TSIG配置、DNS分离解析配置
DNS主服务器配置(正向解析.反向解析) 正向解析:根据主机名查找对应的IP地址.当用户访问一个域名时(不考虑hosts文件等因素),正常情况会向指定的DNS主机发送递归查询请求反向解析:根据IP地址 ...
- linux 学习第十八天学习(DNS分离解析、DHCP配置、邮件服务配置)
DNS分离解析技术 yum install bind-chroot systemctl restart named systemctl enable named vim /etc/named.conf ...
- 十五.DNS子域授权、分离解析、缓存DNS服务器
1.搭建基本DNS服务器 pc7: 1.1 安装软件包 ]# yum -y install bind-chroot bind bind //域名服务包 bind-chroot //提 ...
- Spring3.2 中 Bean 定义之基于 XML 配置方式的源码解析
Spring3.2 中 Bean 定义之基于 XML 配置方式的源码解析 本文简要介绍了基于 Spring 的 web project 的启动流程,详细分析了 Spring 框架将开发人员基于 XML ...
- java对身份证验证及正则表达式解析
原文地址:http://www.cnblogs.com/zhongshengzhen/ java对身份证验证及正则表达式解析 package service; import java.text.Par ...
- linux后台server开发环境的部署配置和验证(nginx+apache+php-fpm+FASTCGI(C/C++))
linux后台server开发环境部署配置 引言 背景 随着互联网业务的不断增多.开发环境变得越来越复杂,为了便于统一server端的开发部署环境,特制定本配置文档. 使用软件 CentOS 6.3( ...
- Java工具类——通过配置XML验证Map
Java工具类--通过配置XML验证Map 背景 在JavaWeb项目中,接收前端过来的参数时通常是使用我们的实体类进行接收的.但是呢,我们不能去决定已经搭建好的框架是怎么样的,在我接触的框架中有一种 ...
随机推荐
- React-redux: React.js 和 Redux 架构的结合
通过Redux 架构理解我们了解到 Redux 架构的 store.action.reducers 这些基本概念和工作流程.我们也知道了 Redux 这种架构模式可以和其他的前端库组合使用,而 Rea ...
- R中character和factor的as.integer的不同
记录一个容易犯错的地方. 用chr标记的0~1变量可以变为整数0和1, 而用因子factor标记的变量转换为整数时总是从1开始. 如果不注意区分就会发生令自己困惑的错误.
- Simulink仿真入门到精通(十七) Simulink代码生成技术详解
17.1 基于模型的设计 基于模型设计是一种流程,较之传统软件开发流程而言,使开发者能够更快捷.更高效地进行开发.适用范围包括汽车电子信号处理.控制系统.通信行业和半导体行业. V字模型开发流程整体描 ...
- Python3对比合并Excel表格
##安装模块pip install pandas as pdpip install xlsxwriterpip install openpyxl ##带入模块import pandas as pdim ...
- vscode 对于 md的编写 左侧 大纲 很重要!!
vscode 对于 md的编写 左侧 大纲 很重要!!
- ajax js分页算法分析
显示效果:[页面总数小于等于10,全部显示,当前页特殊显示]上一页 1 2 3 4 5 6 7 8 9 10 下一页 [页面总数大于10,部分显示,当前页特殊 ...
- 暴力+辗转相除法——N个数求和
题目来源 PTA 团体程序设计天梯赛-练习集 L1-009 N个数求和 (20分) https://pintia.cn/problem-sets/994805046380707840/problems ...
- JAVA EE,JAVA SE,JAVA ME,JDK,JRE,JVM之间的区别
JAVA EE是开发企业级应用,主要针对web开发有一套解决方案. JAVA SE是针对普通的桌面开发和小应用开发. JAVA ME是针对嵌入式设备开发,如手机. JRE是程序的运行环境 JDK是程序 ...
- red hat重置密码
步骤1:打开red hat 步骤2:看到如图画面时按e 进入到这个界面 步骤4:按e,看到如下画面后,选第二项,然后按e 步骤5:在“quiet"后面输入 空格single 后按b ...
- babel-loader配置
1.npm i @babel/core.@babel/preset-env.@babel/runtime.@babel/plugin-transform-runtime.@babel/plugin-p ...