浏览代码

add files

animeic 2 年之前
父节点
当前提交
2607388433
共有 2 个文件被更改,包括 174 次插入0 次删除
  1. 128 0
      tmp.md
  2. 46 0
      work-note.md

+ 128 - 0
tmp.md

@@ -0,0 +1,128 @@
+### main提交
+
+git checkout remotes/origin/main
+git switch -c main
+git push --set-upstream origin main
+
+### git添加子模块
+
+git submodule add http://124.70.149.18:10880/service/comm.git
+git submodule update --init --recursive
+
+git submodule update --recursive --remote
+git checkout master
+git pull
+
+### 线上服务器
+
+Host huawei-prod02(官网)
+    HostName 124.71.139.24
+    User root
+    Port 22
+    #Password MmxInfish@2020
+
+华为云:
+infishCn
+Mmxiang@2022
+
+### docker 账号
+
+registry.cn-chengdu.aliyuncs.com
+infish2018:infish@2022
+
+docker login -u cn-east-3@SUEDSZR0SDZKPBL3S4AZ -p 2ff86159dfe08494c19696a7383f397ee271ead2646d08af5ef5059b3f8df077 swr.cn-east-3.myhuaweicloud.com
+
+ssh root@124.71.139.24
+
+### json美化
+
+ctrl+shift+j
+
+### json转go代码
+
+F1 paste json ...
+
+远程 HEAD 指向一个不存在的引用,无法检出
+git branch -a
+git checkout remotes/origin/main
+git switch -c main
+
+## 同步时区
+
+vim /etc/crontab
+2 15 * * * root ntpdate cn.ntp.org.cn
+
+subcribe queencount.service
+
+## docker无法正常停止
+
+systemctl stop docker.socket
+systemctl stop docker.service
+
+systemctl daemon-reload
+systemctl restart docker.service
+service docker start
+
+## docker更改数据盘
+
+1. 停止docker服务
+systemctl stop docker.socket
+systemctl stop docker.serivce
+
+2. 创建目标目录
+mkdir -p /data/docker
+
+3. 同步数据
+rsync -avz /var/lib/docker/ /data/docker
+
+4. 找到启动配置
+find / -name docker.service
+systemctl status docker
+
+5. 更改配置
+vim /lib/systemd/system/docker.service
+ExecStart=/usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock --graph=/data/docker
+
+6. 配置生效、重启docker
+systemctl daemon-reload
+systemctl start docker.service
+
+7. 查看是否生效
+docker info
+
+/usr/lib/systemd/system/docker.service
+
+
+## yarn dev nuxt.js 出错
+NODE_OPTIONS=--openssl-legacy-provider yarn dev
+
+## navicat 试用
+
+rm -rf ~/.config/dconf/user
+rm -rf ~/.config/navicat
+
+## linux 下编译windows可执行文件
+
+CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o train-service.exe main.go
+
+## git lfs 使用
+
+> [https://git-lfs.com/]
+
+1. 安装`https://github.com/git-lfs/git-lfs/releases/download/v3.3.0/git-lfs-linux-amd64-v3.3.0.tar.gz`,解压进入`sudo ./install.sh`
+2. git lfs track "*.zip"
+3. git add .gitattributes,commit,push
+
+## windows 安装mongo
+
+> 查看端口被哪个进程占用 netstat -ano |findstr "端口号" 杀死进程 taskkill /f /t /im "进程id或者进程名称"
+
+1. pack-oliseal-train文件夹中安装,安装路径自定义为`D:/pack-oilseal-train/mongo`
+2. 将mongo mongosh bin目录配置环境变量 `D:\pack-oilseal-train\mongo\MongoDB\Server\6.0\bin`,`D:\pack-oilseal-train\mongo\mongosh-1.6.1-win32-x64\bin`
+3. 命令行执行mongod
+4. 启动服务 net start MongoDB
+5. 执行mongosh
+6. use admin
+7. db.createUser({user:"admin",pwd:"admin123",roles:[{"role":"userAdminAnyDatabase","db":"admin"}]})
+8. db.auth("admin","admin123")
+9. db.createUser({user:"root",pwd:"oilseal-train",roles:["dbOwner"]})

+ 46 - 0
work-note.md

@@ -0,0 +1,46 @@
+# 工作记录
+
+1. 定制商城前端下单提示错误
+后端上传接口被注释掉了
+
+## 订单详情价格supplyName
+## 新增取消订单状态
+
+
+## 2022-11-28
+
+1. 同步取消和完成订单,订单中的商品状态
+2. 清理过时服务
+3. 添加颜色链接
+4. 测试供应链端
+   1. 新增商品默认上架状态
+   2. 上下架商品调用update接口
+5. 测试客户端
+   1. 客户端反馈上架后,上架时间未更新
+
+## 数据库迁移 [https://github.com/golang-migrate/migrate]
+
+> 脚本文件文档 [https://www.mongodb.com/docs/manual/reference/command/]
+
+1. comm.AppMongoMiration()函数,main中调用 // userCenter
+2. docker-compose.yaml中配置环境变量 // pack-3dshow [alpha分支]
+    MONGO_MIGRATIONS: /data/migrations==mongodb://root:3dshow@3dshow-mongo-alpha:27017/customer-user?authSource=admin  
+    volumes:  
+      - ./mongo-migrations/customer:/data/migrations  
+3. pack部署包中配置对应迁移文件
+
+   ├── config-service.yaml
+   ├── docker-compose.yaml
+   ├── mongo-migrations
+   │   ├── customer
+   │   │   ├── apps.down.json
+   │   │   └── apps.up.json
+   │   └── supplier
+   │       ├── apps.down.json
+   │       └── apps.up.json
+
+## 2023-01-03
+
+1. 数据库迁移本地测试、pack-3dshow alpha配置
+2. 包装计价项目,新增成本计划表按供应商下载
+3. 讨论3dshow2.o需求