Load repository without (TCP/IP) port binding?

Hello all,
According to the MDM100 course, it is possible to load repositories without port binding (for port flip-over). But how do I do this?
When I try to erase the port number of the (unloaded) repository, a message informs me that a port number between 2000 and 9999 is required.
Is this option gone in SP05?
Kind regards,
Dennis klemann

Hi Charan,
You're right for typical use, but I'm working on a high availability scenario. Basically, it should be possible to load a slave repository without port binding. In case the master repository fails, the slave can immediately take over (by assigning the port of the master), at least in read-only mode - but better than nothing and external applications don't have to be reconfigured.
When the master repository is up again, it can take over the port.
For bigger installations, a clustering system is probably better suited, though...
Kind regards,
Dennis

Similar Messages

  • HT1338 I have macbook without a firewire port, I have usb 2.0 port, now my os is not working I can not get through apple logo loading , I can not enter safe mode, I can only enter one user mode, how can I backup my data, I have very important data in my h

    I have macbook without a firewire port, I have usb 2.0 port, now my os is not working I can not get through apple logo loading , I can not enter safe mode, I can only enter one user mode, how can I backup my data, I have very important data in my hdd

    Here is what worked for me:
      My usb hub, being usb2, was too fast. I moved the wire to a usb port directory on my pc. That is a usb1 port which is slow enough to run your snyc.

  • SAP MDM Console not allowing to add new fields or load repository

    Hi all,
    We are in SAP MDM 7.1 SP06. I do have access to create table, fields, ports etc., And I also have access to load and unload repository.
    But when I login to SAP MDM Console and repository, options to load repository --> immediate and update indices are disabled. This is happening for Add/ Delete Table/Fields/Port etc.,
    However, if I login to repository using MDM console in another laptop or system using the same userid, I am able to perform all the operations mentioned above.
    Can you please help me with any suggestions to fix this. I do not want to reimage my laptop now inorder to fix this.
    I tried to uninstall and install mdm console again but in vain.
    Thanks,
    Rajesh

    Hi Rajesh,
    In the Main Menu you have a lock sign,click on that and unlock the view.
    This should solve the problem.
    Thanks,
    Ravi

  • How to Format DataTable Column after load Datatable without extra loop ??

    How to Format Column after load Datatable without extra loop ??
    I dont want to do extra logic which can cause performance thing.
    I have datatable which get fill from Dataset after database query, now i need to format column as decimal but without extra logic.
    I was thinking to create clone and than Import row loop but it ll kill performance, its WPF application.
    Thanks
    Jumpingboy

    You cannot do any custom things at all without doing some "extra logic". Formatting a number as decimal is certainly not a performance killer in any way whatsoever though.
    If you are displaying the contents of the DataTable in a DataGrid you could specify a StringFormat in the XAML:
    <DataGrid x:Name="dg1" AutoGenerateColumns="False">
    <DataGrid.Columns>
    <DataGridTextColumn Header="Number" Binding="{Binding num, StringFormat=N2}"/>
    </DataGrid.Columns>
    </DataGrid>
    Or if you are using auto-generated columns you could handle the AutoGeneratingColumn event:
    public MainWindow() {
    InitializeComponent();
    DataTable table1 = new DataTable();
    table1.Columns.Add(new DataColumn("num")
    DataType = typeof(decimal)
    table1.Rows.Add(1.444444444444);
    table1.Rows.Add(7.444444444444);
    dg1.ItemsSource = table1.DefaultView;
    dg1.AutoGeneratingColumn += dg1_AutoGeneratingColumn;
    void dg1_AutoGeneratingColumn(object sender, DataGridAutoGeneratingColumnEventArgs e) {
    if (e.PropertyName == "num") {
    DataGridTextColumn column = e.Column as DataGridTextColumn;
    column.Binding.StringFormat = "N2";
    <DataGrid x:Name="dg1" />
     Please remember to mark helpful posts as answer and/or helpful.

  • TCP IP port

    hello, i use filemaker pro and... after the installation filemaker server it's impossible to web publisher why the system find a conflict of a tcp ip port. what's can i do? thanks

    In article <[email protected]>, Tsonandi wrote:
    > Because of the security assessment that was done in my company I was
    > told that port 0 is open and I have to block it.
    >
    I've seen lots of 'security assessments' that are no more than some
    canned program trying a whole bunch of sometimes meaningless tests. If
    a company says that is a problem, they should also be able to explain
    WHY it is a problem. I'm guessing they won't be able to in this case.
    If you load TCPCON on the server and look at tcp connections, I don't
    think you'll see anything listening on port 0 (I never have). Perhaps
    this is some subtle bug with TCPIP that can be exploited, but I've not
    heard of it.
    Craig Johnson
    Novell Support Connection SysOp
    *** For a current patch list, tips, handy files and books on
    BorderManager, go to http://www.craigjconsulting.com ***

  • Which oracle table stores the TCP/IP port for a database sid?

    Hi Experts,
    There is a way to get the host name and host address of a database.
    SQL> select utl_inaddr.get_host_address from dual;
    GET_HOST_ADDRESS
    10.xxx.xxx.xxx
    SQL> select DB_UNIQUE_NAME from v$database;
    DB_UNIQUE_NAME
    mydb
    Is there any similar way to know the TCP/IP port of the database instance?
    Thanks in advance for your help.

    Ora User wrote:
    Hi Experts,
    Thanks for your responses.
    Actually i am trying to create JDBC connection pool in weblogic using the oracle thin driver.
    dbURL = "jdbc:oracle:thin:@"+hostip+":1521:"+dbSID;
    I am getting the hostip and dbsid information from the database table but not getting the port information. Another way is to use the tnsentry usning the tnsnames.ora but it would not be possible in my case as these pools will be created in the weblogic during the deployment and dont have the tns information on the weblogic server.
    Regards
    Ora UserWell, you can't get information from the database without being connected to it. Therefor it is not logical to try to get the database to give you the information needed to connect to it. That's like trying to call someone on the phone to ask them their phone number. The only reliable way to get the info is to ask the listener: lsnrctl status

  • Connecting to labview over TCP/IP port

    I have got an undocumented project to maintain, it has a Java UI code, which connects with some component of LABVIEW over
    TCP/IP Port = 1234
    and over this port it sends commands for clear, get, set
    I need links for understanding the component from LABVIEW which is been accessed over port 1234
    I have installed LABVIEW Run time 2013, and do not know which PROCESS the Java code is trying to connect over TCP/IP, and I do not see any of the RT processes binding to port 1234.
    Any pointers/links would certainly help me!
    Thanks,
    -Vikrant

    Can you define what you mean by "component of LabVIEW"?
    The LabVIEW runtime engine is just a required component to run any custom build LabVIEW executable or dll. So, what is it?
    You also mention RT processes. Does this run on an RT system? What is running where? If you are connecting to a remove LabVIEW RT system that runs a service on port 1234, you don't need LabVIEW or a run time engine at all on the local side.
    At this time we don't have any useful information from you. Please be significantly more detailed! Thanks.
    LabVIEW Champion . Do more with less code and in less time .

  • Healthservice.exe was flooding all TCP "ephemeral ports" from 49152 to 65535

    Issue :
    DCOM errors(Event 10009) causing in backup failures.
    Investigation : Healthservice.exe
    was flooding all TCP “ephemeral ports” from 49152 to 65535, generating a TCP/IP port exhaustion, while trying to login into the SQL Database. After I disabled the System
    Center Management service, the backsups complete without any issue.
    Background : Server hosts Sharepoint SQL databases. SCOM Agent 2007 R2 with CU4 is installed.
    Thanks, Harry :-)

    Hi,
    May I know if there was any changes before the issue occurred, such as MP imported?
    Regarding the error, please check it referring to the following post:
    HP Storage MP v 2.0: DCOM EventID 10009 every 5 seconds in the System Log of the RMS
    http://thoughtsonopsmgr.blogspot.com/2012/05/hp-storage-mp-v-20-dcom-eventid-10009.html
    Meanwhile, if the issue occurs in Windows 7 or Windows Server 2008 R2, please also try the following:
    A hotfix is available to enable the Association Cookie/GUID that is used by RPC over HTTP to also be used at the RPC layer in Windows 7 and in Windows Server 2008 R2
    http://support.microsoft.com/kb/2619234
    Thanks.
    Nicholas Li
    TechNet Community Support

  • Can I use the second TCP / IP port on my cRIO to drive a meter Agilent

    I would like to use the second TCP / IP port of my NI cRIO-9024 to control my Agilent 33210A pulse generator with VISA TCP/IP.
    My Agilent has only TCP/IP and GPIB ports.
    Is it possible?
    cordially

    All the MACs (from my old 2006 PPC Mini) will auto detect ethernet crossover and straight through and rollover cables correctly. They should be Auto-MDIX.
    Having said that, the FW800 (via TB) and Ethernet should be very close in terms of performance.

  • How to free tcp/ip port in Mac OS X v10.6 Snow Leopard

    weeks ago i installed graboid on my imac and it's having trouble downloading files. this is what appears whenever i open graboid:
    +SABnzbd.py 0.4.6 failed to start.+
    +The Graboid Download Manager needs a free tcp/ip port for its internal web service.+
    +Port 11234 on localhost was tried , but it is not available.+
    +Please ensure that your firewall grants access to GraboidDLManager.exe and port 11234 and 119 aren't blocked.+
    +Some other software may be using the port or the download manager is already running.+
    +Please verify that another instance of the download manager is not already running. To do this, press CTRLShiftEsc or open your task manager. Make sure the Processes tab is selected and look for "GraboidDLManager.exe" in the list. If it is there, click on it and then press the "End Process" button. After that, please restart Graboid.+
    +Open a Terminal window and type the line (example):+
    +/Applications/SABnzbd.app/Contents/Resources/SABnzbd.py --server localhost:11235+
    +Open a Terminal window and type the line (example):+
    +/Applications/SABnzbd.app/Contents/Resources/SABnzbd.py --server localhost:11235+
    "/>
    how do i free a port in snow leopard? i already allowed incoming connections from graboid in my security preferences but still it wouldn't work. help please. thanks

    Do you use a router to connect to the internet? If so the port needs to be mapped to your local machine.

  • Which TCP/IP ports do I have to open in order to get communication

    I have an enterprise portal. based on EHP1 and I want to patch it. So I need to connect it to Solution manager.
    However systems are in different networks.
    I wander which TCP/IP ports do I have to open in order to get communication between the two systems.
    I am trying to fid documentation for this case but every documentation asumes systems are in same network

    It's fascinating that that document hasn't been replaced/updated in five years.  Regardless, I've noticed an inconsistency in how they list the needed ports. 
    For example, they mention that port 5nn13 is needed for (I think) the Netweaver Start Service, and mention that the nn should be replaced with the instance number (00-99).  That's one hundred ports (50013, 50113, 50213, ... 59913).  Yet, in the "Range" column, they significantly mis-describe that as 50013-59913, which adds another 9801 completely unnecessary holes to put into a firewall.  (e.g. 50026, 51058, 53077, etc etc)
    They do that for most of the ranges they use that nn shorthand with... 5nn00, 5nn01, 5nn14, 5nn16, etc.
    In short, following the description they give in the "Range" column will have one opening thousands upon thousands of unnecessary holes in the firewall.

  • How to search a folder or a repository without using index service

    Hi,
                   I want to get a count of all feedbacks (stored under /collaboration/feedback) created on a particular date. Since there are many sub folders, I am not able to use ICollection.
    How can I read a folder or a repository without using IndexService.
    Thanks in advance
    Vidya

    Hi SRIVIDHYA RAGHUNATH
    I dont understand how can't use ICollection. What you want can be do it coding. The TREX and the Index search it works just to search on content.
    I think what you have to do if Iterate on a IResource Object  and the see if it is a file or a folder and keepp iterating, then when is a file, convert to an objects where you can get the feedback and count it.
    Hope its help
    Bye.

  • TCP/UDP Ports and site used by FEP to download updates - needed to allow on perimeter firewall

    Can some one point me with information like what TCP/UDP ports are utilized by FEP and what DNS / site Name it uses to download FEP Updates. This is needed to tighten perimeter FireWall policies
    Thank you

    It should be the same as the documentation for all Software Updates:
    https://technet.microsoft.com/en-us/library/bcf8ed65-3bea-4bec-8bc5-22d9e54f5a6d#BKMK_ConfigureFirewalls
    Make sure to expand the "restrict access to specific domains" section to see the update related URLs.

  • In CVI !!!! How to dynamic change BaudRate of RS232 Serial COM Without closing the Port !!!

    Dear all:
    I want to change the buadrate of serial com without closing the serial com, but it failed when I use the function "SetCommConfig(m_hCom, &Com_cfg, Com_cfg_S) " to reset the buadrate ,baudrate is no change when use GetCommConfig to read back the value. 
    Appreciated all of your advice . TKS!
    Code with WINAPI as beloow:
    CreateFile(..) ;
    GetCommState(..);
    dcb.BaudRate= 1000000 ;
    SetCommState(..);
    //......do other things
    //change baudrate to normal without closing port .
    GetCommConfig(m_hCom, &Com_cfg, &Com_cfg_S);
    Com_cfg.wVersion = 0X100;
    Com_cfg.dwProviderSubType = 1;
    Com_cfg.dcb.BaudRate =9600  ;
    Com_cfg.dcb.StopBits =1 ;
    SetCommConfig(m_hCom, &Com_cfg, Com_cfg_S);
    GetCommConfig(m_hCom, &Com_cfg, &Com_cfg_S);   
    Solved!
    Go to Solution.

    This topic has been discussed some years ago: see here. Please note that even if I made that sample program which changes the baud rate without closing the port, I never used it in a real situation: you'll need to made your tests and check if this solution can satisfy your needs in the short and long term.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • DirectAccess - TCP open port not reachable

    Hello,
    I did a little experiment with my DirectAccess connectivity.
    I have a laptop with DirectAccess connectivity enabled with my domain username.
    I logged in to my laptop with my local administrator account. Thus, DirectAccess mounts the IPSec ESP tunnel infrastructure and it is possible to querry DNS requests to my Intranet (even if I'm not authenticated with my domain account).
    I realize I was able to netcat to the web servers (and more generally, to use netcat to connect to any TCP opened ports on the intranet). Here there are two things I do not understand.
    - I know there are two DA servers in a DMZ. I guess the fact I am able to netcat where I want on the Intranet is due to a lack of firewalling. But is it, or is it just a consequence of the way DA works?
    - Then, when seeing I could netcat to open ports, I tried to connect to the web server with my browser, but the connection timeout. I thought it was strange. I should mention that when querrying the web server with a GET request in netcat, I only receives
    HTTP headers qith a body length of 0. However, I do not understand why the browser querry timeout, and not the netcat one.
    Thank you!

    Hi
    When you log on your laptop with your local administrator account, this account cannot be used for the user IPSEC tunnel. So you only have the IPSEC infrastructure tunnel established by your laptop. With this tunnel, you have access to all ressources declared
    as allowed in the infrastructure tunnel.
    BenoitS - Simple by Design http://danstoncloud.com/blogs/simplebydesign/default.aspx

Maybe you are looking for

  • Error while creating Classic Application

    Hi All, While creating classic application through Application wizard i am facing a error "An error occured while processing this page. Please check the logs." I am getting this error when i click 'Finish' on last page. Both the Oracle and Essbase Co

  • Error re-starting WLS server

    Hi, I was trying to configure the Apps adapter on WLS (10.3.4) following Metalink Note: 974949.1. I completed all the steps for WLS server, but when I try to re-start the server, i get the following error and the server fails to start: ####<May 13, 2

  • How to create a tv-shaped frame in Photoshop?

    I'm trying to create a frame for a photo that has the shape of an old-style TV screen: square, with rounded corners, all four sides bulging out slightly. I've figured out how to create a rectangle with rounded corners, but I can't figure out the bulg

  • BT True or False

    Just received the phone call re the upgrade So is the quote below true.? "We've listened to your feedback and BT Vision is getting a new look with lots of new features. It'll be easier for you to find what you want to watch, when you want to watch it

  • Changing date & time could cause the expiration on rented movie...

    well, it was actually happened to me. at that time I didn't believe it. I posted this problem for finding some answers. but nobody hasn't have that yet. here is the question. after starting movie on your mac or PC, transfer it to touch. at that time