镜像
npm
1npm config set registry https://registry.npmmirror.com
nvm
12node_mirror: https://npmmirror.com/mirrors/node/npm_mirror: https://npmmirror.com/mirrors/npm/
python
1pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
kali
1234567891011121314151617181920中科大 deb http://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib deb-src http://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib 阿里云 deb http://mirrors.aliyun.com/kali kali-rolling main non-free cont ...
Vue2使用g2
标题其实vue2和vue3用法差不多,使用的g2也是5.x的预防,其中的区别就是script块的写法不太一样,vue3更简洁更方便
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 ...
跨域访问
问题使用Vue对后台的资源进行访问,发生跨域的请求,会产生如下的报错
Access to fetch at ‘http://localhost:8080/hdfs/read-csv?path=/output/hdfsJobByMonth/part-r-00000‘ from origin ‘http://localhost:9528‘ has been blocked by CORS policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource. If an opaque response serves your needs, set the request’s mode to ‘no-cors’ to fetch the resource with CORS disabled.
这个错误表明前端应用(运行在 http://localhost:9528)试图通过 fetch API 访问后端服务(运行在 http://localhost:8080)的某个资源,但是由于跨域资源 ...
privateMap.get is not a function
问题G2图绘制过程中,在渲染过程中前端报错其中报错信息如下
tslib.es6.js:233 Uncaught (in promise) TypeError: privateMap.get is not a function
在GitHub上找到相应的解答
解决内部包缺少tslib
12npm install --save tslibnpm run start
GitHub原文链接
TypeError: privateMap.get is not a function
Can't find dependent libraries
问题在部署hadoop项目过程中,出现了这个报错Exception in thread “main” java.lang.UnsatisfiedLinkError: E:\winutils-master\hadoop-3.3.5\bin\hadoop.dll: Can’t find dependent libraries这个报错大概意思就是:dll缺所需的依赖
解决办法使用depends来查找所缺的依赖,该工具的下载地址:depends
使用的时候直接把dll文件拽进去等着搜索就行了 如图可以看到缺了哪些依赖,直接上网搜索添加即可只需要查看第一层即可
depends查找很慢
创建run_depends.txt文件
输入以下内容(两行)
12set PATH="""D:\Tools\depends\depends22_x64\depends.exe"
注意要讲上面的路径改成depends的路径
将run_depends.txt后缀名改为bat
然后直接启动这个bat文件就可以了,这样查找很快速
炫酷的border样式
1234<div class="item" info="彩虹边框"> <div></div></div>
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859div.item div{ --borderWidth: 12px; --bRadius: 5px; width: 60%; height: 60%; position: relative; z-index: 0; overflow: hidden; padding: 2rem; z-index: 0; border-radius: --bRadius; &::after, &::before { box-sizing: border-box; } ...
自用-yml配置文件
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101server : port : 8080 ##项目名字配置 #servlet : # context-path : /demo tomcat : uri-encoding : UTF-8 #xx 报错修改的地方 max-connections: 200000 max-http-form-post-size: 9000000 threads: max: 128 min-spare: 5spring : # 环境 dev|test|prod profiles : active : dev #引入其他配置文件,例如ftpHX 未配置 ...
Doris记录
部署doris 遇到的问题部署fe报错:
ip address range configured for priority_networks does not include the current IP address
解决:报错信息为,设置的网段没有包含当前网络。需要在fe的conf下设置priority_networks网段(需要设置本机的ip地址而不是服务器的公网ip地址)使用命令查看ip掩码地址ip addr show eth0 | grep inet | awk ‘{print $2}’ | awk -F’/‘ ‘{print $1}’
启动be时报错:
Please disable swap memory before installation
Linux系统发现又swap分区正在使用,需要进行关闭使用指令
输入命令 “sudo /bin/bash” 进入管理员权限的shell。
输入命令 “sudo swapoff -a” 禁用所有交换分区。
The JAVA_HOME environment variable is not de ...
服务器巡检
巡检命令12top# 查看cpu的空闲时间以及IO等待完成时间
12free -h# 查看avaliable的使用情况
12df -h# 查看磁盘空间占用情况
123getenforce# 使用getenforce命令可以在Linux下查看是否开启了SELinux# 如果为disable则有风险
12systemctl status firewalld# 查看防火墙是否开启
12crontab -l# 查看有没有未知的定时任务
数据库巡检
12select instance_name,host_name,startup_time,status,database_status from v$instance;-- 查看Oracl实例的状态
12select group#,status,type,member from v$logfile; -- 检查Oracle在线日志状态
在Oracle数据库中,v$logfile是一个动态性能视图,它提供了关于在线重做日志文件的信息。这些日志文件是Oracle用于记录所有数据库更改(如插入、更新和删除操作)的物理文件。这些更改随后 ...
Map的四种遍历方式
Entry由于Map中存放的元素均为键值对,故每一个键值对必然存在一个映射关系。Map中采用Entry内部类来表示一个映射项,映射项包含Key和Value (我们总说键值对键值对, 每一个键值对也就是一个Entry)Map.Entry里面包含getKey()和getValue()方法
1234567Iterator<Map.Entry<Integer, Integer>> it=map.entrySet().iterator(); while(it.hasNext()) { Map.Entry<Integer,Integer> entry=it.next(); int key=entry.getKey(); int value=entry.getValue(); System.out.println(key+" "+value); }
entrySetentrySet是 java中 键-值 对的集合,Set里面的类型是Map.Entry,一般可 ...