Skip to main content
Participant
April 12, 2013
Question

Streaming VOD content over Http

  • April 12, 2013
  • 1 reply
  • 641 views

Streaming VOD content over http is playing with content mapped to local drive location in system where FMS is installed.But VOD content in mapped netwrok drive locations(in some other system) is not playing.Any thing related to UNC path privileges.If this is the case how to solve this issue.Thanks for any help.

    This topic has been closed for replies.

    1 reply

    April 12, 2013

    Hi,

    By default on Windows, all Apache services are registered to run as the System user (the LocalSystem account). The LocalSystem account has no privileges to the network via any Windows-secured mechanism. So, there are 2 ways of using network path on windows:

    • Using Symbolic Links (symlinks):

    A way to use network path is by creating symbolic link by using the mklink command. The general syntax for the command is as follows:

    mklink /d <Link> <Target> where /d is for directory.

    Eg. mklink /d \\hostname\dir C:\some_dir

    • Map the network drive and run Apache as a user other than the System user.

    For more details, please refer to the following link:

    http://www.adobe.com/devnet/adobe-media-server/articles/mapping-network-paths.html#articlecontentAdobe_numberedheader_0

    Participant
    April 13, 2013

    Hi Abhishek,

         Thank you for your speedy reply with clear points and suggestion.Hope it will solve my problem.I will revert back to you with the result soon.