Skip to main content
Known Participant
February 6, 2013
Question

Spent Thousands and Adobe help is the worst

  • February 6, 2013
  • 6 replies
  • 1707 views

All I ask is plain simple questions and never have got a proper answer or even in some cases any answers from Adobe - you would think after spending vast amounts of money on multiple licenses you would get help!!! So -

FMS 4.0 - looking for help in optional external storage

Hi, Im am at my wits end and need help from someone who can look at my conf files and inform me how to change the stream data - it is currentyly on D, but the drive is full and want all NEW data etc on F - so it needs to still get existing data etc off D and create new folders and data on F

- can anyone help? it would be greatly appreciated

    This topic has been closed for replies.

    6 replies

    Known Participant
    February 15, 2013

    I agree with flashdicrionary, add <Streams></Streams> tags for all your new folders / drives, obviously make sure you are pointing at the correct base dir in each - but you will need to recycle the app

    Modify the Application.xml like this

    <Application>

        <StreamManager>

            <VirtualDirectory>

      <Streams>/;F:\MySpannedFMSStorageDir</Streams>

                <Streams>/;D:\MyOriginalFMSStorageDir</Streams>

            </VirtualDirectory>

        </StreamManager>

    </Application>

    Known Participant
    February 7, 2013

    our biggest problem is our FMS guy has left due to an accident he has had and we are trying to fathom how to fix this issue, so any help would be appreciated by emailing us at juturna_alaska@hotmail.com

    company shares/equity can be offered for help in fixing this issue (most likely take someone less than 20 mins to do)

    thanks

    PS we run Windows 2008 R2 and FMS 4.0 (and looking to upgrade to 4.5 or even 5.0)

    Known Participant
    February 7, 2013

    rhanks flashdictionary, is it possible for you to email me please - juturna_aalska@hotmail.com - thanks

    Known Participant
    February 7, 2013

    Do you have any examples in Linux as well, as these are all based on Windows.

    February 7, 2013

    Hi,

    The easiest way to achieve this is to create a symbolic link of drive F in drive D using the following command:

    mklink /d <Link> <Target>

    Known Participant
    February 8, 2013

    3.Chandan_Abhishek

    can you explain in details your post? thanks

    The easiest way to achieve this is to create a symbolic link of drive F in drive D using the following command:

    mklink /d <Link> <Target>

    February 8, 2013

    Hi,

    Actually this command will create a softlink of the <Target> with the name <Link>. For example if you want to create a link of F drive in C drive with the name F_Link, change directory to C: drive and run the following command from cmd:

    mklink /d F_Link F:

    Then you can use F_Link as any other folder in C drive.

    flashdictionary
    Inspiring
    February 7, 2013

    If that does not work for you, try to mount virtual directories in Windows or Linux. For example you have your D drive: D:\FMSStorageDir\VirtuallyMountedDir\

    The VirtuallyMountedDir can store any new streams.

    To do this it would require your Flash application to append the stream name with the virtually mounted folder VirtuallyMountedDir

    flashdictionary
    Inspiring
    February 7, 2013

    So sorry nobody has helped you out with this. So Ill try to help even if I cant answer it fully.

    You can map multiple physical directories to a single virtual directory. You use a stream tag <Streams> to map to your existing directory on your D drive, and then enter another stream tag <Streams> to map to a folder on the F drive.

    Modify the Application.xml like this

    <Application>

        <StreamManager>

            <VirtualDirectory>

                <!-- Specifies application specific virtual directory mapping for recorded

                streams.   -->

      <Streams>/;F:\MySpannedFMSStorageDir</Streams>

                <Streams>/;D:\MyOriginalFMSStorageDir</Streams>

            </VirtualDirectory>

        </StreamManager>

    </Application>

    See the following page:

    http://help.adobe.com/en_US/FlashMediaServer/4.0_ConfigAdmin/WS5b3ccc516d4fbf351e63e3d119f2925e64-7fc7.html

    Look for the section:

    Mapping virtual directories to physical directories