读好书,交益友
发布时间:2021-11-16 15:05:30
点击(此处)折叠或打开#!/bin/bashPID=$(cat /tmp/sa.pid)kill -9 $PIDPID=$(sudo netstat -npl | awk '/:8070/' | awk -F "[ /]+" '{print $7; exit}')kill -9 $PIDpid=$(ps -ef | grep java | grep "video_agent-" | awk.........【阅读全文】
发布时间:2021-11-06 18:20:53
1 下载代码点击(此处)折叠或打开git clone https://github.com/guanzhi/GmSSL.git2 cd GmSSL./config no-sharedmake sudo make install3 从国密pfx的证书中分离出公钥openssl pkcs12 -in operator.p12 -clcerts -nokeys -out operator.pem.........【阅读全文】
发布时间:2021-11-05 16:59:03
修改下nginx中的.conf文件点击(此处)折叠或打开#下面这个就是禁止缓存location ~ \.(js|css|html|png|jpg)$ { add_header Cache-Control no-store;}......【阅读全文】
发布时间:2021-10-30 13:54:28
oshi-core 和org.elasticsearch.client的顺序不对,把org.elasticsearch.client放在maven pom文件的依赖的后面就可以解决。主要因为 点击(此处)折叠或打开<dependency> <groupId>org.elasticsearch..........【阅读全文】
发布时间:2021-10-29 11:48:45
1 运行docker容器docker run -d --name taishang -itd --privileged=true -p 10022:22 -p 10443:443 -v /usr/bin:/usr/bin:rw -v /usr/lib64:/usr/lib64:rw openeuler-20.03-lts /bin/bash2 获取容器iddocker inspect -f '{{.State.Pid}}' taishan572514获取到容器的PID即为容器1号进程在宿主机器命.........【阅读全文】