码迷,mamicode.com
首页 >  
搜索关键字:chkconfig    ( 1438个结果
centos6防火墙网络配置
查看防火墙的状态# service iptables status1永久关闭防火墙# chkconfig iptables off1关闭防火墙# /etc/init.d/iptables stop 1查看网络配置路径 cd /etc/sysconfig/network-scripts/配置文件 if ...
分类:其他好文   时间:2019-08-29 16:27:43    阅读次数:136
service XXX does not support chkconfig
有时候为了方便管理,我们常常喜欢在Linux中将之安装为服务,然后就可以使用服务来管理。 但是当我们运行安装服务的命令时候,假设服务名为myservice #chkconfig --add myservice 常常会出现 service myservice does not support chkc ...
分类:其他好文   时间:2019-08-29 13:45:53    阅读次数:68
Linux关闭防火墙、设置端口
关闭防火墙 1)重启后生效 开启: chkconfig iptables on 关闭: chkconfig iptables off 验证防火墙是否关闭:chkconfig --list |grep iptables2) 即时生效,重启后失效 开启: service iptables start 关 ...
分类:系统相关   时间:2019-08-28 10:40:05    阅读次数:107
service mc_start.sh does not support chkconfig
在构建docker镜像时,编写Dockerfile构建镜像时,配置自启动脚本报错,service mc_start.sh does not support chkconfig 添加下面两句到 #!/bin/bash 之后。 注:chkconfig命令对应的目录是/etc/init.d文件夹下,需要将 ...
分类:其他好文   时间:2019-08-27 18:55:20    阅读次数:86
centos6.5下安装mysql数据库
centos6.5下安装mysql数据库 1.安装mysql数据库:yum install mysql-server 2.临时启动数据库:service mysqld start 3.开机启动数据库:chkconfig mysqld on ...
分类:数据库   时间:2019-08-25 11:43:03    阅读次数:93
Keepalived安装
1.在安装nginx的从节点 上传jar 2. 解压 [root@linux05 Downloads]# tar -zxvf keepalived-1.3.6.tar.gz 3. 开始配置 进入到 keepalived目录中 [root@linux05 keepalived-1.3.6]# ./co... ...
分类:其他好文   时间:2019-08-24 00:03:32    阅读次数:91
DHCP与DHCP中继原理理与配置
centos7 关闭防火墙 systemctl stop firewalld systemctl disable firewalld centos6 关闭防火墙 service iptables stop chkconfig iptables off 关闭selinux安全机制 sed -i '7 ...
分类:其他好文   时间:2019-08-23 15:07:33    阅读次数:134
PXE批量装机
centos7 关闭防火墙 systemctl stop firewalld systemctl disable firewalld centos6 关闭防火墙 service iptables stop chkconfig iptables off 关闭selinux安全机制 sed -i '7 ...
分类:其他好文   时间:2019-08-22 13:15:52    阅读次数:129
iptables规则保存
/etc/init.d/iptables save #查看 vim /etc/sysconfig/iptables #将iptables设置为开机启动 chkconfig iptables on #查看设置结果 chkconfig --list | grep iptables ...
分类:其他好文   时间:2019-08-22 11:06:01    阅读次数:87
CentOS 7 下安装 Nginx
CentOS 7 下安装 Nginx
分类:其他好文   时间:2019-08-20 12:35:51    阅读次数:78
1438条   上一页 1 ... 10 11 12 13 14 ... 144 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!