配置集群 配置yarn-env.sh Linux系统中获取JDK的安装路径 [xiaoran@hadoop101 hadoop-2.7.2]$ echo $JAVA_HOME /opt/module/jdk1.8.0_144 修改JAVA_HOME路径 [xiaoran@hadoop101 hado ...
分类:
其他好文 时间:
2020-10-27 11:36:17
阅读次数:
28
从2020年2月份开始我将为大家带来《痞子衡嵌入式半月刊》,分享嵌入式领域有用有趣的工具或项目以及一些热点新闻。 ...
分类:
其他好文 时间:
2020-10-26 11:32:17
阅读次数:
17
表字段的增、删、改、查 增:alter table 表名 add 字段名 数据类型 【位置】; 删:alter table 表名 drop 字段名; 改:alter table 表名 modify 字段 数据类型 【位置】 重命名:alter table 表名 change oldname newn ...
分类:
数据库 时间:
2020-10-19 22:25:48
阅读次数:
31
第一步安装npmi-Dserviceworker-webpack-plugin。第二步:编写wepack.config.js如下constpath=require(‘path‘);constExtracTextPlugin=require(‘extract-text-webpack-plugin‘)const{WebPlugin)=require(’web-webpack-plugin’);con
分类:
Web程序 时间:
2020-10-18 16:51:24
阅读次数:
30
MariaDB和MySQL都是使用SQL的开源数据库,共享相同的原始代码库。MariaDB是MySQL的替代品,以至于你使用相同的命令(mysql)与MySQL和MariaDB数据库进行交互。因此,本文同样适用于MariaDB和MySQL。安装MariaDB你可以使用你的Linux发行版的软件包管理 ...
分类:
数据库 时间:
2020-10-14 20:16:08
阅读次数:
32
我们要理解什么是高阶组件可以先从高阶函数开始。高阶函数指的是一个函数接受一个或者多个函数作为参数或者返回一个函数就可以称之为高阶函数。我们平时用到的reduce,map,filter就是高阶函数。高阶组件和高阶函数类似,高阶组件(higher-order-component,简称HOC)它是参数为组 ...
分类:
其他好文 时间:
2020-10-12 20:07:11
阅读次数:
19
Mongodb数据库的安装第一步:下载mongodb安装包:MongoDB官方下载地址:http://www.mongodb.org/downloads第二步:解压压缩包将安装包在/usr/local目录下解压缩:tar-zxvfmongodb-linux-x86_64-rhel62-3.4.2.tgz第三步:安装准备将mongodb解压后的文件夹重命名:[root@192local]#mvmon
分类:
数据库 时间:
2020-10-08 18:53:53
阅读次数:
26
OpenCV更多形态转化:开盘、闭幕、形态梯度、顶帽、黑帽 1 static class MorphologyOperationsExample { 2 // OpenCV更多的形态转化 3 /* 4 开盘: 5 先侵蚀 后扩张 dst = open(src, element) = dilate(e ...
分类:
其他好文 时间:
2020-10-07 21:39:06
阅读次数:
46
1.创建表时并创建外键约束 create table score( scoreID int primary key, stuID int , score int constraint ck_score check(score between 0 and 100), courseName varcha ...
分类:
数据库 时间:
2020-09-24 22:03:46
阅读次数:
54
org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from class path resource [applicationContext.xml]; ne ...
分类:
编程语言 时间:
2020-09-21 12:02:35
阅读次数:
53