Configure fms like p2p server ?

Configure fms like p2p server ?

Iccsi,
Yes. Hostname under 'Testing Server' is the testing server's hostname - in your case, since you're using CF, it has to be the path at which CF runs at. It will be localhost:8888 or something similar - depending on what port you configured for the webroot while installing CF. You could check it in CF Dashboard. Or, you could start CF server, open your browser, enter localhost. If the default CF webpage loads, it is just localhost. If not, add the port number.
The remote server is your actual webserver. It may be http://www.somesite.com or if you're running it in a separate folder within your main site, it will be http://www.somesite.com/test - depends on where you want to upload the working files remotely.
The full directory under local configuration is the place where your files reside on your local system. Again, if you're using CF, you might as well use CF webroot to create/ store files - this way, you don't have to make duplicate copies of the files in 2 places since you're configuring the same folder as your Testing Server too.
-ST

Similar Messages

  • WIndows 7 64-bit system printing to a Windows 2000 server configured as a print server

    Is there any way to configure a new Windows 7 64-bit computer to use a Windows 2000 server configured as a print server ?
    The printer that I would like to connect to is an HP 4240n LaserJet. I appears that there is only a 64-bit Universal Print Driver available. The server currently uses HP 32-bit PCL5e or PCL6 drivers for all other connected computers. Connection is through a Hewlett-Packard Network Port, using DLC/LLC transport for the embedded 4240n print server.  
    Installing  the HP 64-bit UPD to the WIndows 7 64-bit system, and then attempting to redirect the local port to the Win2k network print server has not worked.
    Thanks for any advice.

    Hi:
    See if this works...
    Run msconfig.
    In the System Configuration screen, Boot tab, Advanced Options, if there is a check mark in the box next to Maximum memory. Remove that checkmark and save your changes.
    Reboot and hopefully Windows recognises all the Ram ( minus the reserved ) after restarting.
    Please give that a try, and post back and let us know if that frees up some system memory for you.
    Paul

  • How do I tell FMS to only serve a section of a file using server-side ActionScript?

    We have a bunch of mp3 files on our server and we'd like to serve only particular sections of particular files to users.  For example, hello.mp3 might be four minutes long, but when user 1 tries to play it, he should only be able to play the section from 0:30 to 1:00, whereas user 2 should be able to play the whole thing.
    I'm coming from a background using Wowza Media Server, where this is fairly easy to achieve: http://fmsguru.com/showtutorial.cfm?tutorialID=78.
    Wowza doesn't require any change to the player (it doesn't call any special methods), so I'm looking for the same here.
    I've been fiddling around with the main.asc file and the "Server-Side ActionScript" API to try and achieve something similar.  In particular I've found the Stream.play method, which seems relevant.  But I can't figure out how to attach a handler to a "play" event; all the examples I've seen only attach to Application.onConnect, which doesn't seem to include a connection to a particular file, which I need in order to determine the section that can be played.
    So I'd like to do something along the lines of this (this is completely made up and doesn't follow any of the APIs; it's just an illustration of what I'm trying to achieve):
    application.onConnect = function(client) {
       client.onPlay = function(stream) { // Client.onPlay doesn't exist; what should I do here?
           var section = getStreamSection(client, stream);
           stream.play(section.start, section.end);
    var getStreamSection = function(client, stream) {
       return { start: 30, end: 60 }; // Return value is based on the user's credentials and the file they're trying to stream

    You can find the documentation for Plug-ins here:
    http://help.adobe.com/en_US/flashmediaserver/plugin_apiref/index.html
    http://help.adobe.com/en_US/flashmediaserver/devguide/WS5b3ccc516d4fbf351e63e3d11a0d662434 -7ff6PluginAPI.html
    Basically you need to concentrate on E_PLAY event and two fields F_STREAM_LENGTH & F_STREAM_POSITION. I am pasting below some code which you need to paste in your sample Auth Plug-in which you can find in : <installdir>/samples/plug-ins. You would have paste below code in case E_PLAY section in MyFmsAuthorizeEvent::authorize() function and compile it. You would basically get AuthModule.dll which you need to place in modules/auth and restart FMS.
    // Set the Stream to be played back only for 10 seconds starting from 10 th second
                                  // Stream will play from 10th Second to 20th Second
                                     float fValue;
                                  char buf[1024];
                                  if (getFloatField(m_pAev, IFmsAuthEvent::F_STREAM_LENGTH, fValue))
                                            float fLength = fValue; // in seconds
                                            sprintf(buf,"Original Stream length value passed from player %f\n",fLength);
                    m_pFmsAuthServerContext->log(buf, IFmsServerContext::kInformation, false);
                                            fLength=10.0;
                                            sprintf(buf,"Modifying Stream length value passed from player %f\n",fLength);
                    m_pFmsAuthServerContext->log(buf, IFmsServerContext::kInformation, false);
                                            setFloatField(m_pAev,IFmsAuthEvent::F_STREAM_LENGTH,fLength);
                                  if (getFloatField(m_pAev, IFmsAuthEvent::F_STREAM_POSITION, fValue))
                                            float iPosition = fValue; // in seconds
                                            sprintf(buf,"Original Stream Position value passed from player %f\n",iPosition);
                    m_pFmsAuthServerContext->log(buf, IFmsServerContext::kInformation, false);
                                            iPosition=10.0;
                                            sprintf(buf,"Modifying Stream length value passed from player %f\n",iPosition);
                    m_pFmsAuthServerContext->log(buf, IFmsServerContext::kInformation, false);
                                            setFloatField(m_pAev,IFmsAuthEvent::F_STREAM_POSITION,iPosition);

  • What is "best practice" to set up and configure a Mac Mini server with dual 1 TB drives, using RAID 1?

    I have been handed a new, out of the box, Mac Mini server.  Has two 1 TB drives in it.  Contractor suggested RAID 1 for the set up.  I have done some research
    and found out that in creating the software RAID, this takes away the recovery partition, so I have been reading up on how to create a recovery "disk" using a thumb drive.  this part of the operation I am comfortable with, but there are other issues/concerns that I have.
    Basically, what is the "best practice" to setup the Mini, configure the RAID and then start the server.  I am assuming the steps would be something like this:
    1) start up the Mini and run through the normal Maverick setup/config - keep it plain and vanilla
    2) grab a copy of the Server app and store it offline in a safe place
    3) perform the RAID configuration / reinstall of OS X Maverick using the recovery tools
    4) copy down and start the server app
    This might be considered a very simplified version of this article (http://support.apple.com/kb/HT4886 - Mac mini server (Late 2012 and Mid 2011): How to install OS X Server on a software RAID volume), with the biggest difference being I grab a copy of the Server App off of the mini before I reinstall, since I did not purchase it from the App store, but rather it came with the mini.
    Is there a best practice /  how-to tutorial somewhere that I can follow/learn from? Am I on the right track or headed for a train wreck?
    thanks in advance

    I think this article will answer your question. Hope this helps: http://wisebyte.blogspot.com/2014/01/best-configuration-for-mac-mini-server.html

  • Can't get mobile device to auto configure the active sync server

    Hello
    I am trying to get my costumer mobile devices to auto configure the active sync server name so they don't have to type it in. I believe I have everything in place Certificates are fine. I populated the external url on the active sync
    object in Exchange.
    DNS is set up correct. I ran the Exchange Connectivity Analyzer and it runs perfectly. The only test step if fails on is the first attempt to contact the autodiscover service using just the domain name and that is because we have a
    record in DNS so our domain name points to our public web server but all the other tests run fine. At the end, it even displays the xml file contents and shows me the external url of the active sync object.
    I get a successful run but it first shows SSL certifiate of our public Web site and then hangs on the server config and then prompts me to enter in the server name and domain. My external url in Exchange looks like this:
    https://remote.domain.com/Microsoft-Server-ActiveSync
    Any Help??
    Eddie

    Thank you for replaying but there is already internal A record that points to Exchange server. Firewall, DNS external and internal are setup like this:
    Firewall:
    Port 443 and 25 points to Internal IP of our Exchange 2013 (only mail server in company).
    Port 80 not open.
    External DNS records:
    autodiscover.mydomain.com à points to our WAN IP
    remote.mydomain.com à points to our WAN IP
    mydomain.com à points to external online webhosting
    Internal DNS records:
    autodiscover.mydomain.com à points to ours Exchange 2013 internal IP
    Remote.mydomain.com à points to ours Exchange 2013 internal IP
    mydomain.com à points to external online webhosting
    Test form "ExchangeConnectivityTest.com" is Successful but with warnings.
    Warnings are about https://mydomain.com/AutoDiscover/AutoDiscover.XML
    because
    https://mydomain.com is
    pointing to website, which is hosted externally.
    Eddie

  • Configure FMS behind a proxy

    Hello,
    I've a problem to configure FMS Streaming 4.5 on an Ubuntu 10.04 Server.
    I've got a website and a FMS on the same server who is behind a proxy (not on the same server)
    Server IP : 192.168.0.2
    Proxy IP : 192.168.0.254
    FMS is configure to listen to port 1935 in fms.ini
    # This section contains configurable parameters in Adaptor.xml #
    # IP address and port(s) Flash Media Server should listen on
    # For example:
    #    ADAPTOR.HOSTPORT = :1935,80
    ADAPTOR.HOSTPORT = :1935
    Apache  listens on port 80
    Apache wasn't installed with FMS, it's pre-installed
    This is my Virtual conf
    NameVirtualHost 192.168.0.2:80
    <VirtualHost 192.168.0.2:80>
    ServerName mydomain.com
    DocumentRoot /var/www/html/
    </VirtualHost>
    Ports 80 1111 and 1935 are opened on my server
    # RTMP Streaming
    iptables -t filter -A INPUT -p tcp --dport 1935 -j ACCEPT
    iptables -t filter -A INPUT -p udp --dport 1935 -j ACCEPT
    iptables -t filter -A INPUT -p tcp --dport 1111 -j ACCEPT
    iptables -t filter -A OUTPUT -p tcp --dport 1935 -j ACCEPT
    iptables -t filter -A OUTPUT -p udp --dport 1935 -j ACCEPT
    iptables -t filter -A OUTPUT -p tcp --dport 1111 -j ACCEPT
    On the proxy server (use Apache), ports 80, 11, 1935 are opened in the firewall (output, input and forward) and the proxy makes a NAT translation to my website.
    But I can't see the videos on my website
    If i test on a machine behind the proxy, the streaming is OK, i see my videos.
    I don't know how to solve this problem. I've got only one IP on my server.
    What is the best solution,
    Thanks for your help

    Here is the flash tutorial:http://kb2.adobe.com/cps/408/kb408205.html
    Without a proxy, it connect locally using the 1935 port.
    I'm also able to connect from the external network to my local network using the same port.  The firewall is configured to accept incoming rtmp connection
    But as soon i use a proxy, the connection fail.

  • Configuration note  of SQL SERVER 2005

    Hello,
    Is there a SAP configuration note for SQL 2005 like note 327494 for SQL 2000 ?
    Or does someone know if there should be special configuration for SQL SERVER 2005 ?
    Pelase advice,
    Dimitry

    Hello
    Please review 879941 Configuration Parameters for SQL Server 2005
    thanks
    N.P.C

  • Configuring Sender HTTPS Connection -- Server/Client Authentification

    Hello together,
    I need to configure an HTTPS Sender Connection with client and server authentication. I have already check the documentation however I am still not sure about the particular steps. My questions are as follows:
    - Do I configure the HTTPS connection on the ABAP or JAVA stack?
    - Is it necessary to setup an HTTP sender communication channel
    - How does the URL look like (compared to HTTP connection)?
    I have provided XI certificates to the client and the client has provided the certificates to me already. So I guess I have to import them somehow on XI.
    Any help is appreciated!
    Thank you very much.

    Hi
    Please follow below steps for HTTPS configuration as sender
    You need to use either SOAP adapter or XI Adapter for HTTPS connectivity.
    Here configure the Security Check for Inbound Messages.
    Refer below links
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/5ad93f130f9215e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/4f/0a1640a991c742e10000000a1550b0/frameset.htm
    XI3.0: Soap Sender with HTTPS
    SAP Security Guide XI, HTTP and SSL
    http://help.sap.com/saphelp_nw04/helpdata/en/14/ef2940cbf2195de10000000a1550b0/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/97/818a4286031253e10000000a155106/frameset.htm
    No configuration is required in the adapter-specific sender channel configuration (inbound) of the Integration Directory.
    The authentication/authorization is performed by the J2EE Engine and therefore needs to be configured with the Visual Administrator. This configuration is described in the J2EE Engine Administration Manual and is outlined in the following section.
    When a message is to be sent to the Adapter Engine (and ultimately to the Integration Server), the J2EE Engine serves as the SSL Server and presents its server certificate to the client as part of the SSL handshake procedure.
    Client-Side Configuration (Required)
    The public certificate of the trusted authority (CA) that signed the public certificate of the SSL server needs to be imported to the list of trusted certificates of the SSL client. This allows the SSL client to accept the certificate of the server in the SSL handshake.
    Server-Side Configuration (Optional)
    If basic authentication is used, no additional configuration is required on server side.
    If client certificate authentication is requested or required by selection of the corresponding option in the SSL service and configuration of the ClientCertLoginModule in the SecurityProvider service (using the J2EE Administration Tool), additional configuration steps are required.
    If the server certificate check on the client side is successful, the client sends its public certificate to the server as part of the SSL handshake (when requested). The server needs to map the certificate to a user for authentication and will then check the authorization based on the security roles of the user.
    Perform the following steps to allow the J2EE engine to map the client certificate to a user:
           1.      Import the CA cert of the client certificate to the list of trusted certificates (TrustedCAs keystore view in the keystore service) and import the client cert to an arbitrary keystore view.
           2.      Map the client certificate to an existing user with role SAP_XI_APPL_SERV_USER by using the Visual Administrator, SecurityProvider service, UserManagement tab page.
    Refer below link
    Here u go
    http://help.sap.com/saphelp_nw04/helpdata/en/65/6a563cef658a06e10000000a11405a/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/f1/2de3be0382df45a398d3f9fb86a36a/frameset.htm

  • Financial Reporting - PDF has not been configured for this web server.

    When I try a Print Preview of my report, I received this error "PDF has not been configured for this web server".
    As far as I know, this error is confusing because when I look on my log files I found this:
    --- FRLogging.log ---
    [APP: FINANCIALREPORTING#11.1.2.0] The system cannot access the Print Server at this time. Try again later or confirm the print server name.
    [APP: FINANCIALREPORTING#11.1.2.0] Cannot connect to server on xxxHFRCE04.cf.gouv.qc.ca
    [APP: FINANCIALREPORTING#11.1.2.0] Attempt to get an undefined configuration property
    --- FRPrintLogging.log ---
    HyperionReportException: Could not connect to the server.Please make sure that the server is running as specified in the logon dialog (including port number if not default).
    I read a lot of document but it seem to be au communication issues!!!
    Can someone help me with that.

    I believe the supported version for ghost script is 7.0.6; I had the same problem and after installing the lower version it worked like a charm.
    If you cant find the older version let me know, I'll email it to you or place it in my website.

  • How to configure a forms 6i server

    Hi
    I am trying to configure an oracle 6i server for a college project and need some help. I have the documentation but its very confusing and not beginner orientated!
    I am using windows XP. The forms server 6i,Apache and Jinitiator are installed in the following folders all on the same machine:
    C:\Program Files\Apache Software Foundation\Apache2.2
    C:\orant\FORMS60\server
    C:\orant\jinit
    How do i configure the Forms Server? I am connecting to a database over a network and the forms i am using are in the folder:
    C:\orant\FORMS60\server
    What environment variables should i change and to what?
    What modifications should i make to the configuration files generated by th oracle installer i.e formsweb.cfg,base.htm and basejini.htm
    As you can see i really need your help. Any advice would be greatly appreciated.
    Thanks,
    Jackie
    Message was edited by:
    [email protected]

    Ive looked over the base.htm file and formsweb.cfg file and they appear to be fine but i may be missing something,.maybe you can see something i cant in these files:
    On opening the base.htm file nothing happens even when i directly
    specify the mainmenu form
    the base file contains:
    <HTML>
    <!-- FILE: base.htm (Oracle Developer Forms) -->
    <!-- This is the default base HTML file for running a form on the -->
    <!-- web using APPLET-style tags to include the Forms applet. -->
    <!-- This file will be REPLACED if you reinstall "Forms Web CGI and -->
    <!-- cartridge", so you are advised to make your own version if you -->
    <!-- want to make any modifications. You should then set the -->
    <!-- baseHTML parameter in the Forms web CGI configuration file -->
    <!-- (formsweb.cfg) to point to your new file instead of this one. -->
    <!-- IMPORTANT NOTE: default values for all the variables which -->
    <!-- appear below (delimited by the percent character) are defined -->
    <!-- in the formsweb.cfg file. It is preferable to make changes in -->
    <!-- that file where possible, and leave this one untouched. -->
    <HEAD><TITLE>%pageTitle%</TITLE></HEAD>
    <BODY %HTMLbodyAttrs%>
    %HTMLbeforeForm%
    <OBJECT classid="CAFECAFE-0013-0001-0006-ABCDEFABCDEF"
    WIDTH=600
    HEIGHT=480
    codebase="http://acme.com/jinit1316.exe#Version=1.3.1.6">
    <PARAM NAME="CODE" VALUE="oracle.forms.engine.Main" >
    <PARAM NAME="CODEBASE" VALUE="/forms60code/" >
    <PARAM NAME="ARCHIVE" VALUE="/forms60code/f60all.jar" >
    <PARAM NAME="type"
    VALUE="application/x-jinit-applet;version=1.3.1.6">
    <PARAM NAME="serverPort" VALUE="9000">
    <PARAM NAME="serverArgs" VALUE="module=order.fmx">
    <PARAM NAME="serverApp" VALUE="default">
    </OBJECT>
    %HTMLafterForm%
    </BODY>
    </HTML>
    The formsweb.cfg file contains:
    ;; Forms Web CGI Configuration File
    ; This file defines parameter values used by the Forms Web CGI
    ; PARAMETER VALUES USED BY DEFAULT
    ; SYSTEM PARAMETERS
    ; These have fixed names and give information required by the Forms
    ; Web CGI in order to function. They cannot be specified in the URL
    query
    ; string. But they can be overriden in a named configuration (see
    below).
    baseHTML=c:\orant\FORMS60\server\base.htm
    baseHTMLJInitiator=c:\orant\FORMS60\server\basejini.htm
    HTMLdelimiter=%
    MetricsServerPort=9020
    ;MetricsServerErrorURL
    ; The next parameter specifies how to execute the Forms applet under
    ; Microsoft Internet Explorer 5.0. Put IE50=native if you want the
    ; Forms applet to run in the browser's native JVM.
    IE50=JInitator
    ;IE50=native
    ; USER PARAMETERS
    ; These match variables (e.g. %form%) in the baseHTML file. Their
    values
    ; may be overridden by specifying them in the URL query string
    ; (e.g.
    "http://myhost.mydomain.com/ifcgi60.exe?form=myform&width=700")
    ; or by overriding them in a specific, named configuration (see below)
    ; 1) Runform arguments:
    form=C:\orant\FORMS60\server\MAINMENU.fmx
    userid=student19/s19@orcl
    ;otherparams
    ; 2) HTML page title, attributes for the BODY tag, and HTML to add
    before and
    ; after the form:
    pageTitle=Oracle Forms Server
    ;HTMLbodyAttrs
    ;HTMLbeforeForm
    ;HTMLafterForm
    ; 3) Values for the Forms applet parameters:
    width=6500
    height=5000
    separateFrame=false
    splashScreen=yes
    ; select default background by not specifying a value
    ;background
    lookAndFeel=Oracle
    colorScheme=teal
    serverApp=default
    serverPort=9000
    serverHost=localhost
    connectMode=HTTP
    archive=f60web.jar
    archive_jini=f60all_jinit.jar
    archive_ie=f60all.cab
    ; 4) Parameters for JInitiator
    ; Page displayed to Netscape users to allow them to download
    JInitiator.
    ; If you create your own version, set this parameter to point to it.
    jinit_download_page=/jinitiator/us/jinit_download.htm
    ; Parameters related to the version of JInitiator.
    jinit_classid=clsid:CAFECAFE-0013-0001-0006-ABCDEFABCDEF
    jinit_exename=jinit.exe#Version=1,3,1,6
    jinit_mimetype=application/x-jinit-applet;version=1.3.1.6
    ; SPECIFIC CONFIGURATIONS
    ; You may define your own specific, named configurations (sets of
    parameters)
    ; by adding special sections as illustrated in the following examples.
    ; Note that you need only specify the parameters you want to change.
    The
    ; default values (defined above) will be used for all other parameters.
    ; Use of a specific configuration can be requested by including the
    text
    ; "config=<your_config_name>" in the query string of the URL used to
    run
    ; a form. For example, to use the sepwin configuration, your could
    issue
    ; a URL like "http://myhost.mydomain.com/ifcgi60.exe?config=sepwin".
    ; Example 1: configuration to run forms in a separate browser window
    with
    ; "generic" look and feel (include "config=sepwin" in the
    URL)
    ;[sepwin]
    ;separateFrame=True
    ;lookandfeel=Generic
    ; Example 2: configuration affecting users of MicroSoft Internet
    Explorer 5.0.
    ; Forms applet will run under the browser's native JVM rather
    than
    ; using Oracle JInitiator.
    ;[ie50native]
    ;IE50=JInitiator
    ; Example 3: configuration forcing use of the base.htm base HTML file in
    all
    ; cases (means applet-style tags will always be generated and
    ; JInitiator will never be used).
    ;[applet]
    ;baseHTMLJInitiator=%FORMS60%\server\basejini.htm

  • Configure Joomla on Leopard Server

    I just recently found out about Joomla and I really like what I see and what I can do for my website. I know my way around Leopard Server very well, except the command line (FYI). I want to configure Joomla 1.5.8 on Leopard Server 10.5.5. I currently have AFP, DNS, MySQL, Open Directory, and Web configured up and running. My site and the Wiki server is functional and works fine.
    I already downloaded Joomla and placed it in Macintosh HD/Shared Items/Sites/joomla_1
    It would be great if someone could guide me to configure this with my server. I have read some articles and it says I need to configure this with MySQL and PHP, and I don't have the slightest clue on how to do this. I would also like my server to be able to host multiple Joomla sites if possible (multiple MySQL databases). Sorry for being such a newb at this, but I am learning. Any help would be more than appreciated.

    Just follow the joomla install guide that they provide, and follow the step by step web installer and point it at your mysql installation. Joomla 1.5 rund beautifully on Mac OS X Server. My joomla 1.5 site www dot 928 dot org dot uk is on an Xserve on 10.5.6

  • Vhost configuration for Adobe Media Server running under linux.

    Please help me with Vhost configuration for Adobe Media Server running under linux.
    I was running a media sharing website for which I wanted to use Adobe Media Server.
    To use, AMS, I disabled the already installed Apache server and installed AMS along with the built in Apache server. I could successfully install AMS and could login to AMS Admin Console through my IP number.
    My existing website, www.mydomain.com is having its contents located at:
    /home/mydomain/public_html
    (Directory created under the old version of Apache not bundled with AMS)
    Users will be uploading their videos, which will get transcoded and will be delivered to the website visitors in the existing scenario.
    To use this website with AMS, this is what I did:
    I created a folder for my domain, www.mydomain.com as below
    /opt/adobe/ams/conf/_defaultRoot_/www.mydomain.com
    Copied Application.xml and Vhost.xml from /opt/adobe/ams/conf/_defaultRoot_/   and pasted them in /opt/adobe/ams/conf/_defaultRoot_/www.mydomain.com
    In the Application.xml file there are 2 entries:
    <Alias name="mydomain.com"></Alias>
    <AppsDir>${/home/mydomain/public_html}</AppsDir>
    Please help me with further steps to be completed:
    Do I need to create a separate VirtualHost entry in the Apache installed with AMS?
    If yes, can I specify already existing document root for my website (/home/mydomain/public_html) or do I need to create a separate folder under webroot/Apache ?
    If yes to point 2 above, then do I need to copy all the existing contents from /home/mydomain/public_html to the newly created folder ?
    I hope, I can serve all my static contents like html pages and php and media like video/audio. In that case do I need create alias to my Media/Alias folder or AMS will automatically start streaming when a video/audio is requested ?
    What other steps do i need to complete?
    Any help in this regard would be highly appreciated.
    Thanks and Regards

    Dear sir or madam,
    Here is Letswin Technology, which specializes in global servers, web hosting, VPS, VPNj. If anything I can do for you, pls contact us!
    Have a nice day!

  • ILO configuration on MCS 7845H2 server

    Hi,
    I am planning to upgrade Callmanager on MCS 7845H2 remotely. This is in a production environment. I am not able to find the ILO IP address configured on this server.
    Is there a way to identify the ILO IP remotely or by logging into the console?
    If not, please let me know if there is any document which can guide to re-configure the ILO for this server. Is there any configuration required on MCS server like assignemt of IP address etc?
    Regards,
    Karthik

    That is easy, 
    -physically check waht switch port the iLO ethernet if. is connected to.
    -check the cam-table on the switch to find whcih MAC the iLO NIC it has
    -check the arp table on your L3 device for that MAC address.
     get your password and user ID and log in.
    If you find no IP address, than it is most likely not configured,.
    Thanks

  • Hi help needed to configure connector with web server 7

    Hi
    I m currently trying to configure web application with sun web server7.0 on solaris machine in 64 bit mode.
    I compiled source with -m64 which generated 64 bit for me. And m using the generated library to configure by editin magnus.config.....
    Same things are working in 32 bit..
    I given below error generated please if u guyz know the issue rep me bak... thnx in advance
    Sun Java System Web Server 7.0 B12/04/2006 11:14
    failure: CORE2253: Error running Init function load-modules: dlopen of /home/cfqauser/jrun/lib/wsconfig/1/libjrun_nsapi.so failed (ld.so.1: webservd: fatal: libgcc_s.so.1: open failed: No such file or directory)
    failure: server initialization failed
    Error running "/opt/webserver7/https-cfauto05/bin/startserv": exit code was 1

    looks like , the server is unable to find libgcc (or any of its dependent libraries in the path ) and hence unable to load.
    now, you can address this in multiple ways
    - export LD_LIBRARY_PATH to your 64-bit location of libgcc libraries
    1.
    for eg on solaris 10, you can do something like
    export LD_LIBRARY_PATH=/usr/sfw/lib/sparcv9 (or amd64)
    you will need to do this every time to start the server.
    or
    2. use Studio 11 to compile this NSAPI plugin.
    this way, you don't have to worry about manually exporting LD_LIBRARY_PATH while starting the server.
    pl. note that Sun Studio 11 is free and you can get it from
    http://developers.sun.com/sunstudio/index.jsp
    hope this helps

  • Websites were deleted from configuration after Maverick OSX Server Update

    Websites were deleted from configuration after Maverick OSX Server Update.  My subversion access was also overwritten and no longer works.

    if that was a bug report, then Apple might or might not see it here.  There's a Provide Server Feedback in the menus of Server.app, if you'd like to let the Server.app folks know about the upgrade problems I've encountered.
    If you're looking for help resetting the web sites (I'm not clear if you're reporting a bug or looking for help with this), then check Server.app for where the files should be (the default location is under /Library/Server/Web/Data directory) and see where your current sites are stored in the file system, establish the Site via Server.app (usually with a directory under the  /Library/Server/Web/Data path) and move the contents over to the new location.
    As for the Outlook comment in your footer, Microsoft Outlook also generally needs to have the FQDN requirements removed in the SMTP HELO processing.  Outlook doesn't send that, and the default Postfix configuration will reject those connections as spam.  Here's a discussion of how to do this.  (I don't see a path to the HELO processing via sudo serveradmin settings mail:postfix commands.)

Maybe you are looking for

  • Vendor Address not getting printed properly in cheque printing.

    Hi While printing the vendor address for the cheque printing, for certain vendors the street no. is not getting printed & for certain vendors PO Box is not getting printed. In the program we are fetching vendor address from REGUH table & then passing

  • How to install and boot both Leopard and Snow leopard in the same Mac?

    I've installed 10.6 (SL) on my MacBook. After I installed SL, I found that a couple of softwares that were working in 10.5 don't work anymore and the providers don't have any update nor any support to the date. Then I decided to make a disk partition

  • How to refresh a created database link?

    I have created a database link with the command: CREATE DATABASE LINK mydb.net CONN TO STRMADM IDENTIFIED BY strmadm_pw USING 'mydb.net' and then i changed strmadm_pw at the remote database, which may cause the database link inactive. but how to acti

  • Wiki Server 2 Template choices.

    I may have over looked this simple option in the documentation but... I want to remove all templates except for the custom template we have created as a choice on the wiki settings. Does anyone know which .plist I need to edit to hide the other templ

  • Http.sender.customizer class

    This may be a stupid question as I am new to this but if I create a new class for the http adapter, where does it go? When the adapter starts, it keeps saying the it can't find the class. Any help would be great Trevor