parent
9bcdd0ede2
commit
1adff764a9
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 58 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 110 KiB |
@ -0,0 +1,19 @@
|
|||||||
|
```shell
|
||||||
|
# 安装ntp 服务(内网需配置yum源)
|
||||||
|
yum -y install ntpd
|
||||||
|
```
|
||||||
|
|
||||||
|
添加ntp服务器
|
||||||
|
vim /etc/ntp.conf
|
||||||
|
![[Pasted image 20240301135838.png]]
|
||||||
|
|
||||||
|
```shell
|
||||||
|
# 时区设置
|
||||||
|
timedatectl set-timezone Asia/Shanghai
|
||||||
|
# 发起同步
|
||||||
|
ntpdate 172.31.3.1
|
||||||
|
# 启动ntp
|
||||||
|
service ntpd start
|
||||||
|
# 设为开启自启
|
||||||
|
chkconfig ntpd on
|
||||||
|
```
|
@ -1,4 +1,4 @@
|
|||||||
```shell
|
```shell
|
||||||
# 需要找到nginx安装目录中的nginx命令文件
|
# 需要找到nginx安装目录中的nginx命令文件
|
||||||
ln -s /usr/local/nginx/sbin/nginx /usr/sbin/
|
ln -s /usr/local/nginx/sbin/nginx /usr/sbin/nginx
|
||||||
```
|
```
|
||||||
|
@ -0,0 +1,22 @@
|
|||||||
|
### 1.idea 配置
|
||||||
|
![[Pasted image 20240229112755.png]]
|
||||||
|
红框复制到 启动命令行中
|
||||||
|
+ docker 修改dockerfile
|
||||||
|
```shell
|
||||||
|
ENTRYPOINT ["java","--add-opens", "java.base/jdk.internal.misc=ALL-UNNAMED", "--illegal-access=warn","-Duser.timezone=Asia/Shanghai","-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005","-jar","/java/arksh.jar","--spring.profiles.active=prod"]
|
||||||
|
```
|
||||||
|
+ 普通部署
|
||||||
|
```shell
|
||||||
|
nohup java -jar xxxxx
|
||||||
|
```
|
||||||
|
|
||||||
|
### 2.开启端口
|
||||||
|
+ docker
|
||||||
|
![[Pasted image 20240229113127.png]]
|
||||||
|
|
||||||
|
### 3.防火墙
|
||||||
|
+ centos
|
||||||
|
```shell
|
||||||
|
firewall-cmd --zone=public --add-port=5005/tcp --permanent
|
||||||
|
firewall-cmd --reload
|
||||||
|
```
|
@ -0,0 +1,5 @@
|
|||||||
|
今日工作:
|
||||||
|
一、瑞丽AR
|
||||||
|
1. 前端环境搭建并打包更新
|
||||||
|
2. 尝试排查浏览器多路视频播放卡顿问题
|
||||||
|
3. 修复测试提出的其他bug
|
@ -0,0 +1,10 @@
|
|||||||
|
今日工作:
|
||||||
|
一、瑞丽AR
|
||||||
|
1. bugfix
|
||||||
|
2. 测试6路视频播放卡顿情况
|
||||||
|
|
||||||
|
|
||||||
|
问题:
|
||||||
|
一、畹町AR
|
||||||
|
1. 大通汇没有提供货值和边民互市数据
|
||||||
|
2. 需要模拟边民互市数据结构进行展示
|
@ -0,0 +1,7 @@
|
|||||||
|
今日工作:
|
||||||
|
一、瑞丽AR
|
||||||
|
1. 事件管理bug修复
|
||||||
|
2. 安装3台服务器ntp及时间校准
|
||||||
|
二、畹町AR
|
||||||
|
1. 场站无过车数据问题排查
|
||||||
|
2. 优化数据巡检脚本
|
@ -0,0 +1 @@
|
|||||||
|
{}
|
Loading…
Reference in new issue