sumitmf

Trusted Contributor.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2019-09-19
15:39
117 views
Linux permission for CSV Collector
I am running a CSV collector to collect accounts and permissions. The file is been dropped in the directory having rwxrwx--- permissions. What account IG uses to run the collector. I need to put that account in the group having rwx permission , or I can change the ownership to that account. I don't want to open permission for "other" for the directory.
Thanks.
2 Replies
Highlighted
dbuschke

Super Contributor.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2019-09-19
15:47
Re: Linux permission for CSV Collector
As everything runs within tomcat I would assume it is the user which
runs tomcat (i.e. novlua if you are using tomcat of IDM). Have a look
with
ps aux |fgrep tomcat
regards
Daniel
runs tomcat (i.e. novlua if you are using tomcat of IDM). Have a look
with
ps aux |fgrep tomcat
regards
Daniel
sumitmf

Trusted Contributor.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2019-09-19
20:19
Re: Linux permission for CSV Collector
Thanks.