日常错误
words8
这个作者很懒,什么都没留下…
展开
-
Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0
问题idea打包jar包时一直报这个错java Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0解决尝试在pom.xml中添加了如下依赖<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</arti原创 2021-08-19 15:56:32 · 1389 阅读 · 0 评论 -
Centos7下使用yum安装pip,提示没有可用的软件包。
问题:在Linux下,Miniconda创建了一个python3.6环境,然后使用yue下载pip,出现下列报错原因:pip不在centos官方yum源里面解决使用epel源,安装epel-release软件包。EPEL (Extra Packages for Enterprise Linux)是基于Fedora的一个项目,为“红帽系”的操作系统提供额外的软件包,适用于RHEL、CentOS等系统。可以在下面的网址上找到对应的系统版本,架构的软件包。执行下列命令,安装epel-rel..原创 2021-07-24 14:17:33 · 2406 阅读 · 1 评论 -
CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://mirrors.tuna.tsinghua.edu.cn/anaconda/pk
在Linux中,使用Miniconda创建 Python 3.6 环境时报以下错误[evil@hadoop102 ~]$ conda create --name superset python=3.6Collecting package metadata (current_repodata.json): failedCondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://mirrors.tuna.tsinghua.edu.cn/a原创 2021-07-23 17:27:55 · 479 阅读 · 2 评论 -
FAILED: ParseException line 5:29 missing EOF at ‘)‘ near ‘1‘
FAILED: ParseException line 5:29 missing EOF at ')' near '1'看是不是\t,只需在sql前按删除键。若一下子删除了多格就是/t了,需要换成空格;否则不用换。原创 2021-07-22 16:40:04 · 16820 阅读 · 0 评论 -
shell中单引号(‘‘)、双引号(““)、反引号(``)的区别
shell中单引号(’’)、双引号("")、反引号(``)的区别脚本#!/bin/bashdo_date=$1echo '$do_date'echo "$do_date"echo "'$do_date'"echo '"$do_date"'echo `date`echo ${date}结果[evil@hadoop102 bin]$ vim test.sh [evil@hadoop102 bin]$ chmod 777 test.sh [evil@hadoop102 bin]$原创 2021-07-20 13:16:52 · 315 阅读 · 0 评论 -
Duplicated tag: ‘properties‘ (position: START_TAG seen ...<!--\u7248\u672c\u53f7\u7edf\u4e00 -->\n
Duplicated tag: ‘properties’ (position: START_TAG seen …\n … @17:17)原创 2021-07-18 13:51:19 · 10426 阅读 · 0 评论 -
INFO ipc.Client: Retrying connect to server: hadoop103/192.168.1.103:8032. Already tried 1
INFO ipc.Client: Retrying connect to server: hadoop103/192.168.1.103:8032. Already tried 1 time(s); retry policy is RetryUpToMaximumCountWithFixedSleep第一、yarn没有开启第二、防火墙没有关闭原创 2021-07-18 13:50:07 · 1087 阅读 · 0 评论 -
Cannot find hadoop installation: $HADOOP_HOME or $HADOOP_PREFIX must be set or hadoop must be in th
问题:Cannot find hadoop installation: $HADOOP_HOME or $HADOOP_PREFIX must be set or hadoop must be in the path原因:hive的hive-env.sh没有配置hadoop环境变量原创 2021-07-18 13:48:14 · 541 阅读 · 0 评论