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


In reply to Re: Log4Perl: file permissions by kcott
in thread Log4Perl: file permissions by fefofe@gmx.ch

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.