隨筆-204  評論-90  文章-8  trackbacks-0
            2020年4月20日
          此問題是由于升級 macos sonoma 14.2.1 引起的
          解決辦法,重新安裝xcode  
          rm -rf /Library/Developer/CommandLineTools
          xcode
          -select --install
          posted @ 2024-02-04 13:57 一凡 閱讀(56) | 評論 (0)編輯 收藏
          # Springboot整合activiti
          源代碼:https://gitee.com/yifan88899/acttest

          ## 版本說明
          - springboot 2.4.2
          - activiti 7.1.0.M6
          - mysql 8.0.28
          ## 插件安裝
          - Activiti BPMN visualizer
          ## Bpmn流程圖位置
          - 流程圖xmlpng需放在resources/processes
          ## Test
          - Test Case 都可執行,包括:
          - 流程查詢
          - 流程部署
          - 流程啟動
          - 流程拾取、完成操作
          ## Mysql
          - 需要啟動Mysql8
          - 數據庫名Activiti7
          - activiti會版建表

          posted @ 2023-11-10 15:56 一凡 閱讀(103) | 評論 (0)編輯 收藏
          1、打開my.cnf 加入 skip-grant-tables
          2、mysql.service stop && mysql.service start
          3、清空root密碼 并 退出
              update mysql.user set authentication_string='' where user='root';  
          4、mysql.service stop && mysql.service start
          5、mysql -root   免密登錄并修改root密碼
              alter user 'root'@'%' identified by 'pass$123';
              alter user 'root'@'localhost' identified by 'pass$123';

          確定是否支持遠程登錄,host中有%的記錄即支持
          select host, user, authentication_string, plugin from user;
          posted @ 2021-08-05 18:06 一凡 閱讀(210) | 評論 (0)編輯 收藏

          64e696 綠色
          5a97ff 藍色
          ffdb5a 黃色
          ff8b64 橙色
          ff5a65 紅色
          e00b5d 粉紅
          666666 深灰
          3cc7f5 淺藍
          f5863c 淺橙
          b00072 枚紅
          674ea7 紫色
          999999 灰色
          posted @ 2021-06-22 17:46 一凡 閱讀(88) | 評論 (0)編輯 收藏
          #!/usr/bin/expect
          ####################
          set pass xxxx
          set user yyyy
          ####################
          spawn ssh -p 35000 -o StrictHostKeyChecking=no "${user}@xgrelay.xxxx.com"
          expect {
            -re ".*Dkey.*" { gets stdin dkey; send "$dkey\r"; exp_continue}
            -re "Option>:"  { send "1\r" ;}
            -re "Password>:" { send "$pass\r" ; exp_continue }
            -re "password:" { send "$pass\r" ; exp_continue }
          }
          posted @ 2021-01-18 11:35 一凡 閱讀(170) | 評論 (0)編輯 收藏
          -- data export csv   其中 $1=$1 如果不加指定分隔符不生效
          mysql -uadmin -ptest -h127.0.0.1 -P3306 -e "select * from test where create_time > unix_timestamp('2020-09-10 00:00:00'and status = 99| awk '{OFS=","}{$1=$1;print $0}'

          #csv中文轉碼
          tmpfn="exempt-update-3.30.csv";iconv -c -s -f UTF-8 -t GBK $tmpfn > /tmp/$tmpfn && mv /tmp/$tmpfn .
          posted @ 2020-09-10 22:08 一凡 閱讀(191) | 評論 (0)編輯 收藏
          #!/bin/bash

          for f in "$@"do
              if [ -f "$f" ]; then
                  iconv -s -c -f UTF8 -t GBK "$f" > /tmp/$f.tmp
                  mv /tmp/$f.tmp "$f"
              fi
          done
          posted @ 2020-04-20 10:03 一凡 閱讀(190) | 評論 (0)編輯 收藏
          主站蜘蛛池模板: 宝坻区| 平塘县| 遂平县| 花莲县| 南开区| 稷山县| 赣州市| 民和| 绍兴县| 德钦县| 乐东| 北票市| 芜湖县| 许昌市| 岫岩| 平凉市| 正定县| 阿尔山市| 郸城县| 商城县| 招远市| 绥中县| 玉环县| 浮山县| 武强县| 恭城| 巫溪县| 大冶市| 教育| 常宁市| 永胜县| 华安县| 广南县| 曲沃县| 隆回县| 南投县| 嘉定区| 郸城县| 资阳市| 龙胜| 阿克苏市|