08 2023 档案
摘要:``` docker exec -it redis bash redis-cli -h 127.0.0.1 auth 123456 keys * ```
阅读全文
摘要:``` update railway r join railway_section rs on r.id = rs.railway_id join work_station ws on r.id = ws.railway_id join patroller p on r.id = p.railway
阅读全文
摘要:``` long epochMilli = LocalDateTime.now().plusHours(2).toInstant(ZoneOffset.UTC).toEpochMilli(); log.info("timestamp={}", epochMilli); Instant instant
阅读全文
摘要:``` docker run --rm -it \ -v /opt/docker-work/ffmpeg-container/90.mov:/config/90.mov \ -v /opt/docker-work/img/test.jpg:/config/test.jpg \ linuxserver
阅读全文
摘要:``` volumes: - "/usr/share/zoneinfo/Asia/Shanghai:/etc/localtime" ``` ``` environment: - TZ=Asia/Shanghai ```
阅读全文
摘要:###openssl `openssl req -x509 -newkey rsa:4096 -sha256 -nodes -keyout private.key -out cacert.pem -days 365` ###nginx.conf ``` server { listen 443 ssl
阅读全文
摘要:##时序图  ###流程描述 该场景中用户 A 将邀请用户 B 加入音视频会议,具体流程如下所述: 终端 App 的某
阅读全文