Is there a way to find out if a network outage occurred from logs?

Clash Royale CLAN TAG#URR8PPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have a red hat server running an oracle database.
I can see in oracles rdbms' alert logs that a network outage of some sort occurred.
ORA-16198: Timeout incurred on internal channel during remote archival
LGWR: Network asynch I/O wait error 16198 log 3 service
I want to know if the server registered something similar.
I'm looking for NIC failures or simply a disconnection from the switch.
Note that the outage was temporary. I can access the server through ssh and I can ping the database service and the server itself, so my only way to tell that something happened is from logs.
Where can I look for that?
rhel logs
add a comment |
I have a red hat server running an oracle database.
I can see in oracles rdbms' alert logs that a network outage of some sort occurred.
ORA-16198: Timeout incurred on internal channel during remote archival
LGWR: Network asynch I/O wait error 16198 log 3 service
I want to know if the server registered something similar.
I'm looking for NIC failures or simply a disconnection from the switch.
Note that the outage was temporary. I can access the server through ssh and I can ping the database service and the server itself, so my only way to tell that something happened is from logs.
Where can I look for that?
rhel logs
add a comment |
I have a red hat server running an oracle database.
I can see in oracles rdbms' alert logs that a network outage of some sort occurred.
ORA-16198: Timeout incurred on internal channel during remote archival
LGWR: Network asynch I/O wait error 16198 log 3 service
I want to know if the server registered something similar.
I'm looking for NIC failures or simply a disconnection from the switch.
Note that the outage was temporary. I can access the server through ssh and I can ping the database service and the server itself, so my only way to tell that something happened is from logs.
Where can I look for that?
rhel logs
I have a red hat server running an oracle database.
I can see in oracles rdbms' alert logs that a network outage of some sort occurred.
ORA-16198: Timeout incurred on internal channel during remote archival
LGWR: Network asynch I/O wait error 16198 log 3 service
I want to know if the server registered something similar.
I'm looking for NIC failures or simply a disconnection from the switch.
Note that the outage was temporary. I can access the server through ssh and I can ping the database service and the server itself, so my only way to tell that something happened is from logs.
Where can I look for that?
rhel logs
rhel logs
asked Jan 5 '12 at 19:06
Nicolas de FontenayNicolas de Fontenay
1,82861617
1,82861617
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Check your /var/log/messages log file. You could find something like:
Jan 6 00:00:21 tseenfoo kernel: [104970.689167] atl1c 0000:05:00.0: atl1c: eth0 NIC Link is Down
Jan 6 00:00:31 tseenfoo kernel: [104980.550289] atl1c 0000:05:00.0: atl1c: eth0 NIC Link is Up<1000 Mbps Full Duplex>
Note that those are network card kernel module messages so they are driver dependant. They may not exist at all or may change according to the different module active on you server.
If you can, run a tail -F /var/log/messages and quickly unplug/re-plug the cable (to see if those events are logged).
Check the driver documentation, often drivers offer some kind of debug mode you can use to log future outages.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f28391%2fis-there-a-way-to-find-out-if-a-network-outage-occurred-from-logs%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Check your /var/log/messages log file. You could find something like:
Jan 6 00:00:21 tseenfoo kernel: [104970.689167] atl1c 0000:05:00.0: atl1c: eth0 NIC Link is Down
Jan 6 00:00:31 tseenfoo kernel: [104980.550289] atl1c 0000:05:00.0: atl1c: eth0 NIC Link is Up<1000 Mbps Full Duplex>
Note that those are network card kernel module messages so they are driver dependant. They may not exist at all or may change according to the different module active on you server.
If you can, run a tail -F /var/log/messages and quickly unplug/re-plug the cable (to see if those events are logged).
Check the driver documentation, often drivers offer some kind of debug mode you can use to log future outages.
add a comment |
Check your /var/log/messages log file. You could find something like:
Jan 6 00:00:21 tseenfoo kernel: [104970.689167] atl1c 0000:05:00.0: atl1c: eth0 NIC Link is Down
Jan 6 00:00:31 tseenfoo kernel: [104980.550289] atl1c 0000:05:00.0: atl1c: eth0 NIC Link is Up<1000 Mbps Full Duplex>
Note that those are network card kernel module messages so they are driver dependant. They may not exist at all or may change according to the different module active on you server.
If you can, run a tail -F /var/log/messages and quickly unplug/re-plug the cable (to see if those events are logged).
Check the driver documentation, often drivers offer some kind of debug mode you can use to log future outages.
add a comment |
Check your /var/log/messages log file. You could find something like:
Jan 6 00:00:21 tseenfoo kernel: [104970.689167] atl1c 0000:05:00.0: atl1c: eth0 NIC Link is Down
Jan 6 00:00:31 tseenfoo kernel: [104980.550289] atl1c 0000:05:00.0: atl1c: eth0 NIC Link is Up<1000 Mbps Full Duplex>
Note that those are network card kernel module messages so they are driver dependant. They may not exist at all or may change according to the different module active on you server.
If you can, run a tail -F /var/log/messages and quickly unplug/re-plug the cable (to see if those events are logged).
Check the driver documentation, often drivers offer some kind of debug mode you can use to log future outages.
Check your /var/log/messages log file. You could find something like:
Jan 6 00:00:21 tseenfoo kernel: [104970.689167] atl1c 0000:05:00.0: atl1c: eth0 NIC Link is Down
Jan 6 00:00:31 tseenfoo kernel: [104980.550289] atl1c 0000:05:00.0: atl1c: eth0 NIC Link is Up<1000 Mbps Full Duplex>
Note that those are network card kernel module messages so they are driver dependant. They may not exist at all or may change according to the different module active on you server.
If you can, run a tail -F /var/log/messages and quickly unplug/re-plug the cable (to see if those events are logged).
Check the driver documentation, often drivers offer some kind of debug mode you can use to log future outages.
edited Mar 11 at 14:59
Ayxan
1034
1034
answered Jan 5 '12 at 23:12
andcozandcoz
12.9k33139
12.9k33139
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f28391%2fis-there-a-way-to-find-out-if-a-network-outage-occurred-from-logs%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown