- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Kernel: kjornald messages in /var/log/messages and...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-01-2005 06:36 AM
тАО06-01-2005 06:36 AM
Kernel: kjornald messages in /var/log/messages and dmesg, what are they?
May 31 22:30:55 xxx kernel: kjournald starting. Commit interval 5 seconds
May 31 22:30:55 xxx kernel: EXT3 FS 2.4-0.9.11, 3 Oct 2001 on cciss0(104,33), internal journal
May 31 22:30:56 xxx kernel: EXT3-fs: mounted filesystem with ordered data mode.
May 31 22:31:23 xxx kernel: kjournald starting. Commit interval 5 seconds
May 31 22:31:23 xxx kernel: EXT3 FS 2.4-0.9.11, 3 Oct 2001 on cciss0(104,40), internal journal
May 31 22:31:23 xxx kernel: EXT3-fs: mounted filesystem with ordered data mode.
May 31 22:31:25 xxx kernel: kjournald starting. Commit interval 5 seconds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-01-2005 07:05 AM
тАО06-01-2005 07:05 AM
Re: Kernel: kjornald messages in /var/log/messages and dmesg, what are they?
I think this message appears when you mount an EXT3 file system. Are you doing that ? Are you having any problem with file systems ?
Regards,
Xyko
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-01-2005 06:21 PM
тАО06-01-2005 06:21 PM
Re: Kernel: kjornald messages in /var/log/messages and dmesg, what are they?
I believe you are trying to mount some EXT3 file system (either through script or from bash prompt) in cciss0 device (smart array raid drive).
I believe these are informational messages and nothing to be worried. kjournald daemon prints out the journal commiting interval.
only debug messages.
Regards,
Gopi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-02-2005 12:46 AM
тАО06-02-2005 12:46 AM
Re: Kernel: kjornald messages in /var/log/messages and dmesg, what are they?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-02-2005 01:37 AM
тАО06-02-2005 01:37 AM
Re: Kernel: kjornald messages in /var/log/messages and dmesg, what are they?
Could an application (tomcat or something) be causing these messages?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-02-2005 05:47 AM
тАО06-02-2005 05:47 AM
Re: Kernel: kjornald messages in /var/log/messages and dmesg, what are they?
I guess that if you are running automount some application may be mounting and unmounting a filesystem. Check if automount is running, check if there is some filesystem that is mounted "on demand" (you may see that on /etc/fstab). If you are running automount, when an application opens a file on a filesystem not mounted, automount mounts it, and when all files of that filesystem are closed then the filesystem is unmounted.
regards,
xyko
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-02-2005 05:13 PM
тАО06-02-2005 05:13 PM
Re: Kernel: kjornald messages in /var/log/messages and dmesg, what are they?
xyko is correct, it could be automount problem.
another more likely reason could be, you are running some program which has some local loop back file systems (which is ext3) and the program is trying to mount that file system for some purpose. simple example of it can happen is
eg: mount loop-back-file.img /mnt/point -oloop
some of the loop back filesystems include initrd.img
so if you have done a kernel upgradation on that day which calls for initrd image recreation then this message could be from there.
Regards,
Gopi