首页 > 其他分享 >systemctl mask firewalld

systemctl mask firewalld

时间:2023-11-16 11:47:54浏览次数:34  
标签:systemd service 98663 mask firewalld system systemctl

systemctl mask firewalld

systemctl --help

mask NAME...                    Mask one or more units
unmask NAME...                  Unmask one or more units


[root@hecs-98663 ~]# systemctl status firewalld
● firewalld.service - firewalld - dynamic firewall daemon
   Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)
   Active: inactive (dead)
     Docs: man:firewalld(1)
#enable实际上是创建一个软连接
[root@hecs-98663 ~]# systemctl enable firewalld
Created symlink from /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service to /usr/lib/systemd/system/firewalld.service.
Created symlink from /etc/systemd/system/multi-user.target.wants/firewalld.service to /usr/lib/systemd/system/firewalld.service.
#disable实际上是删除软连接
[root@hecs-98663 ~]# systemctl disable firewalld
Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
Removed symlink /etc/systemd/system/multi-user.target.wants/firewalld.service.
#enable与disable并不影响服务是否启动
[root@hecs-98663 ~]# systemctl start firewalld
#mask会创建连接,将服务指向为空
[root@hecs-98663 ~]# systemctl mask firewalld
Created symlink from /etc/systemd/system/firewalld.service to /dev/null.
#mask后就不能启动
[root@hecs-98663 ~]# systemctl start firewalld
Failed to start firewalld.service: Unit is masked.
#unmask  移除指向空的连接
[root@hecs-98663 ~]# systemctl unmask firewalld
Removed symlink /etc/systemd/system/firewalld.service.

标签:systemd,service,98663,mask,firewalld,system,systemctl
From: https://www.cnblogs.com/breeze666/p/17835856.html

相关文章

  • mask-rcnn_swin-t-p4-w7_fpn_1x_coco.py 里面的内容
    _base_=['../_base_/models/mask-rcnn_r50_fpn.py','../_base_/datasets/coco_instance.py','../_base_/schedules/schedule_1x.py','../_base_/default_runtime.py']pretrained='https://github.com/Swi......
  • CentOS 7.9 防火墙启动报错--Process: 12848 ExecStart=/usr/sbin/firewalld --nofork
    原因:配置防火墙策略过程中,多次启停防火墙,导致防火墙启动报错报错截图: 排查:python版本是一致的,有一个遗留的防火墙进程防火墙正常关闭后没有这个进程 解决办法:杀掉这个进程,启动防火墙  ......
  • 关于 deamon 与 systemctl ,systemd , ubuntu20 自启动脚本
    deamon是指的守护进程,但是什么是守护进程呢,从网上查了一下,就是在后台运行的程序就叫做守护进程。     接下来看一下关于systemd的自启动的配置文件。       疑问:1 unit与target到底又什么关系呢?2到底有多少个unit......
  • 论文阅读:Point-BERT: Pre-training 3D Point Cloud Transformers with Masked Point M
    Point-BERT:Pre-training3DPointCloudTransformerswith MaskedPointModelingPoint-BERT:基于掩码建模的点云自注意力模型预训练摘要我们提出了Point-BERT,一个学习自注意力的新范式,将BERT[8]的概念推广到三维点云。受BERT的启发,我们设计了一个掩蔽点建模(MPM)任务来预训练点云......
  • 关于fieldMask在go项目使用
    介绍: NetflixAPI设计实践:使用FieldMask(qq.com)该文章,详述了关于proto中,使用fieldMask的背景及收益,还有具体example提供参考。接下来,需要考虑在go项目中的使用。主要为以下几方面:1.服务端需要提供新的proto文件2.客户端需要感知这些proto文件,且需要关注声明为fiel......
  • 编译安装nginx-systemctl
    实验:1cd/opt2wgethttp://nginx.org/download/nginx-1.18.0.tar.gz#通过网络地址下载nginx的安装包,下载到opt目录下 1tarxf  nginx-1.18.0.tar.gz#将安装包解压 #通过网络源下载依赖包 #安装完成后,在该目录下递归创建“/apps/nginx” #指明安装路......
  • Linux命令(110)之umask
    linux命令之umask1.umask介绍linux命令umask为linux内建命令,用于设置创建文件/目录时的权限掩码。默认umask值为偶数,创建文件时,直接相减;如果有奇数,创建文件时,对应结果要加一。另外,之所以文件用666去减,表示文件默认不能有执行权限(x);如果减得的结果中有执行权限(x),则需要将其加一。......
  • RepeatMasker 软件的安装
     001、安装TRFa、github地址:https://github.com/Benson-Genomics-Lab/TRFb、wget-chttps://github.com/Benson-Genomics-Lab/TRF/archive/refs/tags/v4.09.1.tar.gztar-xzvfv4.09.1.tar.gzcdTRF-4.09.1/./configuremakemakeinstall 调用测试:(base)[root@pc1so......
  • Linxu解决systemctl启动服务失败,Error: No space left on device【转】
    查看磁盘空间实际占用情况查看磁盘inodes占用情况这两部发现都没有问题。要是哪里发现被沾满了,直接删除解放空间。此篇是讲另一种情况。查看默认inotify的max_user_watches值[root@VM-4-4-centosnginx]#sysctlfs.inotifyfs.inotify.max_queued_events=16384fs.inotif......
  • 7、生成mask,过滤无效张量
    1、准备环境importtorchrandom_tensor=torch.randn(10,2)print(random_tensor) 2、准备batch索引fromtorch_geometric.utilsimportto_dense_batch,to_dense_adj,degreebatch=torch.tensor([0,0,0,1,1,2,2,2,2,2])abstract_features_1,mask_1=to_dense_b......