List of ports that need to be opened?

Hi,
A customer is using a citrix client to log on to their citrix server, which is running a B1 client. They are getting errors in relation to the connection to the licence server failing, even though they have opened the port (30000) in question to allow access.
Do you have a list of ports/are there any other ports as standard that need to be opened for the client install to connect to the license server?
Thanks.

David,
Try to browse this link:
http://support.citrix.com
there is a search function that you could use to find out the port or also issue regarding to citrix
Rgds,

Similar Messages

  • Ports that need to be Opened for OBIEE 11g Installation on Solaris Box

    What ports need to be opened by the systems admin on a solaris box to start OBIEE 11g installation

    There is lot difference what you said now and in your initial post...
    For outside communication means? you want to access BI outside the network using url?
    in that case is it not weblogic port? check with your network guys they'll take care of it.
    if you are looking for network with other systems internally then you may/have to open as per that link.
    hope this helps

  • Listing all datafiles that need restore

    I get this when I try to open the database.
    ERROR at line 1:
    ORA-01113: file 10 needs media recovery
    So I go the RMAN and restore and recover datafile 10.
    Then I'm told when I try to open the database that file 12 need media recovery.
    Is there a way I can list out all the files that need recovery? So that the list would say something like this:
    file 10 needs media recovery
    file 12 needs media recovery
    file 13 needs media recovery

    Hi,
    Following query would help you:
    select* from v$recover_file;
    Regards

  • How to update a large (over 4 million item) List(Of Byte) quickly by altering indexes contained in a Dictionary(Of Integer, Byte) where the Dictionaries keys are the indexes in the List(Of Byte) that need to be changed to the values for those indexes?

       I'm having some difficulty with transferring images from a UDP Client to a UDP Server. The issue is receiving the bytes necessary to update an original image sent from the Client to the Server and updating the Servers List(Of Byte) with the
    new bytes replacing bytes in that list. This is a simplex connection where the Sever receives and the Client sends to utilize the least amount of bandwidth for a "Remote Desktop" style application where the Server side needs image updates of whatever
    occurs on the Client desktop.
       So far I can tranfer images with no issue. The images can be be any image type (.Bmp, .Gif, .JPeg, .Png, etc). I was working with sending .JPeg's as they appear to be the smallest size image when a Bitmap is saved to a memory stream as type
    .JPeg. And then I am using GZip to compress that byte array again so it is much smaller. However on a loopback on my NIC the speed for sending a full size screen capture is not very fast as the Server updates fairly slowly unless the Clients screen capture
    Bitmap is reduced in size to about 1/3'd of the original size. Then about 12000 bytes or less are sent for each update.
       Due to .JPeg compression I suppose there is no way to get the difference in bytes between two .JPegs and only send those when something occurs on the desktop that alters the desktop screen capture image. Therefore I went to using .Bmp's as each
    .Bmp contains the same number of bytes in its array regardless of the image alterations on the desktop. So I suppose the difference in bytes from a second screen capture and an inital screen capture are what is different in the second image from the initial
    image.
       What I have done so far is save an initial Bitmap of a screen capture using a memory stream and saving as type .Bmp which takes less than 93 milliseconds for 4196406 bytes. Compressing that takes less than 118 milliseconds to 197325 bytes for
    the current windows on the desktop. When that is done PictureBox1 is updated from nothing to the captured image as the PictureBox's background image with image layout zoom and the PictureBox sized at 1/2 my screens width and 1/2 my screens height.
       Then I save a new Bitmap the same way which now contains different image information as the PictureBox is now displaying an image so its back color is no longer displayed (solid color Aqua) and the cursor has moved to a different location. The
    second Bitmap is also 4196406 in bytes and compressed it was 315473 bytes in size.
       I also just found code from this link Converting a Bitmap to a Byte Array (and Byte Array to Bitmap) which gets a byte array
    directly from a Bitmap and the size of that is 3148800 for whatever is full screen captured on my laptop. So I should be able to work with smaller byte arrays at some point.
       The issue I'm having is that once the Client sends an image of the desktop to the Server I only want to update the server with any differences occuring on the Clients desktop. So what I have done is compare the first screen captures bytes (stored
    in a List(Of Byte)) to the second screen captures bytes (stored in a List(Of Byte)) by using a For/Next for 0 to 4196405 where if a byte in the first screen captures List is not equal to a byte in the second screen captures List I add the index and byte of
    the second screen captures list to a Dictionary(Of Integer, Byte). The Dictionary then only contains the indexes and bytes that are different between the first screen capture and second screen capture. This takes about 125 milliseconds which I think is pretty
    fast for 4196406 byte comparison using a For/Next and adding all the different bytes and indexes for each byte to a Dictionary.
        The difference in Bytes between the inital screen capture and the second screen capture is 242587 as an example which changes of course. For that amount of bytes the Dictionary contains 242587 integers as indexes and 242587 bytes as different
    bytes totaling 485174 bytes for both arrays (keys, values).  Compressed the indexes go from 242587 to 43489 bytes and the values go from 242587 to 34982 bytes. Which means I will have to send 78, 481 bytes from the Client to the Server to update the display
    on the server. Quite smaller than the original 4196406 bytes of the second Bitmap saved to type .Bmp or the compressed size of that array which was 315473 bytes. Plus a few bytes I add as overhead so the server knows when an image array ends and how many packets
    were sent for the array so it can discard complete arrays if necessary since UDP is lossfull although probably not so much in current networks like it may originally have been when the internet started.
        In reality the data from the Client to the Server will mostly be the cursor as it moves and updating the Server image with only a few hundred bytes I would imagine at a time. Or when the cursor selects a Button for example and the Buttons
    color changes causing those differences in the original screen capture.
       But the problem is if I send the Dictionaries Indexes and Bytes to the Server then I need to update the original Bitmap List(Of Byte) on the server by removing the Bytes in the received informations Index locations array from the Servers Bitmap
    List(Of Byte) and replacing those Bytes with the Bytes in the received informations Byte array. This takes so long using a For/Next for however many indexes are in the received informations Index array to update the Bitmap List(Of Byte) on the server using
    "Bmp1Bytes.RemoveAt(Index As Integer)" followed by "Bmp1Bytes.Insert(Index As Integer, Item As Byte)" in the For/Next.
        I've tried various For/Next statements including using a new List(Of Byte) with If statements so If the the integer for the For/Next ='s the Key in a Dictionary(Of Integer, Byte) using a Counter to provide the Dictionaries Key value then
    the Dictionaries byte value will be added to the List(Of Byte) and the counter will increas by one Else the List(Of Byte) adds the original "Bmp1Bytes" byte at that index to the new List(Of Byte). This takes forever also.
       I also tried the same For/Next adding to a new Dictionary(Of Integer, Byte) but that takes forever too.
       I think I could use RemoveRange and AddRange to speed things up. But I don't know how to retrieve a contiguous range of indexes in the received indexes that need to be updated in the servers "Bmp1Bytes" List(Of Byte) from the received
    array of indexes and bytes which are in a Dictionary(Of Integer, Byte).  But I believe this would even be slower than some realistic method for replacing all Bytes in a List(Of Byte) when I have the indexes that need to be replaced and the bytes to replace
    them with.
       Even if I just used AddRange on a new List(Of Byte) to add ranges of bytes from the original "Bmp1Bytes" and the changes from the Dictionary(Of Integer, Byte) I think this would be rather slow. Although I don't know how to do that
    by getting contiguous ranges of indexes from the Dictionaries keys.
       So I was wondering if there is some method perhaps using Linq or IEnumerable which I've been unable to figure anything out which could do this.
       I do have some copy and pasted code which I don't understand how it works that I am using which I would guess could be altered for doing something like this but I can't find information that provides how the code works.  Or even if I did
    maybe I can't understand it. Like the code below which is extremely fast.
       Dim strArray() As String = Array.ConvertAll(Of Integer, String)(BmpComparisonDict.Keys.ToArray, Function(x) x.ToString())
    La vida loca

    Monkeyboy,
    That was quite a bit to read, but still a bit unclear. Could you put a specific list of goals/questions, asked in the smallest possible form?
    It seems like either you're making a program that monitors activity on your computer, or you're writing some kind of remote pc app.
    When you do get your bytes from using lockbits, keep in mind all the files header info would be lost. I think retaining the header info is worth the extra bytes.
    The other, thing: I'm not sure if you're taking 32bpp screen shots, but also keep in mind that the "whole desktop" is the final destination for blended graphics, if that makes sense. What I mean is that there is no need to capture an "alpha"
    channel for a desktop screenshot, as alpha would always be 255, this could save you 1 byte per pixel captured... Theres nothing "behind" the desktop, therefore no alpha, and every window shown above the desktop is already blended. I suggest using
    24Bpp for a full screen capture.
    Your X,Y information for the mouse could be stored as UINT16, this would save you a measly 2 bytes per location update/save.
    When you update your byte arrays, maybe you can turn the array into a stream and write to whatever index, however many bytes, that should prevent a "Shift" of bytes, and instead overwrite any bytes that "get in the way".
    ex
    Dim example As String = "This is an example."
    Dim insertString As String = "was"
    Dim insertBytes As Byte() = System.Text.Encoding.ASCII.GetBytes(insertString)
    Dim bytes As Byte() = System.Text.Encoding.ASCII.GetBytes(example)
    Dim modifiedBytes As Byte() = {}
    Using ms As New System.IO.MemoryStream(bytes)
    ms.Position = 5
    ms.Write(insertBytes, 0, 3)
    modifiedBytes = ms.ToArray
    End Using
    Dim newString As String = System.Text.Encoding.ASCII.GetString(modifiedBytes)
    'Notice how below there isn't the word "is" anymore, and that there isn't a
    'space.
    'This demonstrates that you overwrite existing data, versus shifting everything to
    'the right.
    'Returns: This wasan example.
    MsgBox(newString)
    “If you want something you've never had, you need to do something you've never done.”
    Don't forget to mark
    helpful posts and answers
    ! Answer an interesting question? Write a
    new article
    about it! My Articles
    *This post does not reflect the opinion of Microsoft, or its employees.
    Well it's too much to read. I was really tired when I wrote it. Even the below is too much to read but perhaps gets the point across of what I would like to do which I think
    Joel Engineer may have answered but I'm not sure. As I'm still too tired to understand that yet and research what he said in order to figure it out yet.
    But maybe the code below can provide the concept of the operation with the comments in it. But seeing as how I'm still tired it may be confused.
    Option Strict On
    Imports System.Windows.Forms
    Imports System.IO
    Imports System.IO.Compression
    Imports System.Drawing.Imaging
    Imports System.Runtime.InteropServices
    Public Class Form1
    Dim Bmp1Bytes As New List(Of Byte)
    Dim Bmp1BytesCompressed As New List(Of Byte)
    Dim Bmp2Bytes As New List(Of Byte)
    Dim BmpComparisonDict As New Dictionary(Of Integer, Byte)
    Dim BmpDifferenceIndexesCompressed As New List(Of Byte)
    Dim BmpDifferenceBytesCompressed As New List(Of Byte)
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    SomeSub()
    End Sub
    Private Sub SomeSub()
    ' Pretend this code is in UDP Client app. A screen capture is performed of the desktop. Takes about 90 milliseconds.
    Bmp1Bytes.Clear()
    Using BMP1 As New Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height)
    Using g1 As Graphics = Graphics.FromImage(BMP1)
    g1.CopyFromScreen(0, 0, 0, 0, BMP1.Size)
    Cursor.Draw(g1, New Rectangle(Cursor.Position.X, Cursor.Position.Y, Cursor.Size.Width, Cursor.Size.Height))
    Using MS As New MemoryStream
    BMP1.Save(MS, System.Drawing.Imaging.ImageFormat.Bmp)
    Bmp1Bytes.AddRange(MS.ToArray)
    End Using
    End Using
    End Using
    Bmp1BytesCompressed.AddRange(Compress(Bmp1Bytes.ToArray))
    ' UDP Client app sends Bmp1BytesCompressed.ToArray to UDP Server which is the entire image of the desktop that the UDP
    ' Client is on. This image takes awhile to send since compressed it is about 177000 bytes from over 4000000 bytes.
    ' I will be using different code just to get the bytes from the actual Bitmap in the future. That is not important for now.
    ' Pretend the UDP Server has received the bytes, decompressed the array received into a List(Of Byte) and is displaying
    ' the image of the UDP Clients desktop in a PictureBox.
    ' Now the image on the UDP Clients desktop changes due to the mouse cursor moving as an example. Therefore a new Bitmap
    ' is created from a screen capture. This takes about 90 milliseconds.
    Bmp2Bytes.Clear()
    Using BMP2 As New Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height)
    Using g1 As Graphics = Graphics.FromImage(BMP2)
    g1.CopyFromScreen(0, 0, 0, 0, BMP2.Size)
    Cursor.Draw(g1, New Rectangle(Cursor.Position.X, Cursor.Position.Y, Cursor.Size.Width, Cursor.Size.Height))
    Using MS As New MemoryStream
    BMP2.Save(MS, System.Drawing.Imaging.ImageFormat.Bmp)
    Bmp2Bytes.AddRange(MS.ToArray)
    End Using
    End Using
    End Using
    ' Now I have the original images bytes in Bmp1Bytes and the new images bytes in Bmp2Bytes on the UDP Client. But I don't
    ' want to send all of the bytes in Bmp2Bytes to the UDP Server. Just the indexes of and the bytes that are different in
    ' Bmp2Bytes from Bmp1Bytes.
    ' This takes less than 100 milliseconds for what I've tested so far where over 500000 bytes in Bmp2Bytes are different
    ' than the bytes in Bmp1Bytes. Usually that amount would be much less. But during testing I was displaying the image
    ' from Bmp1 bytes in a PictureBox so a large amount of data would change between the first screen shot, the PictureBox
    ' then displaying an image on the same PC and then the second screen shot.
    BmpComparisonDict.Clear()
    For i = 0 To Bmp1Bytes.Count - 1
    If Bmp1Bytes(i) <> Bmp2Bytes(i) Then
    BmpComparisonDict.Add(i, Bmp2Bytes(i))
    End If
    Next
    ' So now I have all the difference bytes and their indexes from Bmp2Bytes in the BmpComparisonDict. So I compress
    ' the indexes into on List and the Bytes into another List.
    BmpDifferenceIndexesCompressed.Clear()
    BmpDifferenceBytesCompressed.Clear()
    BmpDifferenceIndexesCompressed.AddRange(Compress(BmpComparisonDict.Keys.SelectMany(Function(d) BitConverter.GetBytes(d)).ToArray()))
    BmpDifferenceBytesCompressed.AddRange(Compress(BmpComparisonDict.Values.ToArray))
    ' Now pretend the UDP Client has sent both those arrays to the UDP Server which has added both decompressed arrays
    ' to a Dictionary(Of Integer, Byte). And the server has the original image decompressed bytes received in a List
    ' called Bmp1Bytes also.
    ' This is where I am stuck. The UDP Server has the Dictionary. That part was fast. However there is no
    ' fast method I have found for creating a new List(Of Byte) where bytes in the originally received List(Of Byte) that
    ' do not have to be altered are placed into a new List(Of Byte) except for the indexes listed in the
    ' Dictionary(Of Integer, Byte) that need to be placed into the appropriate index locations of the new List(Of Byte).
    ' The below example for doing so is exceptionally slow. Pretend UpdateDictionary has all of the decompressed indexes
    ' and bytes received by the UDP Server for the update contained within it.
    Dim UpdateDictionary As New Dictionary(Of Integer, Byte)
    Dim UpdatedBytes As New List(Of Byte)
    Dim Counter As Integer = 0
    For i = 0 To Bmp1Bytes.Count - 1
    If i = UpdateDictionary.Keys(Counter) Then ' Provides the index contained in the Keys for the Dictionary
    UpdatedBytes.Add(UpdateDictionary.Values(Counter))
    Counter += 1
    If Counter > UpdateDictionary.Count - 1 Then Counter = 0
    Else
    UpdatedBytes.Add(Bmp1Bytes(i))
    End If
    Next
    ' So what I'm trying to do is find an extremely fast method for performing something similar to what the
    ' above operation performs.
    End Sub
    Private Function Compress(BytesToCompress() As Byte) As List(Of Byte)
    Dim BytesCompressed As New List(Of Byte)
    Using compressedStream = New MemoryStream()
    Using zipStream = New GZipStream(compressedStream, CompressionMode.Compress)
    zipStream.Write(BytesToCompress, 0, BytesToCompress.Count)
    zipStream.Close()
    BytesCompressed.AddRange(compressedStream.ToArray)
    End Using
    End Using
    Return BytesCompressed
    End Function
    Private Function Decompress(BytesToDecompress() As Byte) As List(Of Byte)
    Dim BytesDecompressed As New List(Of Byte)
    Using DecompressedStream = New MemoryStream()
    Using zipStream = New GZipStream(DecompressedStream, CompressionMode.Decompress)
    zipStream.Write(BytesToDecompress, 0, BytesToDecompress.Count)
    zipStream.Close()
    BytesDecompressed.AddRange(DecompressedStream.ToArray)
    End Using
    End Using
    Return BytesDecompressed
    End Function
    End Class
    La vida loca

  • Feature to spit out a list of users that need a password reset from DB?

    Not too sure which category this would be in, so please direct me if you know
    As the title says, is there a feature or tool that exports a list of usernames that have their password expiring in, for example, the next 10-20 days? It's a common occurrence that people forget to change their password and end up being locked out. This tool would greatly make it easier on our IT dept.
    Thanks! 
    This topic first appeared in the Spiceworks Community

    Not too sure which category this would be in, so please direct me if you know
    As the title says, is there a feature or tool that exports a list of usernames that have their password expiring in, for example, the next 10-20 days? It's a common occurrence that people forget to change their password and end up being locked out. This tool would greatly make it easier on our IT dept.
    Thanks! 
    This topic first appeared in the Spiceworks Community

  • SQL*Plus: list of characters that need to be escaped

    Hi all,
    We have a requirement where we need to add comments to tables and table columns and this is done using SQL*Plus. I understand that there are some special characters that are interpreted by SQL*Plus such as ampersand (&). I would like to know the list of such characters so that we can escape them before passing it on to CREATE COMMENT ON statement. So far we have identified the following special characters:
    The following characters need to be escaped no matter where they are present in the comment
    single quote "'" (hex 27)
    define "&" (hex 26)
    sqlterminator ";" (hex 3b)
    The following characters need to be escaped when they are the only character on a line
    forward slash "/" (hex 2f)
    blockterminator "." (hex 2e)
    sqlprefix "#" (hex 23)
    The following characters need to escaped if they are followed by a newline
    line continuation "-" (hex 2d)
    We would like to know if there are other special characters and appreciate if someone can provide the list.
    Thanks
    Edited by: user779842 on Aug 20, 2009 3:37 AM
    Edited by: user779842 on Aug 20, 2009 3:55 AM

    I think the only two characters you need to worry about in your comment strings are: ' and & (apostrophe/single quote and ampersand). The latter you can get around by doing:
    set define offbefore running your statements, but the apostrophe you'll have to double up to allow oracle to recognise that it's not the end of the string. Eg:
    I'm a stringwould become
    'I''m a string'  -- NB. this is two single quotes, not 1 double quote!or, if you're on 10g or above, you can use the quote operator (q):
    select q'#I'm a string#' from dual;See the documentation for what characters can be used as the quote delimiters: http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14251/adfns_sqltypes.htm#sthref377

  • I can't seem to open any Internet radio station that need me to open a pop up

    If the site need me to click here to listen nothing happpens any ideas?

    Ok I trashed the plist and created a new library on the external hard drive, copied a short clip from the the default library on the internal hard drive.  After I closed and re-launched imovie, when I attempt to open the newly created library I get the same message " the file couldn't be opened".  Very frustrating.  Also even when I open one of the other libraries by double clicking on it, I can't "share" any of the clips by email.  I get a rendering error -50.  The clips on the internal library share just fine.
    Do you think it would be worthwhile trying a complete re-install?
    Thanks
    Matthew

  • I am in retail and have multiple subsiduaries to report on. All articles. What report can I run or create. I have listed below details that need to be shown.

    Article number, description, unit of measure for each article, unit of issue, units on order, current stock on hand, merchandise dept, stock planner id, current value of stock on hand in local currency, Thankyou

    This can be a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • What ports need to be open on Fw for Waas Communication--Urgent

                       Hi All,
    This product is new to need your help in configuring this. I am explaining the architecture below:-
    We have a requirement to use WAVE-594-K9 Software Release 5.3.1 and in our Manila location and it will not talk to Waas central Manager in our client location instead client has installed one same model Wave-594 in PHX.
    So now client has said it will only be used for caching contents and not for optimizing, they have some video training on web which will be passed through this wave and for making them highly/fastly available to agents they want to use this.
    We have installed one Wave in Manila in application-accelerator mode and using PBR to redirect the desired traffic via Wave. As per our client Manila Wave will talk to PHX wave and PHX wave will get registered to Waas Manager in client network.
    We have firewall between PHX wave & Manila wave, please let me know do we need to opened tcp/udp ports on FW for opening the communication between these two waves?
    and what else i need to configure on Manila wave?
    This is very urgent quick reply will be highly appreciated!!
    Thanks!!
    Bhisham

    Thanks for the quick reply Kanwal!!
    I checked with my team in PHX and we have Juniper FW in between these two Wave's, so what i understand from the links which you have shared.
    In Manila Wave i need to configure that in Directed Mode and udp port 4050 needs to be opened bi-directionally on Juniper FW between IPs configured on wave devices.
    In Manila we have 10.111.x.189 (Virtual-Blade IP) & 10.111.x.190 IPs & in PHX we 63.149.23.x & 63.149.23.x (VB) so from both IPs we required to open udp 4050 bi-directionally? Want to be sure before raising any request :-)
    In PHX wave i am not sure whether we can configure that in directed mode and if it’s not then also it will work by opening port 4050 on FW Right?
    In last our client was saying that Manila Wave will only be used as cache engine (VB is configured as content-engine) and it will download contents from PHX Wave (which is registered to CM at client side), what does it mean and do i need to do any special config on wave to achieve this?
    I am very new to this device and lot of research on net confused me a lot, please don’t mind!!
    Will wait for your reply then only i will raise request with FWteam.
    Thanks,
    Bhisham

  • Ports the need to open for OBIEE 11.1.1.6.7 cluster installation

    We are installing obiee cluster on RHEL 6.3 servers, installation is successful if we stop the firewall on all servers, but when we open the below list of ports(that are supplied by oracle) we are able to install OBIEE 11.1.1.6.7 on first host but the second host throws the following error, are we missing any ports and also I assume that the scale out host try's to connect to primary host domain using 7001 and its open. I don't know why the heck i get this error
    [VALIDATION] [ERROR]:INST-07057: Error in validating the BI host field value. Entered host is not up and running
    [VALIDATION] [SUGGESTION]:Make sure that the host is up and running
    configuration Failed. Exiting configuration due to data validation failure.
    # http BI admin console and em
    7001
    # https BI admin console and em
    7002
    # I/O Necessary for TCP communications during install
    7
    # I/O Node manager
    5556
    # I/O loadbalancer (when used)
    7777
    # I Access Server
    6021
    # I Identity Server
    6022
    # O OPMN TCP Port
    6701
    # I OPMN HTTP Port
    7779
    # I/O Cluster Controller Monitor
    9700
    # I/O OBIEE Server Monitor Client (only used when clustered)
    9701 
    # I/O OBIEE Server
    9703 -
    # I Scheduler
    9705
    # I/O Cluster Controller Client
    9706 -
    # I Scheduler Script Engine
    9707
    # I/O Scheduler Cluster Monitor port
    9708
    # I/O Presentation Server
    9710
    # I (Presentation Server) Java Host
    9810
    # I/O JOC for OWSM
    9991
    # Process Manager Local port no
    6700
    # Process Manager Request port no
    6702
    # Node Manager port
    9500
    # Node Manager port
    9501
    # Node Manager port
    9502
    # Node Manager port
    9503
    # Node Manager port
    9504
    # Node Manager port
    9505
    # Node Manager port
    9506
    # Node Manager port
    9507

    We have the staticports when we installed our BI.Below for your persue.
    [WEBLOGIC]
    #The Domain port no. This is the listen port of Weblogic Adminserver for the domain.
    Domain Port No = 7001
    #The "content" port for the BIEE apps. This is the Weblogic Managed Server port on which BIEE applications are deployed.
    Oracle WLS BIEE Managed Server Port No = 9704
    #The SSL port for the Weblogic Managed Server
    Oracle WLS BIEE Managed Server SSL Port No = 9804
    [OPMN]
    #Process Manager Local port no
    Oracle Process Manager Local Port No = 6700
    #Process Manager Remote port no
    Oracle Process Manager Remote Port No = 6701
    #Process Manager Request port no
    Oracle Process Manager Request Port No = 6702
    [BIFOUNDATION]
    #The listen port for OracleBIServer component
    Oracle BI Server Port No = 9703
    #The monitor port for OracleBIServer component
    Oracle BI Server Monitor Port No = 9701
    #The listen port for OracleBIPresentationServices component
    Oracle BI Presentation Services Port No = 9710
    #The listen port for OracleBIScheduler component
    Oracle BI Scheduler Port No = 9705
    #The monitor port for OracleBIScheduler component
    Oracle BI Scheduler Monitor Port No = 9708
    #The script RPC port for OracleBIScheduler component
    Oracle BI Scheduler Script RPC Port No = 9707
    #The listen port for OracleBIClusterController component
    Oracle BI ClusterController Port No = 9706
    #The monitor port for OracleBIClusterController component
    Oracle BI ClusterController Monitor Port No = 9700
    #The listen port for OracleBIJavaHost component
    Oracle BI JavaHost Port No = 9810
    Mark if helps,
    Thanks,

  • Third party routers that need no firmware update

    What are the best third party WiFi routers with LAN ethernet ports that need no firmware update to work with 10.4.8 and Windows XP?

    Actually the extra ethernet ports is paramount.
    Otherwise you don't know who is being secure to
    whom. You end up having two routers to setup for
    configuration of security. Simplicity is
    important, since I want to be able to help set it up
    for the friend, and forget it.
    ?? That doesn't make any sense - I think you're missing something fundemental here. The extra ethernet ports are on the LAN side of the secure connection. The firewall in the router isolates the internal, LAN network (wireless + ethernet) from the external WAN (aka the big bad internet). Whether or not you have a switch attached to one of the LAN ports makes no difference, security-wise - you are in control of the devices connected to the LAN side of the router. WEP/WPA/WPA2 security controls who is able to connect to the wireless LAN.
    From a security standpoint, there is ABSOLUTELY no difference between buying a router with eight lan ports and buying a router with four lan ports plus plugging in a five-port switch to one of the lan ports. It's exactly the same thing.
    What you don't control is the WAN side of things - the internet itself. You certainly wouldn't want to connect the switch to the WAN port on the router, at least not unless you wanted to run, say, a web server that is exposed to the internet itself. This wouldn't be a good idea in any case - there are better ways to set this up as well (either by setting up a DMZ, or by setting up port forwards)
    There is absolutely no reason why you would want or need two routers for this setup - this is only an issue for extremely large networks.
    The WRT54G has 1 WAN port and four LAN ports. You can have four hardwired devices (computers, printers, switches, etc) on these LAN ports - they are protected from the internet by the firewall in the router. You can also have any number of wireless devices on this same router; these, as well, are on the LAN side of the router, and are therefore protected.
    Adding a switch to the LAN side of the router has absolutely no impact on security. No additional routers would be required.

  • What ports are needed to fully utilize Apple TV

    The ports that i know of so far that need to be enabled are below, does anyone know of any other ports that need to be enabled for the Apple TV to fully be utilized (Airplay Mirroring, home sharing, etc.) Thanks for any and all assistance!!!
    80 - TCP (HTTP)
    123 - TCP/UDP (Time Server)
    443 - TCP (https)
    554 - TCP/UDP (rtsp)
    3689 - TCP (daap)
    5353 - UDP (mdns)

    There are hardware converters that will convert HDMI to various other types of output, however there are some issues with doing so that you should be aware of.
    HDCP
    HDCP compliant converters will not allow you to watch HDCP protected content such as that from the iTunes Store. Non compliant converters exist but we cannot discuss them under the Terms of Use for these communities.
    Resolution and aspect ratio
    I'm not aware of any converters that will scale the output from the Apple TV, any TV or projector which is used will need to be widescreen and support resolutions of 720p (if you are using the Apple TV 2)

  • Which ports and ACL ( servers) need to be opened for Jabber Video

    Hi All,
    We are Cisco partners ( ODC at Aricent New Delhi India)  working for multiple Cisco projects.
    We want to use Jabber Video for communication but as partners ACL ( Server/ports ) need to be opened to access the Jabber video servers.
    Can somebody list me all the Jabber Server/Ports to which Jabber client need access to.
    Can somebody please respond asap as we have opened an EXAM case for opening the ACL and need the list asap.
    Thanks
    Saurabh    

    Thanks Hoan for the quick reply it answers part of my question.
    I also want to know for succeessful video calls which all servers i need access to for eg first it tries on
    https://sjc1-movi-pr-bootproxy-vip.ciscojabbervideo.com/endpoint/configuration
    then it goes to another server's for logging in etc.
    I  want to know the list of all servers so that ACL's can be opened for them.
    Thanks
    SAurabh    

  • What ports need to be opened from apple's firewall?

    I googled that qmaster uses port 10012 tcp&udp, but what ports need to be open for Qadministrator and Batch Monitor?
    They didn't seem to work just with 10012.
    Is there any documents about this from apple?
    Idea of just leaving firewall off sounds like Microsoft in te 90s'.
    And even they have made an interactive firewall that asks you to open a port when some application tries to use it.
    Well, these fcp applications are sooo PRO...

    On the Qmaster system prefs pane, turn on the "Show Qmaster status in menu bar" option in the advanced tab.
    Then click the Qmaster icon on the menu bar, and it will show you all active Qmaster services, and their TCP port. You would need that port open. You need to do this on every computer on the cluster.
    In your setup, are all the computers on the same subnet? Although you may be on a large network, you can rope off your systems into their own sub network, with a master firewall and avoid this type of problem. Each computer will have a different port, and that port will change every single time you start and stop the service. The TCP port will fall between 40000 and 65536 (the highest port ranges).
    So, again I recommend protecting the network which will protect all the systems universally. But try setting the TCP ports listed on all the service nodes, and remember that those will change whenever you start and stop the service. (I'm not sure if the port will change after a reboot as well.)
    Good luck

  • What ports need to be open in order to sign in with my Adobe ID?

    I keep getting an error when attempting to log in to activate Photoshop CS6 Beta.  The error says, "Please connect to the internet and retry".  I suspect my corporate firewall is to blame, but I need to know what ports I need opened in order to make my request.

    All Experiencing this issue. Please try these steps.
    Let's see what we can see here:
    1. Try going into a web browser and connecting to both of these addresses:
    https://www.adobe.com/
    https://www.acrobat.com/
    Let us know if you can get to those ok! Testing firewall functionality with Adobe.com addresses.
    After that, please let us know the results of clicking these links in succession
    2. Try going into a web browser and connecting first to
    https://ims-na1.adobelogin.com/
    and secondly to:
    https://ims-na1.adobelogin.com/status
    Let us know what you see, or if you get errors.
    It would be nice to have all responses show up here:
    http://forums.adobe.com/message/4285499#4285499
    Thanks!
    Pete

Maybe you are looking for

  • Project Pro 2013 and syncing with SharePoint Online 2013 (Office 365)

    Good day, I am experiencing some challenges with a Project Pro master project file and syncing to SharePoint 2013 (Office 365). What works Individual projects can be synced to SharePoint without issue. Once synced, the site start page presents the Pr

  • How do i register a second hand device to my apple id if it was previously registered on another person's apple id

    last year i bought a macbook pro 17 inch from someone who was't using it.  now, i was trying to register it on my support profile and when i enter the serial number i get the message that it has been associated with another apple id.  how can i get t

  • Problem using List of Lists in loop

    I'm working on a test program that will pull in two text files and return a list of the words that are common among in each. I'm running into a logistical problem when trying to add elements of a list to a list of lists, and then clear the primary li

  • "/" date seperator is now a 2

    There was a previous thread concerning this but it was archived and I couldn't add to it. I have an eMac running 10.4.9. FIrst noticed in Quicken but later found in other places, the slash "/" in a date only works if you put a 2 in its place. I go to

  • PB won't boot from one specific battery

    Does anyone know why a fully charged battery would not have enough juice to boot a Powerbook? I have a third party battery (Hi Capacity 4400 mAh) that will run fine once I boot from an ac adapter but I can't boot from this battery. I've tried it in d