说明:在RHEL7系列中,默认使用firewalld作为防火墙,iptables默认是关闭的(stop), 要使用firewalld建议先关闭并禁用老版本的iptables,ip6tables和ebtables。 systemctl mask iptables systemctl mask ip6t ...
分类:
其他好文 时间:
2020-11-16 13:44:36
阅读次数:
8
package com.atguigu.structure.streaming import org.apache.spark.sql.streaming.Trigger import org.apache.spark.sql.{DataFrame, SparkSession} import org ...
分类:
其他好文 时间:
2020-11-16 13:25:07
阅读次数:
3
环境:tidb4.0、centos7 1、tidb操作停止启动、重启 tiup cluster stop tidb tiup cluster start tidb tiup cluster restart tidb 2、tidb查看参数配置sql命令 SHOW CONFIG WHERE type = ...
分类:
数据库 时间:
2020-11-16 13:14:28
阅读次数:
11
系统服务管理 systemctl 启动服务:systemctl start httpd.service 关闭服务:systemctl stop httpd.service 重启服务(不管是否在运行):systemctl restart httpd.service 重新载入配置(不中断服务):syst ...
分类:
系统相关 时间:
2020-11-12 13:41:09
阅读次数:
58
最简洁的Mysql修改密码,不会你打我 写在前面 先说mysql版本:mysql-8.0.21-winx64(就是从官网上下载了之后解压缩的那种) 再说问题出现的原因:下了之后第一次登录不需要修改密码嘛,然后进去了嘛,百度怎么修改密码嘛,修改成功,退出,一气呵成。但是再登录的时候,发现用修改的密码登 ...
分类:
数据库 时间:
2020-11-11 15:44:45
阅读次数:
17
Last_IO_Errno: 1129 Last_IO_Error: error connecting to master 'slavetest@xxx.xxx.xxx.xx:6612' - retry-time: 60 retries: 1 message: Host 'xxx.xxx.xxx.x ...
分类:
数据库 时间:
2020-11-10 11:23:28
阅读次数:
13
事件循环是asyncio提供的核心运行机制 column column asyncio.get_event_loop() 返回一个事件循环对象,时asyncio.BaseEventLoop的实例 AbstractEventLoop.stop() 停止运行事件循环 AbstractEventLoop. ...
分类:
其他好文 时间:
2020-11-07 17:43:04
阅读次数:
28
cmd 进入Nginx解压目录 执行以下命令 start nginx : 启动nginx服务 nginx -s reload :修改配置后重新加载生效 nginx -s reopen :重新打开日志文件nginx -t -c /path/to/nginx.conf 测试nginx配置文件是否正确 验 ...
1、以管理员身份打开cmd窗口; 2、停止mysql服务,cmd输入命令net stop mysql ; 或者在服务中停止mysql(如下图); 3、转到mysql服务bin目录, 运行命令 .\mysqld --console --skip-grant-tables --shared-memory ...
分类:
数据库 时间:
2020-11-07 17:23:21
阅读次数:
25
运行环境 linux服务端(172.16.104.132) ## vsftpd安装 [root@vm3 etc]# yum -y install vsftpd ## 关闭防火墙 [root@vm3 etc]# systemctl stop firewalld ## 修改selinux [root@v ...
分类:
其他好文 时间:
2020-11-02 09:45:41
阅读次数:
22