Admin Console - Admin user requires valid username and password

I am running FMIS4.5 on CentOS5.5
FMIS is running and I can connect via Flash Media Encoder.
Web displays and admin console :1111 gives xml output, however
When using the user & password in my xml files to login (testing with ping), I get the "Admin user requires valid username and password" error.
conf/fms.ini:
# fms.ini contains substitution variables for Flash Media Server          #
# configuration files. Lines beginning with '#' are considered comments.  #
# A substitution variable is in the form <name>=<value>. Everything up to #
# the first '=' is considered the name of the substitution variable, and  #
# everything after the first '=' is considered the substitution value. If #
# you want a substitution variable to have leading or trailing spaces,    #
# enclose the value around double quotes. For example, foo=" bar "        #
# This section contains configurable parameters in Server.xml #
# Username for server admin
# For example:
#    SERVER.ADMIN_USERNAME = foo
SERVER.ADMIN_USERNAME = Admin
SERVER.ADMIN_PASSWORD = str34m1ng
# IP address and port Flash Media Admin Server should listen on
# For example:
#    SERVER.ADMINSERVER_HOSTPORT = :1111
SERVER.ADMINSERVER_HOSTPORT = :1111
# User id in which to run the process (Linux Only)
# For example:
#    SERVER.PROCESS_UID = 500
SERVER.PROCESS_UID = 500
# Group id in which to run the process (Linux Only)
# For example:
#    SERVER.PROCESS_GID = 500
SERVER.PROCESS_GID = 500
# License key for Flash Media Server
# For example:
#    SERVER.LICENSEINFO = XXXX-XXXX-XXXX-XXXX-XXXX-XXXX
SERVER.LICENSEINFO = #SORRY YOU DON'T GET TO SEE THIS#
# LIVE_DIR denotes the full path of sample "Live" application's
# folder for storing any live stream recorded by server.
# For example:
#    LIVE_DIR = <FMS_Installation_Dir>\applications\live
LIVE_DIR = /opt/adobe/fms/applications/live
# VOD_COMMON_DIR denotes the full path of sample "VOD" application's
# folder for storing onDemand and Progressive Download .flv/.mp3 files.
# File stored in this folder can be streamed and are also PD-able.
# Note : If you are using the default installation of Apache as a webserver,
# and if you modify VOD_COMMON_DIR, please change the document root
# accordingly in httpd.conf.
# For example:
#    VOD_COMMON_DIR = <FMS_Installation_Dir>\webroot\vod
VOD_COMMON_DIR = /opt/adobe/fms/webroot/vod
# VOD_DIR denotes the full path of sample "VOD" application's
# folder for storing onDemand only .flv/.mp3 files. Files stored in
# this folder are not PD-able
# For example:
#    VOD_DIR = <FMS_Installation_Dir>\applications\vod\media
VOD_DIR = /opt/adobe/fms/applications/vod/media
# The maximum size of the FLV cache, in megabytes.
# The default is 500MB.
SERVER.FLVCACHE_MAXSIZE=500
# Whether to start and stop the included HTTP server along
# with FMS.
SERVER.HTTPD_ENABLED = true
# This section contains configurable parameters in Adaptor.xml #
# Application directory for the virtual host
# For example:
#    VHOST.APPSDIR = C:\myapps
VHOST.APPSDIR = /opt/adobe/fms/applications
VHOST.ALLOW = all
# This section contains configurable parameters in Application.xml #
# List of semi-colon delimited paths in which to search for script to load
# For example:
#    APP.JS_SCRIPTLIBPATH = C:\scripts;C:\Program Files\Foo\scripts
APP.JS_SCRIPTLIBPATH = /opt/adobe/fms/scriptlib
# This section contains configurable parameters in Logger.xml #
LOGGER.LOGDIR =
# This section contains configurable parameters in Users.xml #
# Enable or disable using HTTP requests to execute admin commands.
# Set to "true" to enable, otherwise it will be disabled.  The
# actual commands permitted for server admin and virtual host admin
# users can be set in Users.xml.
USERS.HTTPCOMMAND_ALLOW = true
Users.xml:
<Root>
    <UserList>
        <!-- This tag defines an administrator for the server. -->
        <User name="${SERVER.ADMIN_USERNAME}">
            <!-- Salted Password Hash for this vhost administrator. -->
            <Password encrypt="false">${SERVER.ADMIN_PASSWORD}</Password>
            <!-- This admin can only connect to the server from the specified -->
            <!-- hosts. This is specified as a comma delimited list of        -->
            <!-- hostnames or domain names, and/or (full or partial) IP       -->
            <!-- addresses. For example,                                      -->
            <!-- "foo.yourcompany.com, macromedia.com, 10.60.1.133, 10.60"    -->
            <Allow>All</Allow>
            <!-- This admin cannot connect to the server from any of the      -->
            <!-- specified hosts. This is specified as a comma delimited list -->
            <!-- of hostnames or domain names, and/or (full or partial) IP    -->
            <!-- addresses. For example,                                      -->
            <!-- "foo.yourcompany.com, macromedia.com, 10.60.1.133, 10.60"    -->
            <Deny></Deny>
            <!-- Specifies the order in which to evaluate the <Allow> and     -->
            <!-- <Deny> tags. This can be "Allow,Deny" or "Deny,Allow". The   -->
            <!-- default is "Deny,Allow" which means that access is allowed   -->
            <!-- unless specified in <Deny> and not specified in <Allow>.     -->
            <Order>Allow,Deny</Order>
        </User>
        <User name="janedoe">
                <Password encrypt="false">S4mpl3P4ss</Password>
                <Allow></Allow>
                <Deny></Deny>
                <Order>Allow,Deny</Order>
        </User>
    </UserList>
    <AdminServer>
        <HTTPCommands>
            <!-- Enable or disable using HTTP requests to execute admin commands.     -->
            <!-- Set to "true" to enable, otherwise it will be disabled.  The           -->
            <!-- actual commands permitted for server admin and virtual host admin    -->
            <!-- users can be set in the Allow and Deny elements.                                   $
            <Enable>${USERS.HTTPCOMMAND_ALLOW}</Enable>
            <!-- List of server admin commands that can be accessed via HTTP.         -->
            <!-- Add multiple commands separated by commas.  "All" indicates          -->
            <!-- every command (it's not recommended to allow all commands).          -->
            <!-- Seperate multiple commands with commas.                              -->
            <Allow>ping</Allow>
            <!-- List of server admin commands denied access via HTTP.                -->
            <!-- Add multiple commands seperated by commas.  "All" indicates          -->
            <!-- every command.                                                       -->
            <Deny>All</Deny>
            <!-- Processing order for deny and allow command lists.  "Deny,Allow"     -->
            <!-- means the command will be allowed if the command is in the allow     -->
            <!-- list or not in the deny list.   "Allow,Deny" means the command       -->
            <!-- will be allowed if it is in the allow list and not in the            -->
            <!-- deny list.                                                           -->
            <Order>Deny,Allow</Order>
        </HTTPCommands>
    </AdminServer>
</Root>
Output on :1111/admin/ping?auser=Admin&apswd=str34m1ng :
<result>
  <level>error</level>
     <code>NetConnection.Connect.Rejected</code>
     <description>Admin user requires valid username and password.</description>
     <timestamp>Thu 17 May 2012 11:33:43 AM EDT</timestamp>
</result>
Connections do not work from both localhost and external connections and the fms_adminConsole.htm (.swf) fails as well.
Any assistance is appreciated!

Hi,
FMIS 4.5 does not accept plain text password. Encrypt=false is no longer supported. See here for more information : http://help.adobe.com/en_US/flashmediaserver/configadmin/WS5b3ccc516d4fbf351e63e3d119f2926 bcf-7fed.html#WS5b3ccc516d4fbf351e63e3d119f2926bcf-7e91
The value for SERVER.ADMIN_PASSWORD needs to be the encrypted string for your password. That should solve your problem.
Hope this helps.
Thanks,
Apurva

Similar Messages

  • Help with "Admin user requires valid username and password" on fms2_console.swf page

    Just installed FMS2 on Debian (etch, 2.16.5-1 kernel). When I
    connect to localhost:1111/fms2_console.swf and get the infamous XML
    output which includes the text, "Admin user requires valid username
    and password." The *.xml and *.ini files haven't been touched after
    installation. All four daemons (fmsedge, fmsmaster, fmscore,
    fmsadmin) are running and listening on the correct ports.
    Any tips? (I'm sure this is easy to solve...)
    Thanks.

    Hi,
    FMIS 4.5 does not accept plain text password. Encrypt=false is no longer supported. See here for more information : http://help.adobe.com/en_US/flashmediaserver/configadmin/WS5b3ccc516d4fbf351e63e3d119f2926 bcf-7fed.html#WS5b3ccc516d4fbf351e63e3d119f2926bcf-7e91
    The value for SERVER.ADMIN_PASSWORD needs to be the encrypted string for your password. That should solve your problem.
    Hope this helps.
    Thanks,
    Apurva

  • You must supply a valid username and password in Hyp 11.1.1.3.0

    HI,
    We have successfully installed New version of Hyperion 11.1.1.3. Configuration is successfull. When running validation one error occurs.
    We are unable to log in workspace as we are required to 'supply a valid username and password'. We log in as admin/password but this is not working.
    When I change it is shared services console it does not solve this issue.
    Can you please advice of what shall be done to get over this?
    thank you
    lubos

    This is not the Hyperion/Essbase forum.

  • The server at Mac OS X Server Web Services requires a username and password

    I am running SL Server 10.6.2, wiki works but when a person clicks an attached file in a wiki and then selects "open" they get a login popup with the notification The server at Mac OS X Server Web Services requires a username and password. It doesn't matter what they put into the login/pass it comes back. If they hit cancel then the document opens. If they click save then it saves with no issue. I can type in the admin login/pass of the server and it works. Does this mean the security settings to the location of the files is wrong? Any help is greatly appreciated!

    By the way they are using Internet Explorer 7 when opening these documents.

  • Email send/receive suddenly doesn't work ; can't change email settings as BB phone won't accept valid username and password -- what to do?

    email send/receive suddenly doesn't work (as of September 24th); I can't change email settings (one suggestion from tech) as BB phone won't accept *valid* username and password -- what to do?
    I understand from a support note that if I keep trying my password/username combination, my BB will eventually delete all data!
    I can't understand this. I'm completely lost now. I can't remember what I've done or tried to do. A plethora of usernames and passwords is swimming in my head.
    Thanks for any hints. I have always loved this BB Bold and have never had any trouble with it.

    But the real question is why for the past year did the passwords work and then all of the sudden after this anomaly the disk password doesn't work?  I'm not 100% sure of what my configuration was, but I know that most of the time it required one password -- supervisor, and occasionally it asked for 2 -- disk password as well I believe.  This may have been related to the Password on Restart setting I think -- asking for the disk password on cold vs. warm boot.  But I know both were exactly the same.  But after this incident only the Supervisor password worked.

  • How do I connect to an SMTP server that requires a username and password?

    Hi,
    I am currently working on a project for university which requires me to send and receive email. I was until this week able to send mail no problem, but now the SMTP server has been upgraded so that each time a mail is sent it requires the username and password.
    Ideally the connection should be made using TLS/SSL, and not use the Authenticator method. I want to pass the username and password directly if possible.
    I've been trying to use the following but have been getting handshake, and other exceptions:
    SMTPSSLTransport smtpSSLtransport = new SMTPSSLTransport(session,
                        new URLName("smtp", smtpHost, port, null-File,
                        "USERNAME", "PASSWORD"));
            smtpSSLtransport.setStartTLS(true);
            smtpSSLtransport.connect(new Socket(smtpHost, port));
            smtpSSLtransport.sendMessage(smtpMessage,                                                     message.getAllRecipients());
            smtpSSLtransport.close();Can anyone correct this piece of code for me or point me in the right direction of what classes and methods I should be using?
    Many thanks in advance,
    Gordon

    I always wonder what misleads people to do things this way.
    Was there some example you saw that suggested that instantiating
    an SMTPSSLTransport was the correct approach? I hope not.
    See the smtpsend.java demo program for how to use SMTP
    authentication. If you need to use SSL, see the SSLNOTES.txt
    file for hints on using the "smtps" protocol. smtpsend.java also
    illustrates use of SSL, but you'll need to fix a bug in it to use the
    correct property names ("mail.smtps.auth", etc.).

  • How can we disable " XDB Requires a username and password"?

    Hello,
    I've just performed an Apex 4 installation on top of a DB 11.2.0.2.
    All is fine.
    No problem fine with FF, IE and Safari, but with Chrome I always have a pop up saying " The server XXXX: port at XDB requires a username and password".
    How can I disable that, or fix it definitively?
    Thanks
    Fred

    Sure.
    On my system Anonymous and XDB account were already unlocked and both used the same password.
    I simply executed the PL/SQL block that you can find here: http://www.apexexplorer.com/wp-content/uploads/2010/11/XDB-Password-Issue.pdf
    I bounced the listener.
    Hope that help
    Regards,
    Fred

  • Hp printer requires a username and password

    My HP Deskjet F4583 wireless printer worked wonders with my Windows XP.
    Now we've all upgraded to Windows 7 (very grumpy - everything worked just fine on XP)
    Tried printing through wireless office network (that "I" set up), and suddenly get this:
       "The server 10.0.0.3:80 requires a username and password.
        THe server says: HP Printer Networking@."
             followed by the appropriate fields.
    So now what?
    Since when was a username/ password option available - believe me I would have tried to omit it when creating the network - we don't have time to "play" with our gadgets; we just expect them to work with minimum fuss.
    Please help...
    This question was solved.
    View Solution.

    dave-k2 wrote:
    The exact network was shown in my question - it is an 802.11 WiFi network configured for WPA2 authentication.
    It is not an open network with no encryption or authentication.
    It is not a walled garden network with no 802.11 encryption but using a web browser for authentication.
    It is not a WPA2-PSK network with a shared key for 802.11 encryption.
    It is a WPA2 network with 802.11 encryption and EAP authentication to a RADIUS server.  It needs the printer supplicant to supply a username and a password.  I own neither the AP nor the RADIUS server for this network, they are owned by the college my child attends.
    There you go.  Need to ask your IT department how to connect because the printer will never connect with a browser authentication.    Also not supported on a Radius server. 
    Say thanks by clicking the Kudos Thumbs Up to the right in the post.
    If my post resolved your problem, please mark it as an Accepted Solution ...
    I worked for HP but now I'm retired!

  • You must supply a valid username and password to log onto the system.

    hi,
    i installed hyperion performance suite8.3 on linux by root account,during installation, i select "native" authentication, after installation, when i login the web interface by root account, it tell me:
    You must supply a valid username and password to log onto the system.
    who can help me?
    thanks

    Do you have any projects listed in Shared Services ?
    ... you are also using
    Did you put in the right url when you did the HFM config ?
    check the httpd.conf file for server name and listening port number ....
    what port are you using to login to workspace ?

  • IPhone won't let me log onto any site which requires a username and password

    Hi there,
    My iphone 4 (ios5) has stopped letting me log onto any website which requires a username and password. They have all worked in the past but have stopped working. My iPad is fine.
    It happens if i am connected to wifi or 3g.
    Has anyone else suffered this?
    I have restarted the phone and done a backup and restore.
    Any advice would help.
    Thanks

    Sorted it.  In settings - safari - privacy was set not to accept any cookies.  I have changed that to accept from visited.  Now working ok again.

  • Connecting printer to a secure wireless network which requires both username and password

    I have the hp photosmart 6510. I have it in my college dorm, which has a secure network with requires both a user name and password. I need help setting it up as I can't seem to get the printer to enter a username and password. I know the printer works and I know that my computer can print wirelessly with the printer. My college game me this setup configuration.
    Configuration Item Preferred Value Optional Value (less preferred)
    Network Name of SSID umd-secure  
    802.1x Operating Mode
    (note: 802.11b is no longer supported) Infrastructure or Network (not ad hoc)  
    Security Mode Enterprise (not Personal)  
    Network Authentication WPA2 WPA-less prefered
     Data Encryption CCMP or AES (TKIP-less prefered)
    Roaming Identity or Outer Identity anonymous  
    Authentication Type or Outer Authentication TTLS (PEAP-Less prefered)
    Authentication Protocol or Inner Authentication PAP (MS-CHAPv2-less prefered)
    Validate Server Certificate or Verify Server Name Yes  
    Certificate Issuer or Trusted Root CA Thawte Premium Server CA  (Any Trusted CA -less prefered)
    Server Name or Certificate Name wireless.umd.edu  
    Server Name must match Yes  

    Hi @hatyai ,
    Thank you for visiting our English HP Support Forum. We are only able to reply to posts written in English. To insure a quick response it would be advisable to post your question in English. The following links are here to assist you if you prefer to post in the following Language Forum.
    English: http://h30434.www3.hp.com
    Spanish: http://h30467.www3.hp.com
    French: http://h30478.www3.hp.com
    Portuguese: http://h30487.www3.hp.com
    German: http://h30492.www3.hp.com
    Korean: http://h30491.www3.hp.com/t5/community/communitypage
    Simplified Chinese: http://h30471.www3.hp.com/t5/community/communitypage
    Thank you for your understanding
    I work for HP. However I speak only for myself, not for HP nor anyone else

  • Users prompted for username and password after sharing removed from servers

    Hello Community
        On Sharepoint 2010 Server using the UI in a 2 server farm with an intranet running on it and everything functions as it should.  However it was noticed that from a users computer when in "Windows Explorer" if "Network"
    is clicked the 2 servers are visible.
        The problem is that when the server are clicked on in Windows Explorer the files and folders on the hard drive of the servers are visible too.
        Subsequently I logged onto the server and when into "Properties' - "Sharing" and
    unchecked the checkbox to "Share this folder".
        That solved the problem of the users being able to see and access the files
    and folders on servers hard drives but now when the users log onto the intranet
    they are prompted for a user name and password and even when they provide the user
    name and password and the page is returned the prompt appears on the screen again(then they cancel out).
        What can be done about the user being prompted for username and password without sharing the drives on the servers ?
        Thank you
        Shabeaut

    What exactly was shared out from the SharePoint server's file system? There are certain things that are shared by default.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Remote DVR Hates Me - Continues To Reject Valid Username And Password

    Hi all,
    I mistakenly posted this message in the programming forum by mistake, so I'm moving it here now (sorry about that):
    For the past few days, I've been unable to login to the Verizon remote DVR from both my iPhone and the web. It had been working fine for months, then all of a sudden, when I try to login, I get the dreaded 'login failed. please try again."
    My Username and Password still work fine for Verizon Central, but for some reason the remote DVR login page won't recognize them. I tried re-registering my username and password, but that didn't work. I don't have any periods (or other weird characters) in my username. And as I mentioned, it had been working fine for months and months. Very frustrating.
    I called tech support. They couldn't help (seemed baffled and ill equipped to solve this type of problem).  The rep told me that Verizon was having some trouble with remote DVR (yet he had NO information about what the problem was or if there was a fix in the works). Is this true, Verizon? Is there an internal issue? He said he was going to connect me to someone who could tell me more. I said great. Then he connects me and I get a recording that says, "you've reached a non-working number in the Verizon system ..." NICE! 
    Is anyone else out here having trouble logging in to their remote DVR?
    One thing I noticed, the login page looks different. There used to be  2 radio buttons: one for ".com" and one for ".net." I don't see those any more. I wonder if that's part of the problem.
    I appreciate any help. Thanks everyone. And again, sorry for the double post.

    Hi Guys,
    Thanks for taking the time to reply.
    TROYH72: Yes, I'm painfully aware that the "http://m.verizon.com/tv" url is for mobile devices. It used to work fine on my iphone, but it no longer does. It constantly rejects my username and password (which are both valid). FYI, that same url used to work from my computer as well. 
    PJL: Thanks for your suggestion. I tried deleting the cookies and clearing the browser cache. No luck. I really think this is a problem on Verizon's end for a couple of reasons:
    1. The login page looks different to me now. As I mentioned, there used to be radio buttons for .com and .net. Those are gone.
    2. I have the same problem logging on from my computer as I do from the iphone. Seems odd.
    3. I can log in to "http://www36.verizon.com/fiostv/web/," and some other Verizon urls, but I can't access my DVR once I'm logged in. The only way I can access my DVR remotely is to log in through "verizon.com"  and do it the roundabout way. But as I mentioned in a previous post, that's really cumbersome from a mobile device.
    4. Maybe most importantly, the remote DVR used to work perfectly! And now it doesn't work at all on my iphone ("Login failed. Please try again.") And it's wonky from the web. And I haven't changed anything on my end.
    Maybe it's a Mac thing. I'm running Macs as well as an iphone. I know that sometimes, Verizon and Macs don't play nicely together. I'm at a loss. And it doesn't look my Ticket is making any headway.

  • I keep getting the message " The server 192.168.1.1:80 requires a username and password. The server says: RE1000"?

    Why am I getting this message and how can I fix it? I can't access any websites. What username and password an I supposed to put? I'm dumb with this stuff so please provide a simple explanation? Thanks.

    Do you mean the password of the wifi network i'm connected to?

  • ITunes radio now requires a username and password to listen to radio!

    I recently noticed that when I try to listen to radio via iTunes it asks me for a "Members Only on pri.kts.-af.net" username and password. I have never had this issue before. Anyone know what happened or know where I can get a username and password?

    My current theory is that there must have been some problem with internet options. Unable to find anything to change, I have just uninstalled internet explorer 9.
    Seems okay so far....
    iTunes wifi sync seems less buggy too.
    Time will tell. Will update if this has not solved the problem.

Maybe you are looking for

  • IPhone battery is weird and phone won't turn on.

    Hello, I'm having some problems with my new iphone (4s) and I need some assissstance. I recently received a new iphone via insurance (My old iphone broke) and it wont turn back on. I first noticed a problem started when I plugged it in to charge the

  • OWSM Gateway intercept by URL

    Hi everybody. As I'm diving deeper into OWSM (10.1.3) the question is raised: is it possible to install OWSM Gateway and configure it in the way that this gateway will listen not only on gateway URL (generated from Register Service) but also on origi

  • Deploying Shared Varaiables in Executable

    I am running two executables. One is running on a tpc-2106 Touch Panel Monitor using the Labview PDA Module. The other is being deployed on a FP-2010 controller. They are communicating over ethernet using network published shared variables. The FP-20

  • Webservice as Data source in SSIS

    Hi  I have a Scenario where Tibco webservice [ Which contains details of Contacts/Quotes etc., ] has to be consumed using SSIS  kindly help me how to consume a webservice using SSIS and how the output of webservice can be stored ?? Finally i need to

  • User Table Keys

    Dear All, I observed a button "Keys" in the "User Defined Fields-Management" screen. What is the purpose of the button and how can we utilise the keys? Regards Bharath S