v5.6.4
- Update Information
- Upgrade Instruction
Issues Fixing
- Under the worksheet org view, displaying incorrect hierarchical relationships after modifying superiors
- Data pipeline, creating synchronization tasks cannot be saved, prompting that the primary key is not mapped
- Custom page scan button, unable to call camera on iPad
- When cookies enable the HttpOnly policy, closing the browser and reopening it will keep refreshing
- In Redis sentinel mode, some functions experience lag
Standalone Mode
-
Upgrade microservices to version
5.6.4
. Microservices Upgrade -
After the image upgrade is completed, execute the database structure modification script in the microservice application container. The specific steps are as follows:
-
Enter container:
docker exec -it $(docker ps | grep community | awk '{print $1}') bash
-
Execute the following command to increase the index (If the username and password have been customized, please modify the corresponding parameter values)
mysql -h sc -P 3306 -uroot -p123456 --default-character-set=utf8 < /init/mysql/5.6.4/DDL.sql
-
Cluster Mode
-
Backup data storage related servers.
-
Upgrade microservices to version
5.6.4
. Microservices Upgrade -
Enter the config Pod of the control node and execute the relevant commands. The specific steps are as follows:
-
Enter config Pod:
kubectl exec -it $(kubectl get pod | grep config | awk '{print $1}') bash
-
Execute the following command to increase the index
mysql -h $ENV_MYSQL_HOST -P $ENV_MYSQL_PORT -u$ENV_MYSQL_USERNAME -p$ENV_MYSQL_PASSWORD --default-character-set=utf8 < /init/mysql/5.6.4/DDL.sql
-