明明没有数据库的配置及相关关联词,还是启动加载,奇了怪了 问题 启动程序报如下错误: Failed to configure a DataSource: 'url' attr...
明明没有数据库的配置及相关关联词,还是启动加载,奇了怪了 问题 启动程序报如下错误: Failed to configure a DataSource: 'url' attr...
操作分两步: 1,用IDEA导入本地包,之后可以直接在本地运行 2,若需要用maven打包线上运行,则必须用pom.xml导入 一:用IDEA导入本地包 二:用pom.xml...
ffserver启动: docker run -it --rm --network=host \ -v /data/ffserver/ffserver.conf:/e...
nginx配置: location /prometheus/ { proxy_set_header Host $http_host; proxy_pass http:...
1,uname -a 2,cat /etc/redhat-release 3, cat /proc/version
1,查看日志 kubectl get pod --all-namespaces | grep adapter kubectl logs -f --tail=10 test-a...
1,docker ubuntu 安装 Ubuntu 14.04 16.04 (使用apt-get进行安装) # step 1: 安装必要的一些系统工具 sudo apt-ge...
1,ubuntu的vim安装 安装:sudo apt-get install vim 2,vim复制不出来的时候 可以使用vim --version | grep clipb...
1,忽略返回值,如:k, _ := get() 2,判断是否实现接口,如:var _ F = &Pool() 3,导入包,近做初始化操作,如:import _ "pool"
问题一:配置ssh免密登录时出现错误 debug2: we sent a publickey packet, wait for reply debug3: receive p...
1,安装 1.1, git lfs安装:git lfs install 1.2, git lfs配置:git config --global lfs.url "http://...
1,table index is nil lua 表明table的下标是nil,有问题,需更改下标 2,lua格式化 安装见:https://github.com/marti...
1,使用tcp查看视频流 ffplay -rtsp_transport tcp rtsp://10.1.1.18:8554/high_6.264
1,执行protoc -I . --go_out=plugins=grpc,Mgoogle/protobuf/descriptor.proto=github.com/gola...
1,ffmpeg的安装 centos安装ffmpeg参考:https://trac.ffmpeg.org/wiki/CompilationGuide/Centos 2,查看视...
命令如下: ffmpeg -y -i rtsp://10.1.1.10:5454/0264.mp4 -vcodec copy -acodec copy -f mp4 ...
1,tcp三次握手 TCP A TCP B 1. CLOSED ...
1,查看linux系统的cpu,内存,磁盘详细信息 cat /proc/cpuinfo cat /proc/meminfo fdisk -l 其他命令如top/free/df...
一,golang语言的数组与切片的区别 答:数组是一个固定长度的基本数据结构类型,slice是基于数组实现的一种长度可变的数据结构常用类型 具体区别如下: 1,创建方式不同,...
1,mac解压一般使用命令行,tar或者是unzip。 如tar -zxvf test.tar.zip。 2,但是windows上zip压缩之后,mac解压。若是中文出现乱码...