后端 第6页
Spark提交任务显示waiting状态解决办法-Ddmit

Spark提交任务显示waiting状态解决办法

在使用Spark执行任务时,如果是同时提交多个任务,然后通过端口18080查看任务的状态会发现有的任务的状态为waiting状态,控制台提示:Initial job has not accepted any resources; check your ...
ddmit的头像-DdmitDdmit6年前
048690
Oracle创建用户提示ora-00922解决办法-Ddmit

Oracle创建用户提示ora-00922解决办法

oracle创建用户时,提示错误信息如下: SQL> CREATE USER michael IDENTIFIED BY 12345678 2 DEFAULT TABLESPACE michael_data 3 TEMPORARY TABLESPACE michael_temp; CREATE USER michael I...
ddmit的头像-DdmitDdmit6年前
048130
Java 8中如何获取Map对象的第一个元素-Ddmit

Java 8中如何获取Map对象的第一个元素

在Java 8中可以通过下面的方式获取Map对象的第一个元素: 1.获取元素键 //if order is important, e.g. with a TreeMap/LinkedHashMap map.keySet().stream().findFirst(); //if order is not i...
ddmit的头像-DdmitDdmit6年前
047982
记一次Payoneer(派安盈/P卡)无卡个人账户申请过程-Ddmit

记一次Payoneer(派安盈/P卡)无卡个人账户申请过程

因Google Adsense申请时选择了美国地区,导致验证PIN之后,必须填写税务信息及提供一个美国收款账号才能进行收款。因为我在国内,在网上查了一下,Payoneer(派安盈)可以实现美元收款的需求。这...
ddmit的头像-DdmitDdmit6年前
047570
CentOS 7通过yum安装Nginx-Ddmit

CentOS 7通过yum安装Nginx

创建文件: /etc/yum.repos.d/nginx.repo 添加如下内容: [nginx-stable] name=nginx stable repo baseurl=http://nginx.org/packages/centos/$releasever/$basearch/ gpgcheck=0 enabled=1 mod...
ddmit的头像-DdmitDdmit4年前
047290
Elasticsearch 7安装ingest-attachment插件的两种方式-Ddmit

Elasticsearch 7安装ingest-attachment插件的两种方式

环境 Elasticsearch 7.1.1; ingest-attachment-7.1.1; CENTOS 7; 在线安装 进入elasticsearch目录,执行下面的命令进行安装: sudo ./bin/elasticsearch-plugin install ingest-attachment ...
ddmit的头像-DdmitDdmit6年前
046310
Sybase for Linux下载、安装、配置指南-Ddmit

Sybase for Linux下载、安装、配置指南

自从Sybase被SAP收购后,Sybase官网的下载链接已经失效了,只能到SAP官方网站去下载了,具体下载地址: 1)ASE 试用版版(有Windows和Linux)下载地址:Evaluate SAP Adaptive Server Enterprise ...
ddmit的头像-DdmitDdmit6年前
245740
解决Windows10中Virtualbox安装虚拟机没有64位选项(N种情形盘点)-Ddmit

解决Windows10中Virtualbox安装虚拟机没有64位选项(N种情形盘点)

今天想在Windows 10系统安装完Virtualbox虚拟机,然后打算装一个CENTOS系统,但是选择安装系统的时候竟然没有64位操作系统的选项,经过一阵Google,终于解决了,在这里盘点一下出现这种情况的几...
ddmit的头像-DdmitDdmit6年前
045580
Java获取路径时Class.getResource()和ClassLoader.getResource()区别-Ddmit

Java获取路径时Class.getResource()和ClassLoader.getResource()区别

Java中取资源时,经常用到Class.getResource()和ClassLoader.getResource(),Class.getResourceAsStream()和ClassLoader().getResourceAsStream(),这里来看看他们在取资源文件时候的路径有什么...
ddmit的头像-DdmitDdmit6年前
045441
layui数据表格实现动态增加一行或删除一行-Ddmit

layui数据表格实现动态增加一行或删除一行

实现代码及思路如下: HTML代码 <div class='layui-col-lg12 layui-col-md12 layui-col-sm12 layui-col-xs12 tableWidget'> <table id='dataTableEditTable' lay-filter='dataTableEdi...
ddmit的头像-DdmitDdmit6年前
045094