简体   繁体   中英

Permission issue in linux file system

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.

您可以在会话后使用命令chmod 777 <filename>来使用命令任务

Try setGID bit.Change the permission to 2770 on the directory. This will give specials permissions and your file has necessary permissions. chmod 2770

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM