The service command supports only basic LSB actions (start, stop, restart, try-restart, reload,force-reload, status)

# service iptables save
The service command supports only basic LSB actions (start, stop, restart, try-restart, reload, force-reload, status). For other actions, please try to use systemctl.

With RHEL 7 / CentOS 7, firewalld was introduced to manage iptables. IMHO, firewalld is more suited for workstations than for server environments.

It is possible to go back to a more classic iptables setup. First, stop and mask the firewalld service:

systemctl stop firewalld
systemctl mask firewalld

Then, install the iptables-services package:

yum install iptables-services

Enable the service at boot-time:

systemctl enable iptables

Managing the service

systemctl [stop|start|restart] iptables

Saving your firewall rules can be done as follows:

service iptables save

or

/usr/libexec/iptables/iptables.init save
时间: 2024-11-05 15:47:15

The service command supports only basic LSB actions (start, stop, restart, try-restart, reload,force-reload, status)的相关文章

bash: service: command not found

在centos下停止和启动服务用命令: service mysqld stop  停止mysql服务 service mysqld start 启动mysql服务.   查询服务状态 # service mysqld status 查看所有服务的状态 命令service --status-all 将会运行所有的启动脚本来显示各个服务的运行状态: 怎么设置某个目录包括子目录的写入权限 777: chmod -R 777 文件夹例如:chmod -R 777 /var var的权限就变成777,va

bash: service: command not found 错误的解决方法

转载:http://blog.sina.com.cn/s/blog_4a4f69910100i493.html 今天碰到一个问题,问题如下:在启动named服务时,出现下面错误提示: bash: service: command not found 于是我到网上去一搜了一下, 发现提问的人蛮多的,但真正回答的却很少,或就是胡编乱造的,回答的多说是PATH有问题,但有什么问题呢?他们也没说清楚. 我觉得原因是这样的,service命令是要用ROOT用户来执行的,而出错的用户是用su root切换到

linux重启mysql服务service: command not found

[[email protected] logs]# service mysqld stop bash: service: command not found 使用su root切换到root用户,并同时使用/sbin/service来操作,如/sbin/service mysql restart. 版权声明:本文为博主原创文章,未经博主允许不得转载.

解决CentOS下service 功能 不能使用 bash: service: command not found

首先检查自己是否 使用的是root用户 在centos系统中,如果/sbin目录下没有service这个命令,就会出现 bash: service: command not found 解决步骤如下: 1. 输入 yum list | grep initscripts 会出现: initscripts.x86_64 (其实一共有三个信息,但是后面根据版本不同,显示的信息也不同) 2. 上面给出了可安装软件的yum源版本,然后执行 yum install initscripts -y   3. 此

linux,Centos,bash: service: command not found

很简单,这个问题是这样的,su 或者 su root:的话只是将当前身份转为root,用户shell并没有改变.所以有些系统命令不能使用. su -或者su -l或者su -l root,可以完全的将当前环境转为root环境.如同root直接登陆. 其次,service的路径为/sbin/service如果shell没有改变,那么你的PATH中默认没有/sbin,所以不行,而如果用su -命令环境改为root,PATH中就包含/sbin

centos7执行" service iptables save"错误提示

在centos7中用iptables命令配置完策略规则后,需要保存策略永久生效,执行service iptables save时提示: # service iptables save The service command supports only basic LSB actions (start, stop, restart, try-restart, reload, force-reload, status). For other actions, please try to use sy

centos 7 中没有iptables 和service iptables save 指令使用失败问题解决方案

1.任意运行一条iptables防火墙规则配置命令: iptables -P OUTPUT ACCEPT 2.对iptables服务进行保存: service iptables save 如果上述命令执行失败报出:The service command supports only basic LSB actions (start, stop, restart, try-restart, reload, force-reload, status). For other actions, pleas

解决service iptables save出错please try to use systemctl.

# service iptables save The service command supports only basic LSB actions (start, stop, restart, try-restart, reload, force-reload, status). For other actions, please try to use systemctl. linux 出错信息如上所示 本人原来使用的是CentOS6.X版本的Linux,后来为了学习更多内容选择更换Cent

centos .7x service iptables save 错误解决方案

保存转发规则的时候,发现service iptables save 无效,而且报错[[email protected] bin]# service iptables saveThe service command supports only basic LSB actions (start, stop, restart, try-restart, reload, force-reload, status). For other actions, please try to use systemc