ftp客户连接常见故障现象 现象0: > ftp: connect :连接被拒绝 原因: 服务没启动 解决: # chkconfig vsftpd on<Enter> 现象1: 500 OOPS: cannot open user list file 原因: 不存在文件“/etc/vsftpd.us ...
分类:
其他好文 时间:
2018-06-26 20:46:48
阅读次数:
179
一.打开终端(Alt+Ctrl+T): 安装过程中会需要输入root账号的密码,输入密码后,等待安装完成即可 二.设置MySql: 1.将mysql加入到系统服务 2.将mysql设置开机启动 3.注意:在这里可能chkconfig没有安装,如果是的话 ,则需要安装chkconfig命令: 三.登陆 ...
分类:
数据库 时间:
2018-06-24 11:37:27
阅读次数:
282
systemctl是CentOS7的服务管理工具中主要的工具,它融合之前service和chkconfig的功能于一体。 启动一个服务:systemctl start firewalld.service关闭一个服务:systemctl stop firewalld.service重启一个服务:sys ...
分类:
其他好文 时间:
2018-06-22 10:16:12
阅读次数:
135
[root@localhost ~]# chkconfig --list 显示开机可以自动启动的服务 [root@localhost ~]# chkconfig --add *** 添加开机自动启动***服务 [root@localhost ~]# chkconfig --del *** 删除开机自 ...
分类:
系统相关 时间:
2018-06-20 16:38:53
阅读次数:
229
1.使用操作系统为Centos6.62.源码包统一下载路径/application/tools/3.服务器脚本目录/server/scripts4.程序安装目录/application5.系统初始化的设置(1)开机启动项优化
chkconfig --list | egrep -v "network|rsyslog|sshd|s
分类:
其他好文 时间:
2018-06-19 14:02:02
阅读次数:
176
任务 centos-6 centos-7 使某服务自动启动 chkconfig --level 3 httpd on systemctl enable httpd.service 使某服务不自动启动 chkconfig --level 3 httpd off systemctl disable ht ...
分类:
其他好文 时间:
2018-06-18 16:01:28
阅读次数:
224
telnet 依赖服务搭建 telnet:远程管理的服务 windows;linux下不建议使用 原因:传送用户名和密码是明文传送,不安全 tcp 23 步骤: 1、关闭防火墙和selinux 1)# service iptables stop 临时关闭 # chkconfig iptables o ...
分类:
Web程序 时间:
2018-06-18 01:13:18
阅读次数:
206
不多说,直接上干货! 问题详情 情况描述如题所示,zkfc启动以后,几秒钟以后自动关闭。 解决办法: 1、检查下每台机器的时间是否同步; 2、检查下每台机器的防火墙是否关闭; 3、查看zkfc的日志路径 解决办法: 每台机器都,先执行,sudo chkconfig iptables off 再,执行 ...
分类:
其他好文 时间:
2018-06-17 16:02:44
阅读次数:
424
一、iptables规则备份和恢复1、备份和恢复[root@ma-1 ~]#service iptables save (保存规则)
/etc/sysconfig/iptables (默认保存的位置)
[root@ma-1 ~]# iptables -t nat -nvL &n
分类:
其他好文 时间:
2018-06-15 12:59:55
阅读次数:
164
安装 yum install mysql-server chkconfig -list mysqld 查看mysqld服务是否为开机启动 chkconfig mysqld on 设为开机启动 service mysqld start 启动mysqld服务 ss -ntl (3306) 自动完后,相应 ...
分类:
数据库 时间:
2018-06-15 01:03:38
阅读次数:
151