Deployment and Maintenance / Admin Tool
This article mainly describes how to use the Admin Tool to maintain DataFlux Func.
1. Admin Tool admin-tool.py
DataFlux Func provides an Admin Tool to make it easier to perform emergency maintenance work.
The Admin Tool is bundled in the container and must be run using Docker exec. You can use --help to view the specific usage:
| Bash | |
|---|---|
1 | |
| Text Only | |
|---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | |
1.1 Reset Admin Password
Passwords of regular users can be reset directly by the system administrator. However, if the system administrator's own password is forgotten, it needs to be reset using the Admin Tool bundled with DataFlux Func.
For details, please refer to Deployment and Maintenance / Admin Tool
1.2 Reset Database Upgrade Sequence Number
During installation/upgrade, DataFlux Func automatically updates the database structure and records the current database structure version sequence number.
Under certain circumstances, if this sequence number is incorrect, the system cannot start normally. In this case, use the Admin Tool to correct it.
If you do not know what this is, please consult the official team before performing the operation
The specific commands are as follows:
- Outside the container
| Bash | |
|---|---|
1 | |
- Inside the container
| Bash | |
|---|---|
1 | |
1.3 Disable IP Address Filtering
If you have configured System Settings / IP Address Filtering incorrectly, you will be unable to access DataFlux Func.
You can use the following command to directly disable the IP address filtering function.
The specific commands are as follows:
- Outside the container
| Bash | |
|---|---|
1 | |
- Or inside the container
| Bash | |
|---|---|
1 | |
1.4 Clear Redis
If the queue is blocked and needs immediate recovery, or if unreasonable Script logic causes the cache to become too large, DataFlux Func may become inoperable.
You can use the following command to clear the Redis database.
Clearing Redis will not cause problems for DataFlux Func itself. However, running business code may depend on data in Redis. Please be sure to confirm before proceeding
The specific commands are as follows:
- Outside the container
| Bash | |
|---|---|
1 | |
- Or inside the container
| Bash | |
|---|---|
1 | |
2. Operating Redis Directly
If you need to operate Redis directly, you can directly enter the Redis terminal to perform operations.
The specific commands are as follows:
| Bash | |
|---|---|
1 | |
DataFlux Func uses Redis database 5 by default