Linoma MFT leaving files neither it nor root can overwrite- Unicorn Meta Zoo #1: Why another...
Where did Arya get these scars?
A strange hotel
Would reducing the reference voltage of an ADC have any effect on accuracy?
Co-worker works way more than he should
How long after the last departure shall the airport stay open for an emergency return?
Is Bran literally the world's memory?
Justification for leaving new position after a short time
How would I use different systems of magic when they are capable of the same effects?
Retract an already submitted recommendation letter (written for an undergrad student)
What is the best way to deal with NPC-NPC combat?
Need of separate security plugins for both root and subfolder sites Wordpress?
Why did C use the -> operator instead of reusing the . operator?
How would this chord from "Rocket Man" be analyzed?
How to count in linear time worst-case?
Visa-free travel to the US using refugee travel document from Spain?
Why does the Cisco show run command not show the full version, while the show version command does?
Arriving in Atlanta after US Preclearance in Dublin. Will I go through TSA security in Atlanta to transfer to a connecting flight?
Trumpet valves, lengths, and pitch
Multiple options vs single option UI
What is this word supposed to be?
Mistake in years of experience in resume?
Is Diceware more secure than a long passphrase?
What is it called when you ride around on your front wheel?
Do I need to protect SFP ports and optics from dust/contaminants? If so, how?
Linoma MFT leaving files neither it nor root can overwrite-
Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar Manara
2019 Community Moderator Election Results
Why I closed the “Why is Kali so hard” questionEnumeratingwriting files in a specific directory hangs the commandSpecify a fallback file for a broken symbolic linkUnable to remove the files from an usb drive (neither by dd /dev/zero nor by rm -r)Forcing owner on created files and foldersHow can I identify the filesystem/partition typeCannot write to samba share with certain nameOptimize ext4 for always full operationBTRFS issue - disappearing/reappearing contents? Two independent versions of filesystem depending on mounted subvolumeStrange inode count with /dev/vzfsRecovering file from compressed raw data on btrfs
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
We have a problem with a managed file transfer program. We have been using it for years without a problem, but now it has a few specific projects that are unable to overwrite specific filenames. It's on Centos, the base OS (uname -r 3.10.0-957.10.1.el7.x86_64) is XFS filesystem, the place where the writes are failing is mounted as CIFS. In /etc/fstab the failing spot is mounted with vers=3.0 for SMB.
The puzzling thing is that there are hundreds of identical projects (and on the same filesystems) but only a few doing this. It cannot write this one specific file, either by root or the normal process. From within the directory where it's supposed to be:
touch BAD_FILENAME.TXT
touch: cannot touch ‘BAD_FILENAME.TXT’: No such file or directory
I can create one elsewhere in the filesystem and trying to cp it to that location, gets the same error. Looking through the application's logs show the same error. Permissions are all rwx (as are other files in that dir), owner of the file is root.
In the past, during a maintenance window, a reboot seemed to fix it. In our last maintenance windows, I first ended the services on the application (FTP/FTPS/SFTP/HTTPS) and then I could manually overwrite it from the command line. This tells me the application is keeping a lock there. It is the same user(s) and the same project that repeatedly have the problem.
Suggestions?
filesystems xfs smb
New contributor
add a comment |
We have a problem with a managed file transfer program. We have been using it for years without a problem, but now it has a few specific projects that are unable to overwrite specific filenames. It's on Centos, the base OS (uname -r 3.10.0-957.10.1.el7.x86_64) is XFS filesystem, the place where the writes are failing is mounted as CIFS. In /etc/fstab the failing spot is mounted with vers=3.0 for SMB.
The puzzling thing is that there are hundreds of identical projects (and on the same filesystems) but only a few doing this. It cannot write this one specific file, either by root or the normal process. From within the directory where it's supposed to be:
touch BAD_FILENAME.TXT
touch: cannot touch ‘BAD_FILENAME.TXT’: No such file or directory
I can create one elsewhere in the filesystem and trying to cp it to that location, gets the same error. Looking through the application's logs show the same error. Permissions are all rwx (as are other files in that dir), owner of the file is root.
In the past, during a maintenance window, a reboot seemed to fix it. In our last maintenance windows, I first ended the services on the application (FTP/FTPS/SFTP/HTTPS) and then I could manually overwrite it from the command line. This tells me the application is keeping a lock there. It is the same user(s) and the same project that repeatedly have the problem.
Suggestions?
filesystems xfs smb
New contributor
add a comment |
We have a problem with a managed file transfer program. We have been using it for years without a problem, but now it has a few specific projects that are unable to overwrite specific filenames. It's on Centos, the base OS (uname -r 3.10.0-957.10.1.el7.x86_64) is XFS filesystem, the place where the writes are failing is mounted as CIFS. In /etc/fstab the failing spot is mounted with vers=3.0 for SMB.
The puzzling thing is that there are hundreds of identical projects (and on the same filesystems) but only a few doing this. It cannot write this one specific file, either by root or the normal process. From within the directory where it's supposed to be:
touch BAD_FILENAME.TXT
touch: cannot touch ‘BAD_FILENAME.TXT’: No such file or directory
I can create one elsewhere in the filesystem and trying to cp it to that location, gets the same error. Looking through the application's logs show the same error. Permissions are all rwx (as are other files in that dir), owner of the file is root.
In the past, during a maintenance window, a reboot seemed to fix it. In our last maintenance windows, I first ended the services on the application (FTP/FTPS/SFTP/HTTPS) and then I could manually overwrite it from the command line. This tells me the application is keeping a lock there. It is the same user(s) and the same project that repeatedly have the problem.
Suggestions?
filesystems xfs smb
New contributor
We have a problem with a managed file transfer program. We have been using it for years without a problem, but now it has a few specific projects that are unable to overwrite specific filenames. It's on Centos, the base OS (uname -r 3.10.0-957.10.1.el7.x86_64) is XFS filesystem, the place where the writes are failing is mounted as CIFS. In /etc/fstab the failing spot is mounted with vers=3.0 for SMB.
The puzzling thing is that there are hundreds of identical projects (and on the same filesystems) but only a few doing this. It cannot write this one specific file, either by root or the normal process. From within the directory where it's supposed to be:
touch BAD_FILENAME.TXT
touch: cannot touch ‘BAD_FILENAME.TXT’: No such file or directory
I can create one elsewhere in the filesystem and trying to cp it to that location, gets the same error. Looking through the application's logs show the same error. Permissions are all rwx (as are other files in that dir), owner of the file is root.
In the past, during a maintenance window, a reboot seemed to fix it. In our last maintenance windows, I first ended the services on the application (FTP/FTPS/SFTP/HTTPS) and then I could manually overwrite it from the command line. This tells me the application is keeping a lock there. It is the same user(s) and the same project that repeatedly have the problem.
Suggestions?
filesystems xfs smb
filesystems xfs smb
New contributor
New contributor
edited 3 hours ago
Rui F Ribeiro
42.3k1485143
42.3k1485143
New contributor
asked 4 hours ago
ScottSScottS
1
1
New contributor
New contributor
add a comment |
add a comment |
0
active
oldest
votes
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
});
}
});
ScottS is a new contributor. Be nice, and check out our Code of Conduct.
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%2f515334%2flinoma-mft-leaving-files-neither-it-nor-root-can-overwrite%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
ScottS is a new contributor. Be nice, and check out our Code of Conduct.
ScottS is a new contributor. Be nice, and check out our Code of Conduct.
ScottS is a new contributor. Be nice, and check out our Code of Conduct.
ScottS is a new contributor. Be nice, and check out our Code of Conduct.
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%2f515334%2flinoma-mft-leaving-files-neither-it-nor-root-can-overwrite%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