Q:第一次提交wordcount案例,OK,一切正常。再次提交,出现下述错误。完整错误粘贴如下: 21/01/27 14:55:48 INFO spark.SecurityManager: Changing modify acls groups to: 21/01/27 14:55:48 INFO ...
分类:
编程语言 时间:
2021-01-28 11:56:52
阅读次数:
0
查看firewalld服务当前所使用的区域: firewall-cmd --get-default-zone 查询eno16777728网卡在firewalld服务中的区域: firewall-cmd --get-zone-of-interface=eno16777728 把firewalld服务中 ...
分类:
其他好文 时间:
2021-01-26 12:17:19
阅读次数:
0
import os def remove_filename(path_dir, start, end): files = [f for f in os.listdir(path_dir) if f.startswith(start) and f.endswith(end)] for file_nam ...
分类:
编程语言 时间:
2021-01-26 11:48:41
阅读次数:
0
def select_sort_simple(li): li_new = [] for i in range(len(li)): min_val = min(li) li_new.append(min_val) li.remove(min_val) return li_new def select_ ...
分类:
编程语言 时间:
2021-01-19 11:43:46
阅读次数:
0
安装mysql 使用rpm包安装 yum remove mariadb-libs.x86_64 yum install perl rpm -ivh mysql-community-common-5.7.31-1.el7.x86_64.rpm rpm -ivh mysql-community-libs ...
分类:
数据库 时间:
2021-01-19 11:40:29
阅读次数:
0
一.Anacnoda 1.简介 包管理工具 环境管理工具 2.Anacnoda、conda、pip、virtualenv的区别 ①Anaconda Anaconda是一个包含180+的科学包及其依赖项的发行版本。其包含的科学包包括:conda, numpy, scipy, ipython noteb ...
分类:
其他好文 时间:
2021-01-14 10:35:55
阅读次数:
0
清除未使用的卷 「How To Remove Docker Containers, Images, Volumes, and Networks」 清除没有使用的卷:docker system prune --volumes 从镜像中还原Dockerfile文件 -「How to generate a ...
分类:
其他好文 时间:
2021-01-11 11:04:04
阅读次数:
0
1问题 在尝试删除docker镜像时,出现了报错: Error response from daemon: conflict: unable to remove repository 使用的模版命令: docker rmi 镜像id 2.缘由 查询资料发现说是这个镜像在容器里运行过,于是就占这镜像, ...
分类:
其他好文 时间:
2021-01-08 10:30:27
阅读次数:
0
一、mysql5.7源码安装1.清除卸载原mysql[root@192 ~]# rpm -qa | grep mariadbmariadb-libs-5.5.60-1.el7_5.x86_64[root@192 ~]# yum -y remove mari*或者用rpm卸载[root@192 ~]# ...
分类:
数据库 时间:
2021-01-08 10:29:39
阅读次数:
0
centos7 安装git 1、简单直接: yum install git 命令安装 (卸载Git:yum remove git) 存在问题:版本太旧(因此不建议这样) 2、wget git源码地址 (在线下载,推荐!!!) 方法: 2.1先访问:git官网:https://github.com/g ...
分类:
其他好文 时间:
2021-01-07 12:40:50
阅读次数:
0