Reputation: 43
Actually, I have a directory which has full permission (drwxrwxrwx
) but i have a process which creates a file in this directory by using another user and problem is that files which is created by process has not enough permission (-r-xr--r--
) that's why i am facing problem. So, is there any way to give the permissions by which created file also have complete permissions?
One more thing we would like to highlight that the process which creates this file is Informatica workflow.
Please assist.
Upvotes: 0
Views: 1091
Reputation: 1
Try setGID bit.Change the permission to 2770 on the directory. This will give specials permissions and your file has necessary permissions. chmod 2770
Upvotes: 0
Reputation: 3455
You can use a command task after the session with the command chmod 777 <filename>
Upvotes: 2