You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: tiup/tiup-cluster.md
+17-1
Original file line number
Diff line number
Diff line change
@@ -99,6 +99,22 @@ monitoring_servers:
99
99
- host: 172.16.5.134
100
100
```
101
101
102
+
By default, TiUP is deployed as the binary files running on the amd64 architecture. If the target machine is the arm64 architecture, you can configure it in the topology file:
103
+
104
+
```yaml
105
+
global:
106
+
arch: "arm64"# Configures all machines to use the binary files of the arm64 architecture by default
107
+
108
+
tidb_servers:
109
+
- host: 172.16.5.134
110
+
arch: "amd64"# Configures this machine to use the binary files of the amd64 architecture
111
+
- host: 172.16.5.139
112
+
arch: "arm64"# Configures this machine to use the binary files of the arm64 architecture
113
+
- host: 172.16.5.140 # Machines that are not configured with the arch field use the default value in the global field, which is arm64 in this case.
114
+
115
+
...
116
+
```
117
+
102
118
Save the file as `/tmp/topology.yaml`. If you want to use TiDB v3.0.12 and your cluster name is `prod-cluster`, run the following command:
0 commit comments