From 34f223e8b10d594dc8e9bcfe927765ae6a5c77a0 Mon Sep 17 00:00:00 2001 From: chenrui Date: Mon, 10 Dec 2018 05:12:04 -0500 Subject: [PATCH] zh-trans: add docs/getting-started-guides/ubuntu/logging.md (#11621) --- .../getting-started-guides/ubuntu/logging.md | 79 +++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 content/zh/docs/getting-started-guides/ubuntu/logging.md diff --git a/content/zh/docs/getting-started-guides/ubuntu/logging.md b/content/zh/docs/getting-started-guides/ubuntu/logging.md new file mode 100644 index 0000000000..3418820021 --- /dev/null +++ b/content/zh/docs/getting-started-guides/ubuntu/logging.md @@ -0,0 +1,79 @@ +--- +title: 日志 +content_template: templates/task +--- + + + +{{% capture overview %}} + +本文将说明日志在 Juju 部署的集群中是如何工作的。 +{{% /capture %}} + +{{% capture prerequisites %}} + +本文假设你已经有一个可用的 Juju 部署的集群。 +{{% /capture %}} + +{{% capture steps %}} + +## 代理日志 + + +`juju debug-log` 命令可以显示集群中每一个节点上运行的 Juju 代理所汇总的日志结果。 +它可以帮助确定为何某个节点没有被部署或者是处于错误的状态。这些代理日志被存放在每个节点的 `/var/lib/juju/agents` 路径下。 + + +更多信息参见[Juju 文档](https://jujucharms.com/docs/stable/troubleshooting-logs) + + + +## 管理日志级别 + + +Juju 中默认的日志级别是 model 级别。不过,你可以随时调整它: + +``` +juju add-model k8s-development --config logging-config='=DEBUG;unit=DEBUG' +``` + + +然后在你的生态环境下的 k8s 模型进行配置 + +``` +juju model-config -m k8s-production logging-config='=ERROR;unit=ERROR' +``` + + +另外,所有控制器上的 jujud 守护进程默认使用 debug 级别。如果想要移除这种行为,编辑控制器节点上的 ```/var/lib/juju/init/jujud-machine-0/exec-start.sh``` 文件并注释掉 ```--debug``` 选项。 + + +修改之后,如下所示: + +``` +#!/usr/bin/env bash + +# Set up logging. +touch '/var/log/juju/machine-0.log' +chown syslog:syslog '/var/log/juju/machine-0.log' +chmod 0600 '/var/log/juju/machine-0.log' +exec >> '/var/log/juju/machine-0.log' +exec 2>&1 + +# Run the script. +'/var/lib/juju/tools/machine-0/jujud' machine --data-dir '/var/lib/juju' --machine-id 0 # --debug +``` + + +然后运行下面的命令,重启服务: + +``` +sudo systemctl restart jujud-machine-0.service +``` + + +Juju 中更多和日志与其它模型设置相关的信息请参考[官方文档](https://jujucharms.com/docs/stable/models-config)。 +{{% /capture %}}