cannot read via host OS symlink files that mount in windows container
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I try to use fluentd to read the kubernetes pod log files on a windows k8s cluster (yes, windows version k8s cluster).
I found that, all the kubernetes pod log is under C:/var/log
folder on the host OS, so I plan to mount this folder into the fluentd container so that fluentd can read it.
Because I found that all the files under C:/var/log
folder is symlink files, and the real target file is under C:ProgramDatadocker
, so I mount both folder into the pod, because I think the symlink files need the targeting files as well.
But I found that, fluentd can read the read file (under C:ProgramDatadocker
) but cannot read via symlink file under C:/var/log
.
So I remote to my windows node and try to verify by running:
$ docker run --rm -v c:/var/log:c:/var/log -v c:/ProgramData/docker:c:/ProgramData/docker -it mcr.microsoft.com/powershell powershell
And got the following result:
PS C:varlogcontainers> type .speller-col2-65679699c6-hjvhw_speller_speller-col2-ddd1788228d99678c04e85cc2438cb1646667ee0c751a9768b53da92df9f3103.log
type : The create operation failed because the name contained at least one mount point which resolves to a volume to which the specified device object is not attached.
At line:1 char:1
+ type .speller-col2-65679699c6-hjvhw_speller_speller-col2-ddd1788228d ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ReadError: (C:varlogcont...a92df9f3103.log:String) [Get-Content], IOException
+ FullyQualifiedErrorId : GetContentReaderIOError,Microsoft.PowerShell.Commands.GetContentCommand
I try to read the real log file ( which those symlink files point to), and I can get the content correctly. But when I try to read via the symlink files, it fails. I believe that's why the fluentd cannot work as well.
I try to google but I don't find any clue. Is there anyone who has tried the same case before or anyone who can share some idea that I can try?
windows docker kubernetes symlink
add a comment |
I try to use fluentd to read the kubernetes pod log files on a windows k8s cluster (yes, windows version k8s cluster).
I found that, all the kubernetes pod log is under C:/var/log
folder on the host OS, so I plan to mount this folder into the fluentd container so that fluentd can read it.
Because I found that all the files under C:/var/log
folder is symlink files, and the real target file is under C:ProgramDatadocker
, so I mount both folder into the pod, because I think the symlink files need the targeting files as well.
But I found that, fluentd can read the read file (under C:ProgramDatadocker
) but cannot read via symlink file under C:/var/log
.
So I remote to my windows node and try to verify by running:
$ docker run --rm -v c:/var/log:c:/var/log -v c:/ProgramData/docker:c:/ProgramData/docker -it mcr.microsoft.com/powershell powershell
And got the following result:
PS C:varlogcontainers> type .speller-col2-65679699c6-hjvhw_speller_speller-col2-ddd1788228d99678c04e85cc2438cb1646667ee0c751a9768b53da92df9f3103.log
type : The create operation failed because the name contained at least one mount point which resolves to a volume to which the specified device object is not attached.
At line:1 char:1
+ type .speller-col2-65679699c6-hjvhw_speller_speller-col2-ddd1788228d ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ReadError: (C:varlogcont...a92df9f3103.log:String) [Get-Content], IOException
+ FullyQualifiedErrorId : GetContentReaderIOError,Microsoft.PowerShell.Commands.GetContentCommand
I try to read the real log file ( which those symlink files point to), and I can get the content correctly. But when I try to read via the symlink files, it fails. I believe that's why the fluentd cannot work as well.
I try to google but I don't find any clue. Is there anyone who has tried the same case before or anyone who can share some idea that I can try?
windows docker kubernetes symlink
add a comment |
I try to use fluentd to read the kubernetes pod log files on a windows k8s cluster (yes, windows version k8s cluster).
I found that, all the kubernetes pod log is under C:/var/log
folder on the host OS, so I plan to mount this folder into the fluentd container so that fluentd can read it.
Because I found that all the files under C:/var/log
folder is symlink files, and the real target file is under C:ProgramDatadocker
, so I mount both folder into the pod, because I think the symlink files need the targeting files as well.
But I found that, fluentd can read the read file (under C:ProgramDatadocker
) but cannot read via symlink file under C:/var/log
.
So I remote to my windows node and try to verify by running:
$ docker run --rm -v c:/var/log:c:/var/log -v c:/ProgramData/docker:c:/ProgramData/docker -it mcr.microsoft.com/powershell powershell
And got the following result:
PS C:varlogcontainers> type .speller-col2-65679699c6-hjvhw_speller_speller-col2-ddd1788228d99678c04e85cc2438cb1646667ee0c751a9768b53da92df9f3103.log
type : The create operation failed because the name contained at least one mount point which resolves to a volume to which the specified device object is not attached.
At line:1 char:1
+ type .speller-col2-65679699c6-hjvhw_speller_speller-col2-ddd1788228d ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ReadError: (C:varlogcont...a92df9f3103.log:String) [Get-Content], IOException
+ FullyQualifiedErrorId : GetContentReaderIOError,Microsoft.PowerShell.Commands.GetContentCommand
I try to read the real log file ( which those symlink files point to), and I can get the content correctly. But when I try to read via the symlink files, it fails. I believe that's why the fluentd cannot work as well.
I try to google but I don't find any clue. Is there anyone who has tried the same case before or anyone who can share some idea that I can try?
windows docker kubernetes symlink
I try to use fluentd to read the kubernetes pod log files on a windows k8s cluster (yes, windows version k8s cluster).
I found that, all the kubernetes pod log is under C:/var/log
folder on the host OS, so I plan to mount this folder into the fluentd container so that fluentd can read it.
Because I found that all the files under C:/var/log
folder is symlink files, and the real target file is under C:ProgramDatadocker
, so I mount both folder into the pod, because I think the symlink files need the targeting files as well.
But I found that, fluentd can read the read file (under C:ProgramDatadocker
) but cannot read via symlink file under C:/var/log
.
So I remote to my windows node and try to verify by running:
$ docker run --rm -v c:/var/log:c:/var/log -v c:/ProgramData/docker:c:/ProgramData/docker -it mcr.microsoft.com/powershell powershell
And got the following result:
PS C:varlogcontainers> type .speller-col2-65679699c6-hjvhw_speller_speller-col2-ddd1788228d99678c04e85cc2438cb1646667ee0c751a9768b53da92df9f3103.log
type : The create operation failed because the name contained at least one mount point which resolves to a volume to which the specified device object is not attached.
At line:1 char:1
+ type .speller-col2-65679699c6-hjvhw_speller_speller-col2-ddd1788228d ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ReadError: (C:varlogcont...a92df9f3103.log:String) [Get-Content], IOException
+ FullyQualifiedErrorId : GetContentReaderIOError,Microsoft.PowerShell.Commands.GetContentCommand
I try to read the real log file ( which those symlink files point to), and I can get the content correctly. But when I try to read via the symlink files, it fails. I believe that's why the fluentd cannot work as well.
I try to google but I don't find any clue. Is there anyone who has tried the same case before or anyone who can share some idea that I can try?
windows docker kubernetes symlink
windows docker kubernetes symlink
edited Nov 15 '18 at 11:54
winterTTr
asked Nov 15 '18 at 10:09
winterTTrwinterTTr
1,276725
1,276725
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2fstackoverflow.com%2fquestions%2f53316982%2fcannot-read-via-host-os-symlink-files-that-mount-in-windows-container%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- 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%2fstackoverflow.com%2fquestions%2f53316982%2fcannot-read-via-host-os-symlink-files-that-mount-in-windows-container%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