Openshift安装后配置(设置时区为中国)

设置时区为中国

可以用以下三种方法登录登录到OpenShift节点的CoreOS操作系统中,修改系统级的时区属性。

  • 通过命令行,使用debug进入node节点,然后切换到root。
bash 复制代码
$ oc debug node <NODE-NAME> 
# chroot /host
  • 在OpenShift 4.5以上版本,可使用Console进入node节点,然后切换到root。

  • 用安装过程中的证书进入node节点。

    $ ssh -i <ID_FILE> core@<OPENSHIFT_NODE_HOST_NAME>

    登录后使用以下命令查看当前时区、列出可用时区,然后设置系统的时区。

bash 复制代码
# ls -l /etc/localtime
# timedatectl
               Local time: Sun 2020-12-30 07:32:24 UTC
           Universal time: Sun 2020-12-30 07:32:24 UTC
                 RTC time: Sun 2020-12-30 07:32:23
                Time zone: UTC (UTC, +0000)
System clock synchronized: yes
              NTP service: active
          RTC in local TZ: no
          
# timedatectl list-timezones
# sudo timedatectl set-timezone Asia/Shanghai
# timedatectl
               Local time: Sun 2020-12-30 15:35:15 CST
           Universal time: Sun 2020-12-30 07:35:15 UTC
                 RTC time: Sun 2020-12-30 07:35:15
                Time zone: Asia/Shanghai (CST, +0800)
System clock synchronized: yes
              NTP service: active
          RTC in local TZ: no

原文链接:https://blog.csdn.net/weixin_43902588/article/details/108298517

相关推荐
RedCong5 天前
通过route访问Openshift上的HTTP request报错504 Gateway Time-out【已解决】
http·gateway·openshift
RedCong10 天前
Openshift上使用Elasticsearch (ECK) Operator部署ES
elasticsearch·openshift·1024程序员节
dawnsky.liu24 天前
OpenShift 4 - 云原生备份容灾 - Velero 和 OADP 基础篇
云原生·openshift·备份容灾
dawnsky.liu2 个月前
红帽 Quay- 配置镜像代理缓存
kubernetes·openshift
ghostwritten2 个月前
openshift node NotReady & kubelet http: TLS handshake error
http·openshift·kubelet
solinger3 个月前
kubebuiler安装
kubernetes·openshift·ocp
dawnsky.liu7 个月前
OpenShift 4 - 了解 OpenShift 是如何使用节点本地镜像缓存
云原生·openshift·devops
浩澜大大7 个月前
openshift和k8s的差别
容器·kubernetes·openshift
蓝黑20209 个月前
OCP使用web console创建和构建应用
openshift·ocp