安装宝塔 Centos安装脚本 Ubuntu/Deepin安装脚本 Debian安装脚本 管理宝塔 停止 启动 重启 卸载 查看当前面板端口 修改面板端口,如要改成8881(centos 6 系统) ...
分类:
系统相关 时间:
2019-09-13 22:54:31
阅读次数:
223
一、介绍xinetd是提供了访问控制、拥有加强的日志和资源管理功能的Internet标准超级守护进程。二、安装xinetd(chkconfig命令主要用来更新(启动或停止)和查询系统服务的运行级信息。)1、安装xinetd#yuminstallxinetd2、启动xinetd挂在的服务#chkconfigxinetdon3、列出当前的服务和他们的配置#chkconfig--list重启后生效 开启: chkconfig iptables on 关闭: chkconfig iptables off 验证防火墙是否关闭:chkconfig --list |grep iptables2) 即时生效,重启后失效 开启: service iptables start 关 ...
分类:
系统相关 时间:
2019-08-28 10:40:05
阅读次数:
107
在构建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数据库 1.安装mysql数据库:yum install mysql-server 2.临时启动数据库:service mysqld start 3.开机启动数据库:chkconfig mysqld on ...
分类:
数据库 时间:
2019-08-25 11:43:03
阅读次数:
93
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
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