Skip to main content
Participant
December 20, 2010
Answered

Change recorded stream files permissions from server side

  • December 20, 2010
  • 1 reply
  • 860 views

I need a way to set the permissions (ex 0777) for the recorded streams without calling any additionals scripts.

Is this possible?

    This topic has been closed for replies.
    Correct answer Asa_-_FMS

    Yes, look for this config in Server.xml of your FMS

    <!-- This key controls who has read/write access to the shared object   -->
            <!-- files and stream files in the server. The Mask is used by umask    -->
            <!-- to set file creation mask.  By default, the mask is set to 017     -->
            <!-- and the files are created with permission 0666.                    -->
            <!-- 0666 & ~017 = 0660 = r w - r w - - - -, that means the owner of    -->
            <!-- the server and all the users belonging to the same group as the    -->
            <!-- owner will have read/write access to the files. This mask must be  -->
            <!-- a 3 digit octal format                                             -->
            <!-- This config node is for unix only.                                 -->
            <Mask>017</Mask>

    Asa

    1 reply

    Asa_-_FMS
    Adobe Employee
    Asa_-_FMSCorrect answer
    Adobe Employee
    December 21, 2010

    Yes, look for this config in Server.xml of your FMS

    <!-- This key controls who has read/write access to the shared object   -->
            <!-- files and stream files in the server. The Mask is used by umask    -->
            <!-- to set file creation mask.  By default, the mask is set to 017     -->
            <!-- and the files are created with permission 0666.                    -->
            <!-- 0666 & ~017 = 0660 = r w - r w - - - -, that means the owner of    -->
            <!-- the server and all the users belonging to the same group as the    -->
            <!-- owner will have read/write access to the files. This mask must be  -->
            <!-- a 3 digit octal format                                             -->
            <!-- This config node is for unix only.                                 -->
            <Mask>017</Mask>

    Asa

    Participant
    December 22, 2010

    thank you very much ,this is very helpful