一名数据库爱好者

一名数据库爱好者

日志级别

tidb 默认日志级别 为 info,可选项为 [debug, info, warn, error, fatal],在 tidb-server,tikv-server,tiflash-server,pd-server 四个板块内都可以设置

查看集群名称

使用 tiup 命令 查看集群信息

[root@DB2-001 tidb]# tiup cluster list
tiup is checking updates for component cluster ...
A new version of cluster is available:
   The latest version:         v1.14.1
   Local installed version:    v1.14.0
   Update current component:   tiup update cluster
   Update all components:      tiup update --all


Starting component `cluster`: /root/.tiup/components/cluster/v1.14.0/tiup-cluster list
Name       User  Version  Path                                            PrivateKey
----       ----  -------  ----                                            ----------
tidb-test  tidb  v6.5.2   /root/.tiup/storage/cluster/clusters/tidb-test  /root/.tiup/storage/cluster/clusters/tidb-test/ssh/id_rsa

集群名字为 tidb-test

更改配置文件

修改配置文件命令

tiup cluster edit-config tidb-test

注意 修改日志格式

tidb_servers:
  - host: 10.0.1.1
    config:
      log.level: error

TIDB修改日志级别-LMLPHP

修改完,保存退出

TIDB修改日志级别-LMLPHP

出现提示 :请检查上面的变更亮点,您是否想应用这些变更?[y/N]:(默认为N)

按“Y+回车”就可以确认了。更改成功

01-29 13:45