Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Log4Perl: file permissions

by kcott (Archbishop)
on Sep 16, 2017 at 04:58 UTC ( [id://1199502]=note: print w/replies, xml ) Need Help??


in reply to Log4Perl: file permissions

G'day fefofe,

Welcome to the Monastery.

"A setting off 600 leads to this: ---x-wx--T I'm really confused about this"

Firstly, 600 decimal is 1130 octal:

$ perl -E 'say 01130' 600

The permissions you show are correct for that number:

$ > fred $ ls -l fred -rw-r--r-- 1 ken staff 0 Sep 16 14:16 fred $ chmod 1130 fred $ ls -l fred ---x-wx--T 1 ken staff 0 Sep 16 14:16 fred

You don't show how you're using "600"; regardless, it's clearly being read as a decimal number, as indicated by "---x-wx--T".

If you replace "600" with "384", as shown by choroba, that should give you the wanted permissions of "-rw-------".

Perhaps also look at "umask" in the OPTIONS section of Log::Log4perl::Appender::File.

— Ken

Replies are listed 'Best First'.
Re^2: Log4Perl: file permissions
by fefofe@gmx.ch (Initiate) on Sep 18, 2017 at 06:12 UTC
    That was the problem, thought that 600 maybe was interpreted as a string but I not had the idea that perl could read this as a decimal number ...

    So all is fine, I have my permissions and know how to set them in future, many thanks!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1199502]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (7)
As of 2024-04-16 09:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found