调试 Solaris 操作系统崩溃

发布于 2024-07-11 12:00:14 字数 112 浏览 12 评论 0原文

我可以访问远程 Solaris 终端,该终端偶尔会崩溃,我必须要求具有物理访问权限的人来启动机器,它成功地完成了。 我想知道应该查看哪些工具/文件来找出崩溃的原因,以便我可以进行必要的配置更改并在将来避免它。

I have access to a remote Solaris terminal which crashes occasionally, and I have to ask someone with physical access to boot the machine up, which it does successfully. I would like to know which tools/files should I look at to find out the cause of the crash so that I can make the necessary configuration changes and avoid it in the future.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱本泡沫多脆弱 2024-07-18 12:00:14

您可以使用什么工具取决于您运行的 Solaris 版本以及实际问题
是。 首先要做的是检查系统控制台(听起来您无权访问)和 /var/adm/messages 文件。 该文件随系统消息更新,最新的将出现在末尾。

接下来,您可以查找系统核心文件。 如果创建了核心文件,它将位于 /var/crash/hostname 中,其中“hostname”是计算机的名称。

如果 /var/crash/hostname 目录中有一个实际的核心文件,这组命令将为您提供一个很好的帮助
用于搜索 google 的字符串:

# cd /var/crash/hostname

将“主机名”替换为您计算机的主机名。

# mdb -k unix.0 vmcore.0 

如果您有多个核心文件,请选择最新版本。

 > ::status

这应该会给你一个恐慌消息,将其剪切并粘贴到谷歌中,看看你能找到什么。

有关更多核心文件分析,请阅读以下内容:
http://cuddletech.com/blog/pivot/entry.php?id= 965

What tools you can use will depend on what version of solaris you have running and what the actual problem
is. The first thing to do is check the system console (which it sounds like you don't have access to) and the /var/adm/messages file. This file is updated with system messages and the newest will appear at the end.

Next, you can look for a system core file. If a core file is created, it would be in /var/crash/hostname where "hostname" is the name of the machine.

If you have an actual core file in the /var/crash/hostname directory, this set of commands will give you a good
string to search google with:

# cd /var/crash/hostname

Replace "hostname" with the hostname of your machine.

# mdb -k unix.0 vmcore.0 

If you have multiple core files, select the most recent version.

 > ::status

This should give you a panic message, cut and paste that into google and see what you can find.

For more core file analysis read this:
http://cuddletech.com/blog/pivot/entry.php?id=965

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文