摘要:
问题: 1、 Java installed version: 1.8.0_231 Hadoop installed version: Hadoop 3.2.1 But after running command hdfs namenode -format I'm getting following
阅读全文
posted @ 2020-11-17 16:54
bug_x
阅读(1029)
推荐(0)
摘要:
hadoop. maven 这么用最好用 1、 F:\ruan_java_home mklink /J F:\ruan_java_home “C:\Program Files (x86)\Java\jdk1.8.0_202” mklink /J "e:\test" "f:\test" "e:\tes
阅读全文
posted @ 2020-11-17 16:40
bug_x
阅读(697)
推荐(0)
摘要:
^(.*?)$\s+?^(?=.*^\1$) 参考正则表达式语法: https://www.runoob.com/regexp/regexp-syntax.html
阅读全文
posted @ 2020-10-10 14:55
bug_x
阅读(252)
推荐(0)
摘要:
async和promise都是异步方法,区别是async生成的结果是promise对象,async是promise的终结版。 await只能在async中使用,await是阻塞的意思,就是暂停,你一起调用2个接口,第一个执行完,不输出结果,要等最第二个接口执行完,才返回这两个的结果。 现在一块请求两
阅读全文
posted @ 2020-10-10 10:45
bug_x
阅读(293)
推荐(0)
摘要:
新版本chrome浏览器带来的跨域请求cookie丢失问题 https://www.jianshu.com/p/aa80ca97f877 https://www.ruanyifeng.com/blog/2019/09/cookie-samesite.html Cookie 的 SameSite 属性
阅读全文
posted @ 2020-08-20 18:08
bug_x
阅读(373)
推荐(0)
摘要:
1、安装elasticsearch https://www.elastic.co/guide/en/elasticsearch/reference/current/docker.html docker pull docker.elastic.co/elasticsearch/elasticsearc
阅读全文
posted @ 2020-08-18 23:44
bug_x
阅读(224)
推荐(0)
摘要:
原文地址:find + xargs 删除文件名中含有空格的文件 作者:flightbird 查找某个目录下更改时间超过7天的文件并删除它们。 方法一: $ find . -type f -mtime +7 -print -exec rm {} \; 问题来了,在使用find命令的-exec选项处理匹
阅读全文
posted @ 2020-08-14 16:42
bug_x
阅读(1218)
推荐(0)
摘要:
//127.0.0.1指的是本地,1080指的是代理工具设置的端口 git config --global http.proxy socks5://127.0.0.1:1080 1、git 代理设置 https://www.jianshu.com/p/77f773f492c6 //127.0.0.1
阅读全文
posted @ 2020-08-05 11:19
bug_x
阅读(230)
推荐(0)
摘要:
1\ 解决方案: composer global remove fxp/composer-asset-plugin --no-plugins https://stackoverflow.com/questions/37955880/composer-fatal-error-declaration-o
阅读全文
posted @ 2020-08-03 21:52
bug_x
阅读(405)
推荐(0)
摘要:
C:\xampp\htdocs\your_dir>SET HTTP_PROXY="http://192.168.1.103:8080"
阅读全文
posted @ 2020-08-03 21:48
bug_x
阅读(1574)
推荐(0)