How to launch EAS in the server

Dear Experts,
We generally use the URL to access EAS in our machines without logging into the server..
Now I have a huge data to load... I thought its better to load the data file directly from server but I am unable to find from where i can launch the console..
I am checking in the server where Essbase is installed in the path -- E:\Oracle\Middleware\EPMSystem11R1\products\Essbase
Could you please help me with this.
Thanks,
~RN

The EAS console may not have been installed on the server, if it is has it would usually be started by <drive>:\Oracle\Middleware\EPMSystem11R1\products\Essbase\eas\console\bin\admincon.bat
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • How to change language of the server monitor ?

    hi all,
    How to change language of the server monitor ? i got it in japanese and would like to turn it into English.
    Thx for your help,

    We use japanese strings only when your server locale has "jp": FindNoCase("Japan", GetLocale()) NEQ 0. So you may not be able to individually change  server monitor's flash client, but there are two ways to change it back to english on server level
    1) Check your server locale and change it to anything but japanese.
    2) Rename smresource_en.xml to smresource_jp.xml in CFIDE\administrator\monitor (take a back up).
    Thanks,
    Chandan Kumar

  • How to leave emails on the server in os7?

    Where is the option to leave a copy of all emails on the server on Iphone os7 when using IMAP accounts?  It used to be under settings, advanced, but in os7 I can't find it anywhere? all my emails downloaded to my iphone are deleted from the server and I need it to stop.

    Follow these directions, but pay attention to comment 1 regarding drafts. Best instructions I've seen on how to set gmail up as IMAP.
    http://complexdiagrams.com/2009/01/19/imap-for-gmail-mailapp-iphone/

  • How to save files on the server?

    I want to save a log on the server, how can I do this using Oracle?
    In SQL Server I used the "bcp" command.
    Thanks.

    as forbrich suggested you can use the UTL_FILE built-in package. here is an example code to read and write to a file.
    CREATE OR REPLACE PROCEDURE Read_Write_File (pvInFile Varchar2,
                                                 pOutFile Varchar2) IS
    vInFile   utl_file.file_type;
    vOutFile  utl_file.file_type;
    vNewLine  VARCHAR2(4000);
    x         PLS_INTEGER;
    vFlag  BOOLEAN := TRUE;
    BEGIN
      -- assuming Your_Directory is $HOME/myTxtFiles in a Unix Platform
      -- to check if definition is existing Select Directory_Name, Directory_Path From All_Directories;
      vInFile := utl_file.fopen('Your_Directory',pInFile,'r');
      vOutFile := utl_file.fopen('Your_Directory',pOutFile, 'w');
      IF utl_file.is_open(vInFile) THEN
        LOOP
          BEGIN
            utl_file.get_line(vInFile, vNewLine);
            x := utl_file.fgetpos(vInFile);
            dbms_output.put_line(TO_CHAR(x));
            utl_file.put_line(vOutFile, vNewLine, FALSE);
            utl_file.fflush(vOutFile);
            IF vFlag = TRUE THEN
              utl_file.fseek(vInFile, NULL, -30);
              vFlag := FALSE;
            END IF;
          EXCEPTION
            WHEN NO_DATA_FOUND THEN
              EXIT;
          END;
        END LOOP;
        COMMIT;
      END IF;
      utl_file.fclose(vInFile);
      utl_file.fclose(vOutFile);
    EXCEPTION
      WHEN others THEN
        RAISE_APPLICATION_ERROR (-20099, 'Unknown UTL_FILE Error');
    END;
    /

  • How to stop caching on the server

    Hello,
    Can anyone please guide me as to how do we disable caching on the
    portal server since the changes i am making in the JSP pages are not
    reflected immediately. I have already cleared the browser cache but now i
    want to clear the cache on the portalserver. I have also cleared all the
    class files created when the jsp was compiled but still there is no change.
    If anyone has faced similar problems and can throw some light on it.
    akshay

    Akshay
    I faced the same problem as you did.I went thru what Adrian advisesd and it works.Did
    you update teh correct XML file?.In my case,the weblogic.xml file is whawt holds
    this property and resides in
    D:\wlportal4.0\applications\portal\dp2\WEB-INF\weblogic.xml
    where 'dp2' is the sample portal iam working on.
    I hope this helps.
    - Logesh
    "akshay" <[email protected]> wrote:
    Hi Adrian,
    Thanks again for the quick reply but even this setting
    did not
    work.
    This has created a major development problem and the only way out i found
    was either to restart the server or change the name of the file which
    i am
    accessing. Please suggest some other way to achieve this no caching state
    on
    the server i even cleared the browser cache.
    Thanks in advance
    akshay
    "Adrian Fletcher" <[email protected]> wrote in message
    news:[email protected]...
    Akshay,
    Ok, now I understand your problem. What you need to do is to changethe
    JSP
    operating parameters for this webapp. These parameters are found inthe
    weblogic.xml file associated with your webapp. The reference for thejsp
    descriptor element can be found here:
    http://edocs/wls/docs61/webapp/weblogic_xml.html#1012195
    I think the parameter you need to change is pageCheckSeconds. Ifyou set
    this to 0 then the page is checked every request.
    Hope this helps,
    Sincerely,
    Adrian.
    Adrian Fletcher.
    Senior Software Engineer,
    BEA Systems, Inc.
    Boulder, CO.
    email: [email protected]
    "akshay" <[email protected]> wrote in message
    news:[email protected]...
    Hi adrian,
    Thanks for your quick reply I am not aware about theclustered
    environment but here i have created a jsp page (named first.sjp)
    to
    check
    a
    connection pool i have created which i have placed it along with
    the
    index.jsp page of stockportal and using the following URl i havemade a
    request http://<myportalserver>:7501/stockportal/first.jsp the first
    time
    when i request for this page it works fine -- the data flows perfectlybut
    after making any changes say for example if i change the table name
    from
    where the data is to be fetched
    it does not show me the new data it shows me the data from the previous
    table. whereas if i change the name of the jsp page and request itworks
    fine. I want to disable this caching
    at the server to make this thing work i cleared all the cache ofthe
    browser
    but still could not achieve no cache state.
    thanks in advance
    akshay
    "Adrian Fletcher" <[email protected]> wrote in message
    news:[email protected]...
    Akshay,
    The design of the caching in portal is such that all changes should
    be
    reflected immediately, even across a cluster. However there isone
    outstanding issue around a performance enhancement for the anonymoususer
    case, where this cache is not updated unless the associated .portal
    file
    is
    datasynced. So for changes to the default group either test with
    a
    logged
    in
    user of this group or do a datasync to clear the cache.
    If this does not solve your problem please let us know.
    Sincerely,
    Adrian.
    Adrian Fletcher.
    Senior Software Engineer,
    BEA Systems, Inc.
    Boulder, CO.
    email: [email protected]
    "akshay" <[email protected]> wrote in message
    news:[email protected]...
    Hello,
    Can anyone please guide me as to how do we disable caching
    on
    the
    portal server since the changes i am making in the JSP pages
    are not
    reflected immediately. I have already cleared the browser cachebut
    now
    i
    want to clear the cache on the portalserver. I have also cleared
    all
    the
    class files created when the jsp was compiled but still there
    is no
    change.
    If anyone has faced similar problems and can throw some light
    on it.
    akshay

  • How do I gracefully shutdown the server from a script?

    I have a shutdown class that stop the server.
    When I'm using 'stop the server' from the console (after configure a
    new shutdown class to config.xml) it work good.
    How do I do the same from a script (cmd, bat or sh - doesn't metter).

    http://edocs.bea.com/wls/docs81/ConsoleHelp/startstop.html#1212202
    "avishosh" <[email protected]> wrote in message
    news:[email protected]..
    I have a shutdown class that stop the server.
    When I'm using 'stop the server' from the console (after configure a
    new shutdown class to config.xml) it work good.
    How do I do the same from a script (cmd, bat or sh - doesn't metter).

  • Can anyone explain how to fix this? The server responded with "502" to operation CalDAVAccountRefreshQueueableOperation.

    I repeatedly get this error message for iCal whenever I am on line:
    The server responded with "502 to operation CalDAV Account refresh queaeable operation." How can this be fixed.

    Open up iCal Preferences and select the 'Accounts' tab.  What accounts do you have listed there?  Do you know what they all are?  Do you use them all?  If there are any that you know you don't use then remove them.  If you don't know what they are then unclick 'Enable this account' and see if it makes any difference, not just to the problem but to how you use iCal.  If you lose data then you need that account.  It might be worth noting the details of that account then removing it and recreating it.  You could also try changing the refresh frequency so that if you can't remove the problem totally then at least it won't bother you so often.

  • How to check databases in the server

    how can i check the databases that are available in the oracle using sql commands

    Madhu, you cannot get list of all databases using sql.
    Because when you use sql , you connect to only one database at that time.
    And using sql you can only get the name of the database to which you are connected.
    One solution is to look at the services on the control panel of the database server.
    it will list you all the instance available on the server.

  • How to share internet if the server connects to it via VPN?

    Hi, mac brothers! Need your help.
    I have a server with 2 ethernet cards (en0, en1). It connects to internet via VPN on en0. LAN clients connect to the server using en1. I can't share VPN internet connection to LAN %(. (tried to find the answer in the 10.4 server documentation, but there is nothing about it).
    I know how to share internet connection when there is no VPN - direct connection via DSL modem...
    Can you help me?
    PS; 0S X Server 10.4.11

    You need to use NAT and have the firewall running.
    And then you need to use the VPN connection (PPTP?) "interface" (when connected), probably ppp0 - not en0, in your NAT config. This can be achieved by dragging the config (small symbol in lower right corner in NAT config in Server Admin) to the desktop, edit it (look for en0 and change it to ppp0), save it, and then drag it back into the NAT config window and save.
    I think the VPN tunnel must be up before turning on NAT/firewall so if you reboot the server you might need to turn NAT/firewall off -> on to make it work again.
    If the WAN/ppp0 IP is not static (so you can enter it in your server DNS) you probably will have trouble with many of OS X services running in the server.
    Most OS X server installations using an Internet connection with a shifting public IP is better off by putting a NAT router which can do the in initial connection (by DHCP, PPTP, PPPoE, whatever), between it and the Internet.

  • How to get IPAddress of the Server ?

    Hello,
    How can we get the IPAddress of the server on which the servlet
    is running?
    request.getServerName(); // gives servername
    request.getServerPort(); // port number?
    Does any one know this?

    If you are looking for the Server's IP address, I think you could use the static method InetAddress.getLocalHost() (because the servlet is running on the server, so it is its "localHost").
    Please let me know (by this way) if it is the answer you are looking for.

  • Please i don�t know how start a servlet in the server

    I have done a servlet, it is very simple. When i try to see with the servletrunner it�s run very well.
    But i want to put it in the server (Internet Information Server), i want to see in the web. But i don�t know what i can do ???? �in the servlet? �in the server?.
    I don�t know so much of the server. I have tried to start the servlet with the servletrunner in the server, but when i try to see in the web, the page doesn�t exist.
    Please help me to configure the server and the servlet.
    Thanks

    I have seen that the JRUN is a plug-in who configure my Internet Information Server, for starting and seeing a sevlet in the web, isn�t it???
    But i don�t know where i can take and how, and is free?
    Thanks

  • How do I connect to the server to agree to terms of service for my IPhone on IOS7

    I recently updated my IPhone 5 to IOS7 and I need to agree to the terms of service but I cannot connect to the server.  What should I do?

    Sorry, you can't connect through the PC to enable internet on your BlackBerry.
    That's why it has the wireless mobile radio and WiFi.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How can I find out the server port for a secured FTP site and creating a FTP Connection Manager

    I have to create a FTP Task to go out and get the files that our 3rd party vendor will be dropping on a secured FTP site. I have all the credentials to access that Secured FTP Site and have successfully done so through FileZilla.
    Now I need to set-up a FTP Task to go out and get their files and in so doing create a FTP Connection Manager. Is there any way I can determine the
    Server Port number from the Secured FTP site? I let it default to 21 and tried the Test Connect and it failed.
    Thanks for your review and am hopeful for a reply.

    Hi ITBobbyP,
    SSIS has a built in FTP task, while this only works for the FTP protocol, it doesn’t support SFTP. But there are some free clients like WinSCP and
    SSIS SFTP Task Control Flow Component
    available in the CodePlex which can invoked from SSIS.
    References:
    SSIS SFTP Task Control Flow Component approach
    WinSCP approach
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Need to know how to calculate and allocate the server side bandwidth between two exchange sites for DAG replication

    Hi All,
    Please have a look in to the below mentioned environment.
    primary site :SITE 1
    server 1 
    server 2 
    secondary site :SITE 2
    server 3
    Note : All the above three servers are in single DAG .All the database are mounted on the server (server 1) which is located in the primary site (I.E SITE 1).
    On that 5 databases we are having 3500 users .Based on the user designation we have allocated the mailbox size.
    Query : Each and every day we are having the large no copy queue length for all the five databases to the server located in SITE 2.
    Please help me out on this and also tell me is there any tool available to exactly get the required bandwidth for the exchange servers located between the active directory sites.
    Thanks & Regards S.Nithyanandham

    I don't know of any tool that can calculate things for you but latency is the biggest thing you have to worry about. The other issues is looking at the network gear between the 2 sites. I have seen many times were switches get maxed out if they are set to
    1 GB or even ports getting maxed out and need to bonded for more throughput. Test your latency from the edge of each site then test it within to see if there is a difference. 
    Regardless of their geographic location relative to other DAG members, each member of the DAG must have round trip network latency no greater than 500 milliseconds between each other member.
    As the round trip latency between two Mailbox servers hosting copies of a database increases, the potential for replication not being up to date also increases. Regardless of the latency of the solution, customers should validate that the networks between
    all DAG members is capable of satisfying the data protection and availability goals of the deployment. Configurations with higher latency values may require special tuning of DAG, replication, and network parameters, such as increasing the number of databases
    or decreasing the number of mailboxes per database, to achieve the desired goals.
    Round trip latency requirements may not be the most stringent network bandwidth and latency requirement for a multi-datacenter configuration. You must evaluate the total network load, which
    includes client access, Active Directory, transport, continuous replication, and other application traffic, to determine the necessary network requirements for your environment.
    http://technet.microsoft.com/en-us/library/dd638104(v=exchg.150).aspx
    DJ Grijalva | MCITP: EMA 2007/2010 SPA 2010 | www.persistentcerebro.com

  • How to view output on the server?

    When I run WLS locally inside JDeveloper, I can see the output in the console when I have System.out.println() in my web application code.
    After I deploy it to the server, where do I go to see the same output?
    I'm using WLS 10.3.2

    If you still don't see the System.out.printlns in the logs folder look in this file. When you start the weblogic server usually you use like in windows startWeblogic.cmd. So look in that console and it should have the output. Same thing on Linux also, see the shell wiindow where you started weblogic and there you will see the output.
    Usually the bestpractice in linux is to use nohup command to start weblogic and redirect the output to any file. In this way, you can close that shell and still the weblogic will be running and all outputs will be in this log file. You can write a simple file like admin_start.sh with below lines and use this to start weblogic like ./admin_start.sh
    DOMAIN_HOME="/yourFullPath/Oracle/Middleware115/user_projects/domains/yourDomain1"
    LOG_FILE="/yourFullPath/Oracle/Middleware115/user_projects/domains/yourDomain1/logs/admin.log" (The file name can be anything)
    nohup ${DOMAIN_HOME}/bin/startWebLogic.sh > ${LOG_FILE} &
    Thanks
    Ravi Jegga

Maybe you are looking for

  • Here is a 2 for one, On a Mac Pro 5,1 2.66ghz 6 core Xeon.

    My mac pro is developing some strangeness, now when I go to start up the machine in morning it doesnt turn on until I have hit the power button 3 times, sometimes even this doesnt do the trick so I unplug it wait a couple sec and plug back in. So far

  • Mail says can't get more mail user folder full.

    i have been getting this message often and had found a suggestion on removing an envelope in the mail folder which I did and it seemed to have solved the problem for a couple of weeks. I can easily get 600 emails a days, different mac email groups th

  • ASA 5520- ISP change proceedure

    Hello, our company is going to change its´ ISP. The External Ips are going to obviously change too. We have an Active/Standby Firewall and we would like to make the change with at least connectivity downfall as possible. In our configuration we have

  • COBRA issue

    Cobra event was collected(HRBENUSCOB01) for an employee (period=current year). However, at the letter generation(HRBENUSCOB02)  the selection period (current year) was missed and the letter generation screen showed for 01/01/1800 to 12/31/9999 and ha

  • Doubt in Docking and Splitter Container

    Hi All, I want to make a screen which is draggable on right hand side, means user can click the border line and then increase and decrease the size of screen moving it left and write. This is similar to screen in SE80, ABAPDOCU, ME22n. This can be ea