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!