Help with Essbase Ports

Does anyone knows if you can set a specific port for each APP.
Before we had Essbase 5.0.2 and we have upgraded to Essbase 9.3.1.
Several users connect to different DB from the internet. We had configured 3 ports for access in the firewall, 33005, 33010 and 33015.
Each port was used to access a different DB,
DB A -> 33005
DB B -> 33010
DB C -> 33015
The problem that we have now is that every DB we start uses 2 ports, so when we start the 3 DB, the first one uses 33005 and 33010, the second uses 33015 and 33020 so the third can not be accessed through the internet.
I have try with PORTINC, but the main problem is that the open ports ends with 5, so I can not make the 3 DB visible.
So what I would like to know if you can assign an specific port to a specific DB.
I want to avoid any modification to the firewall, because that would mean I have to make a request to another area and that takes time.
Thanks in advance.

I don't believe the ports can be isolated to specific databases (unless the databases are isolated to individual servers, that is -- and you don't want that).
In version 5, the ports did use increments of 5. This is no longer the case though, since version 7, the default is now 1 (which makes a lot more sense now). You should open up a wide range for "other" reasons (mostly to avoid the issue with "unable to send/unable to receive" due to all available ports being in use). You should look at the technical reference for the PORTINC, SERVERPORTBEGIN, and SERVERPORTEND entries and match the firewall to the settings applied to the server.
Basically, the need to keep the number of ports to a minimum should be evaluated against the need to provide sufficient access. If this is a firewall issue that IT is restricting access to, you should consider VPN access security as an alternative to public exposure to the essbase server.

Similar Messages

  • Help with Essbase 9 and the Java API

    Hi, I am trying to connect to Essbase from a Java desktop application and I am unable to do so. I need to know if I am in principle doing the right things and if I have the correct environment set up.
    We have a server with Essbase version 9.3.1. We normally use essbase via the Excel Addin, and I have already written Excel applications that utilise both the addin and the Essbase VB API. Now I need to connect to Essbase but from outside Excel and using the Java API. I have no idea what APS is nor does my Essbase Administrator.
    My application has the following code (adapted from a post in this forum) -
    public static void main(String[] args) {
    String s_userName = "user";
    String s_password = "password";
    String s_olapSvrName = "ustca111";
    String s_provider = "http://localhost:13080/aps/JAPI";
    try{
    IEssbase ess = IEssbase.Home.create(IEssbase.JAPI_VERSION);
    IEssDomain dom = ess.signOn(s_userName, s_password, false, null, s_provider);
    IEssOlapServer olapSvr = dom.getOlapServer(s_olapSvrName);
    olapSvr.connect();
    System.out.println("Connection to Analyic server '" + olapSvr.getName() + "' was successful.");
    olapSvr.disconnect();
    }catch(EssException exp){
    System.out.println(exp.getMessage());
    I am running my application on my computer, not on the Essbase server, and the username I am using is the same one I use (as a user of Essbase) via the Essbase Addin in Excel, not an admin login.
    When I run the app I get:
    "Cannot connect to Provider Server.Make sure the signon parameters are correct and the Provider Server is running."
    Please can you confirm:
    1) Do I need an admin login for my client application to connect to the Essbase server or can I use a normal read-access login, like the one I use in Excel?
    2) Is the provider always the same regardless of the computer, i.e. "http://localhost:13080/aps/JAPI"; How do I know what this has to be? Where do I get this information from?
    3) How can I make sure that the Server is running the necessary "Provider Server", is this just a service that will show on services.msc of the server? What should I ask the Essbase Administrator for him to tell me what I need?
    Thank you very much.
    Leo

    Tim, when I look in my computer's Essbase installation path I can only find the following jar files (from the ones you have listed).
    C:\Hyperion\AnalyticServices\JavaAPI\external\css\log4j-1.2.8.jar
    C:\Hyperion\AnalyticServices\JavaAPI\lib\ess_es_server.jar
    C:\Hyperion\AnalyticServices\JavaAPI\lib\ess_japi.jar
    I do not have css-9_3_1.jar or interop-sdk.jar.
    In order to try the embedded mode, I added the three jars I have to the classpath, and have re-built and ran with "embedded" as the provider. This is what I got in my output screen:
    run:
    Error accessing the properties file. essbase.properties: essbase.properties (The system cannot find the file specified). Using default values.
    Hyperion Provider Services - Release 9.3.1.0.0 Build 168
    Copyright (c) 1991, 2007 Oracle and / or its affiliates. All rights reserved.
    connection mode : EMBEDDED
    essbase.properties: essbase.properties
    domain.db location: domain.db
    console log enable : false
    file log enable : false
    logRequest : false
    logLevel : ERROR
    java System properties -DESS_ES_HOME: null
    Scenario Markets Total Legal Entities Products
    Jan Feb Mar
    Standard Units 1.053264054859E7 1.60849856762E7 2.6234553348270003E7
    BUILD SUCCESSFUL (total time: 2 seconds)
    As you can see, this has worked (as I get the data I was looking for at the end), but when I had the url in the provider string, I just get the below, without the initial errors:
    run:
    Scenario Markets Total Legal Entities Products
    Jan Feb Mar
    Standard Units 1.053264054859E7 1.60849856762E7 2.6234553348270003E7
    BUILD SUCCESSFUL (total time: 2 seconds)
    Now that I can get both modes to work I intend to write a Windows application, place it in a shared drive, and allow multiple users to use it. Which mode should I use?
    By the way, I found the essbase.properties file in C:\Hyperion\AnalyticServices\JavaAPI\bin, but when I add it to my app and test it in embedded mode, I get even more errors, but it still gives me the result...output below:
    run:
    java.io.FileNotFoundException: ..\bin\apsserver.log (The system cannot find the path specified)
    at java.io.FileOutputStream.openAppend(Native Method)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:177)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:102)
    at org.apache.log4j.FileAppender.setFile(FileAppender.java:272)
    at org.apache.log4j.RollingFileAppender.setFile(RollingFileAppender.java:156)
    at org.apache.log4j.FileAppender.<init>(FileAppender.java:96)
    at org.apache.log4j.RollingFileAppender.<init>(RollingFileAppender.java:60)
    at com.hyperion.dsf.server.framework.BaseLogger.addAppender(Unknown Source)
    at com.hyperion.dsf.server.framework.BaseLogger.setFileLogEnable(Unknown Source)
    at com.hyperion.dsf.server.framework.DsfLoggingService.sm_initialize(Unknown Source)
    at com.essbase.server.framework.EssOrbPluginDirect.setupLoggingService(Unknown Source)
    at com.essbase.server.framework.EssServerFramework.<init>(Unknown Source)
    at com.essbase.api.session.EssOrbPluginEmbedded.<init>(Unknown Source)
    at com.essbase.api.session.EssOrbPlugin.createPlugin(Unknown Source)
    at com.essbase.api.session.Essbase.signOn(Unknown Source)
    Hyperion Provider Services - Release 9.3.1.0.0 Build 168
    at com.essbase.api.session.Essbase.signOn_internal(Unknown Source)
    at com.essbase.api.session.Essbase.signOn(Unknown Source)
    at esstest.Main.main(Main.java:22)
    Copyright (c) 1991, 2007 Oracle and / or its affiliates. All rights reserved.
    connection mode : EMBEDDED
    log4j:WARN No appenders could be found for logger (com.hyperion.dsf.server.framework.BaseLogger).
    essbase.properties: essbase.properties
    log4j:WARN Please initialize the log4j system properly.
    domain.db location: ./data/domain.db
    console log enable : false
    file log enable : true
    logFileName : ../bin/apsserver.log
    logRequest : false
    logLevel : WARN
    java System properties -DESS_ES_HOME: null
    Scenario Markets Total Legal Entities Products
    Jan Feb Mar
    Standard Units 1.053264054859E7 1.60849856762E7 2.6234553348270003E7
    BUILD SUCCESSFUL (total time: 3 seconds)
    Thank you
    Leo

  • Help with opening ports on the Time Capsule

    Ok, let me try to describe the situation I'm in. I use a local internet company and I have 2 computers hooked up to my TC, one being a mac and the other a PC. I use the mac for office stuff and my PC is for gaming. I just bought Call of Duty: Modern Warfare 2, and it won't allow me to connect, but I when I try connecting using a Sprint Smartview internet chip, it works but goes slow. So I know it has to do with the TC, now my Mac uses the Ip 10.0.1.201 and my PC is 10.0.1.4, I've tried opening up the ports with the port mapping tool in Airport Utilities but didn't have any luck. I don't want to ruin anything by wandering into things I don't understand ...
    The ports needed are on this website
    http://forums.steampowered.com/forums/showthread.php?t=1019454
    Thanks in advance, I've been trying to figure this out for the last like 6 hours!

    Ok, let me try to describe the situation I'm in. I use a local internet company and I have 2 computers hooked up to my TC, one being a mac and the other a PC. I use the mac for office stuff and my PC is for gaming. I just bought Call of Duty: Modern Warfare 2, and it won't allow me to connect, but I when I try connecting using a Sprint Smartview internet chip, it works but goes slow. So I know it has to do with the TC, now my Mac uses the Ip 10.0.1.201 and my PC is 10.0.1.4, I've tried opening up the ports with the port mapping tool in Airport Utilities but didn't have any luck. I don't want to ruin anything by wandering into things I don't understand ...
    The ports needed are on this website
    http://forums.steampowered.com/forums/showthread.php?t=1019454
    Thanks in advance, I've been trying to figure this out for the last like 6 hours!

  • Need Help with Essbase Studio TBC cube deployment errors

    Hello Everyone,
    I am trying my hands on Essbase studio. I am using TBC example which comes with Essbase Studio installation. I am getting the following errors.
    How can I troubleshoot these errors. Since it comes with Essbase studio I supposed the data to be clean.
    In the essbase studio i defined the TIME dimension, but it stills give me that error.
    Please click the Details button for more information
    The error file is located on the server at: C:\temp\TBC.TBC_08-04-10_15-54-09.err
    Failed to deploy Essbase cube Caused by: Cannot end incremental build. Analytic Server Error(1007151): Wrong incremental dimension build sequence
    \\Record #3 - Error adding Label Only Attribute to member Inventory (3320)
    \\Record #3 - No time dimension defined
    \\Record #3 - Shared member cannot have a formula
    Measures ~ O Inventory ~ O
    \\Record #14 - Error adding Label Only Attribute to member Ratios (3320)
    \\Record #14 - Shared member cannot have a formula
    Measures ~ O Ratios ~ O
    \\Outline verification errors:
    \\When a single child member {Measures} is Dynamic Calc or Dynamic Calc and Store, the parent must also be Dynamic Calc or Dynamic Calc and Store

    Hi,
    Were you able to resolve that error with TBC db?
    I am running in to the exact same error...
    thanks

  • Help with expanding port on WRT54Gs PLEASE!?!?!

    Hey guys.  I won't go into all of the details as to why exactly I am doing this specific setup, but it is a mix of WIFI range, using left over equipment for cost concerns, and a SONOS system being involved...
    My GOAL setup:
    Modem ------ Internet port - WRT54Gs (wireless router) - LAN port ------- run through two jacks and through the attic ------ ***Switch or secondary router*** ---- Two etherent cables to 2 devices (PC  ***AND*** SONOS system)
    This setup currently works just fine for getting my PC internet:
    Modem ------ Internet port - WRT54Gs (wireless router) - LAN port ------- run through two jacks and through the attic ------ PC
    In the "Switch or secondary router" part of the diagram above I have tried a 2nd WRT54Gs with correct non-overlapping IP settings, DHCP server turned off on the dowstream router without success.  I have also tried just now a brand new "plug and play" Linksys SE1500 switch (without a 2nd router) in the same spot in the line.  None of these work and my computer reports I am not on a network with each of these.  I have power cycled and rebooted everything a thousand times in every conceivable order.
    Any thoughts are appreciated to help me solve this month long puzzle.
    Solved!
    Go to Solution.

    This is going to drive me nuts...
    So this is currently working:
    Main router (LAN port) ---- switch (in same room) ----- split to SONOS (short cable) and PC (LOOONG cable to other room)
    I was using this same quite long cable as a temp cable in my PC room from the wall to PC (which then goes through my attic/wall run)
    This seems to point to my run through the attic but how can that be it if that run works fine with all these same cables going straight into my PC??

  • Help With Essbase Outline Extractor Output

    Hello Gurus
    I am using Essbase Outline Extractor 9.3.1 to extract from Essbase 9.3.1 and I need a bit of a hand interpreting the results\Output. I'm after properties but Dynamic Calc, Shared Member, Never Share, & the Aggregation. Can anyone please help me with the definitions for the Property0 column.
    I also want to use the output to load via the Outline load utility, will this be able to read all the columns exported by the Outlinr extractor?
    Please help

    name_and_address_withheld wrote:
    alternatively search for "member property codes" (exact phrase) in the dbag and it will take you right there....sorry I am not that good at posting links to dbag stuff online...:(http://docs.oracle.com/cd/E17236_01/epm.1112/esb_dbag/dotrules.html#dotrules_2 :)
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Help with Essbase studio

    Hi All,
    I wanted some help/ advice with building cubes using essbase studio. I had posted the similar question earlier but this is bit different. Actually we have data in the following format:
    Employee ,     Region,     Product,    Version,    Activity,   Dates
    ABC,          CA,            Prod1,           1,           Intro_date,       01/10/11
    PQR,          CA,            Prod1,           1,           Offer_Date,       03/10/11
    PQR,          CA,            Prod1,           1,           End_Date,       04/10/11
    Now we want to build the cube using studio. Where measures should have Intro_date, Offer_date and End_date and dates should be loaded in them. This can be achieved using rules files but we want to do it using studio because there are other studio features which we want to use.
    Kindly advice.

    Kindly advice if this is possible ? all my data sources are in this format.

  • Need Help with 5 Port Switch, Airport Express, and wired iMac

    I recently purchased an airport express to accomodate my laptop's wireless capabilities. However, the airport express has only one ethernet port, as does my parents' modem. Thus, I could either hook up the airport or my parent's iMac. I chose the airport, which resulted in a few weeks worth of fights. To alleviate the problem, I purchased a linksys 5 port group switch, after someone told me I could use that to hook up both at the same time. Initially, the iMac wouldn't work. It registered what I was told was an invalid IP address. Then a cable technician came by, reset the modem (unplugged the battery), and now the airport does not work; it flashes yellow and says that it cannot detect the ethernet signal. 
    The iMac is running OSX 10.3 and the laptop OSX 10.4.  I am not sure if the modem can only accomodate one IP address or if there is any way to share IP addresses. Do I need to change something with the DHCP on my laptop? Do I need to manually enter an IP? Any help would be greatly appreciated. I'm completely lost....and without wireless internet.

    Instead of a switch you need a wireless router, because your modem will only assign one public ip address to the switch and that ip address will be forwarded to any one computer at a given time...You should replace the switch with a wireless router and it should resolve your concern...

  • Help with firewall port opening

    I'm a newbie at this, so please be patient. And my Time Capsule is less than a week old, so I'm still in the learning stages.
    I purchased an iPod Touch and one of the programs from the App Store--Pocketpedia--requires certain ports to be open in order to sync with my Mac pedia programs.
    I went into the Time Capsule>Advanced settings to try to open the appropriate 2 ports (one for the Powerbook and one for the Touch). I'm obviously doing something wrong. That wouldn't be heard since all of the terminology is foreign to me. I know that I need to open the two TCP ports.
    I clicked on the + to add a new service/port. I wasn't sure if I needed the numbers in Public TCP ports or private, so entered them in both with the numbers separated by commas.
    I thought that this would be "personal file sharing" so I tried to choose that under "Service". However, when I did that it said "A pulic TCP port number conflicts with a file sharing port on the base station. Disable file sharing or choose a different port number." Actually, once I choose "personal file sharing", it autofills in port 548 into the two TCP numbers. That's one that's opened within System Preferences. So it actually won't let me change that number at all. When I try to, it services menu defaults back to "choose a service".
    Needless to say, I'm very confused. I did go ahead and create a service with the two port #'s and without designating it a specific "service", but that doesn't seem to fix my problem with allowing the Touch to sync with my Powerbook.
    Any help would be much appreciated.

    With port mapping (forwarding) you "open" ports on the router's firewall in order to allow Internet traffic to reach a host device on your local area network (LAN). In this case your iPod Touch and PowerBook. However, you can only map the same port(s) to only one device. For example, you cannot map port 548 to both the Touch AND the PowerBook, only one or the other.
    The typical port mapping setup requires two basic steps:
    1. Assign either a static IP address or reserve a DHCP-assigned IP address to the host device.
    2. Map the appropriate port(s) on the router to this host device.
    The following is a more detailed list of steps ...
    To setup port mapping on the Time Capsule (TC), either connect to the TC's wireless network or temporarily connect directly, using an Ethernet cable, to one of the LAN port of the TC, and then use the AirPort Utility, in Manual Setup, to make these settings:
    1. Reserve a DHCP-provided IP address for the host device.
    Internet > DHCP tab
    o On the DHCP tab, click the "+" (Add) button to enter DHCP Reservations.
    o Description: <enter the desired description of the host device>
    o Reserve address by: MAC Address
    o Click Continue.
    o MAC Address: <enter the MAC (what Apple calls Ethernet ID if you are using wired or AirPort ID if wireless) hardware address of the host computer>
    o IPv4 Address: <enter the desired IP address>
    o Click Done.
    2. Setup Port Mapping on the AEBSn.
    Advanced > Port Mapping tab
    o Click the "+" (Add) button
    o Service: <choose the appropriate service from the Service pop-up menu>
    o Public UDP Port(s): <enter the appropriate UDP port values>
    o Public TCP Port(s): <enter the appropriate TCP port values>
    o Private IP Address: <enter the IP address of the host server>
    o Private UDP Port(s): <enter the same as Public UDP Ports or your choice>
    o Private TCP Port(s): <enter the same as Public TCP Ports or your choice>
    o Click "Continue"
    (ref: "Well Known" TCP and UDP ports used by Apple software products)

  • Help With VNC Ports

    Hello everyone. I have a PowerPC G4 Mac Mini with Mac OS X 10.4 Tiger. I have turned off the Apple Firewall and I do not have a router. I connect to the internet using a DSL Modem. OK, I am trying to set up a VNC Server Using OSXvnc. Well, I know i need port 5900 to be open, and there is nothing blocking this port from opening. I checked on www.grc.com to see if port 5900 was open, but it said the port was "Stealthed". Does anyone know how I can open port 5900? Thanks in advance for all of your help.

    Could you try opening a Terminal window and typing the following command:
    sudo ipfw list
    (you'll be prompted for your password; you have to be an Administrator of your computer)
    If your firewall is completely turned off, it should print a line like:
    65535 4660828 3870352285 allow ip from any to any
    If it's not completely off, you'll get a whole bunch of lines as output, some saying "deny ip" instead of "allow ip". That would be my best guess as to what's happening.
    Also, I assume you haven't installed any third-party (non-Apple) firewall programs? A few do exist...
    If the firewall is off, have you tried connecting via VNC, just to see if it actually does work?

  • Help with USB ports

    Hello, I have a Toshiba Satellite L655D-S5159RD.  When I bought my laptop a few months ago it came with 3 USB ports and basically ever since I got it, the two USB ports on the right side have not worked properly.  For example I can plug something that requires power like a fan and it works but things that work perfectly on other comuters like a wireless mouse or external hard drive just do not get recognized by my laptop.  Any help on this would be appreciated.

    Go into the Bios and click on the Advanced tab. There should be a setting for the USB Legacy Emulation mode. By default, it is usually enabled. The USB Legacy Mode is for older USB devices like keyboards and disk drives. Disable the USB Legacy mode and try again. There may be a problem with some of the newer USB devices like hard drives and wireless mice with the USB Legacy mode enabled.

  • Need help with bus ports (pre or post?)

    I have recorded my acoustic guitar on two tracks in order to save time with the drop region and cutting and I have already autonated both of the tracks so they sound like one guitar (same channel strips).
    However, I am trying not to use the plug ins that are on the guitar tracks TWICE (they are verry powerful), so I would like to copy the channel strip of my guitar tracks to a bus track, yet still keep the autonation working for both tracks (by the way, its just volume after the plug ins).
    I cant say I could esily put all the regions from both tracks into one, so I want to use a bus.
    If this is at all possibe for me to do while keeping my automation for both of the two tracks, how would I go about doing this? (do I set them as pre/post sends, ect.)
    Thank you so much!
    -Sam

    Instructions for opening ports is here.
    https://discussions.apple.com/docs/DOC-3415
    You should be fine opening the whole range, 10000-20000

  • Need help with opening ports on airport extreme

    My vonage phone is connected to airport extreme router, voice quality of phone calls was poor. Vonage tech support says   vonage port on my airport extreme was closed and i need to open it.
    Here is my chat details with vonage tech support-
    The following ports are needed for Internet communication between the Vonage adapters and the Vonage servers.
    SIP: Port 5061 UDP
      RTP (Voice) Traffic: Ports 10000-20000 UDP. When a call is made, a random port between 10000 and 20000 is used for RTP (Voice) traffic. If any of these ports are blocked, you may experience one way or no audio.
    Please do suggest me the way to open the ports on airport extreme
    Thanks
    Venki

    Instructions for opening ports is here.
    https://discussions.apple.com/docs/DOC-3415
    You should be fine opening the whole range, 10000-20000

  • Help with opening port 10000 on a pix 501

    I am attempting to open port 10000 so that I can remotely VPN using tcp port 10000. This is a pix 501 running version 6.3.5.
    What commands do I need to enter for this to happen?

    Remote vpn access can be configured on a pix 501 by using the configuration guide present in the links given below:
    Site-to-Site VPN Configuration Examples is present in the url below:
    http://www.cisco.com/en/US/docs/security/pix/pix63/configuration/guide/sit2site.html
    Managing VPN Remote Access giude is present in the following url:
    http://www.cisco.com/en/US/docs/security/pix/pix63/configuration/guide/basclnt.html

  • Please help me creating a new listener with different port#.

    I have two instances in a server. both have different homes. I want to create a seperate listener for the second one i created.
    But that is not happening.
    here i tried to give name from LISTENER TO LISTENER1 & Port# from 1521 to 1524.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /apps2/oracle)
    (PROGRAM = extproc)
    LISTENER1 =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = aixth53)(PORT = 1524))
    When I check lsnrctl status with LISTENER1 , it still shows the other instance home with port#: 1521
    Please help me creating a new listener with different port#.
    Thanks,

    marist89 wrote:
    sb92075 wrote:
    marist89 wrote:
    sybrand_b wrote:
    The listener is a broker only and doesn't play any role in normal communications.
    It just forks a process or a thread, and that's it.And the listener is a single point of failure. Listener goes down, you can't connect to the db. That's why you need two listeners.If listener one goes down, then listener two goes down for exact same reason since it is a single executable file.I'm not playing tit-for-tat with you. Fact is, there are situations where people who are not you might want to use more than one listener.Some folks might want to jab a sharp pencil into their eye, too.
    Just because you can do something, it does not necessarily mean it should be done.

Maybe you are looking for

  • I have a brand new Mac and it did not come with iDVD. What gives?

    Is iDVD supposed to come on new equipment? It's not on the app store and iMovie tells me I need it in order to burn a DVD.

  • Data discarded after client disconnect

    Hello! I have to say sorry right from the start, maybe my question is stupid but i can't solve this problem I am a student and a beginner in Oracle database! I use oracle at school, and i have to work for my project at home so i had to install and co

  • Duplicate concentric dots while keeping numbers upright

    I'm trying to illustrate several concentric circles shaped with dots containing numbers, as follows: Right now, I'm creating the circle patterns by rotating copies of the shape by even degree amounts. Each circle aside from the center one is a multip

  • How do I contact someone about an account issue

    I don't need product support.  I need support with my account. I received an email stating: "Recently, there's been activity in your AppIe account that seems unusual compared to your normal account activities. Please log in to AppIe to confirm your i

  • Mobile Field Service Laptop setup login

    I have Oracle Lite 10.3.0.2.0 and Oracle Business 12.1.1 I used for implementation note 846572.1 from support.oracle.com Problem is: When I try to install the laptop client application I received the error "Invalid the user name/password: my.user". I