Skip to content

Commit

Permalink
cluster: fix tidb-dashboard listen_host (#2304)
Browse files Browse the repository at this point in the history
  • Loading branch information
nexustar authored Nov 8, 2023
1 parent 2eaf957 commit 310afd1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion embed/templates/scripts/run_tidb-dashboard.sh.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ exec numactl --cpunodebind={{.NumaNode}} --membind={{.NumaNode}} bin/tidb-dashbo
exec bin/tidb-dashboard \
{{- end}}
--feature-version="{{.TidbVersion}}" \
--host="{{.IP}}" \
--host="{{.Host}}" \
--port="{{.Port}}" \
--pd="{{.PD}}" \
--data-dir="{{.DataDir}}" \
Expand Down
3 changes: 2 additions & 1 deletion pkg/cluster/spec/dashboard.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,9 @@ func (i *DashboardInstance) InitConfig(
pds = append(pds, pdspec.GetAdvertiseClientURL(enableTLS))
}
cfg := &scripts.DashboardScript{
// -h, --host string listen host of the Dashboard Server
Host: i.GetListenHost(),
TidbVersion: clusterVersion,
IP: i.GetHost(),
DeployDir: paths.Deploy,
DataDir: paths.Data[0],
LogDir: paths.Log,
Expand Down
2 changes: 1 addition & 1 deletion pkg/cluster/template/scripts/dashboard.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
// DashboardScript represent the data to generate cdc config
type DashboardScript struct {
TidbVersion string
IP string
Host string
Port int
DeployDir string
LogDir string
Expand Down

0 comments on commit 310afd1

Please sign in to comment.