How can i find SDM port , Message server port, Message server name?

Hi All,
   I am tring to deploy a ear file from NWDS.
I am trying to congigure through
  Windows>Preferences>SAP J2EE engine -- Remote.
I have these questions.
1. How can i find Message server Host?
2. How can i find Message server Port?
3. How can i find SDM port?
4. What is the difference betweent the Message server port and SDM port? Both are same or can be different?
5. What are the ways to deploy a ear file on remote J2EE engine ?
6.Can I run SDM from a remote mechine and connect to the server?
7. When i am trying to deploy a ear file i am getting
  "Cannot determine sdm host (is empty)" what is the possible reason.
(Here i used information from /usr/sap/GXI/DVEBMGS00/j2ee/cluster/instance.properties for server host and port number)
Thank you
Ganges Leaves

Hi Ganges~
Please check this link~
Deployment Problem
Could not start SDM Server
SDM setting the target system for j2ee engine
"No route to host" - SDM
SDM Error
Can not deploy. sdm host is empty
Hope this helps,
regards,
moorthy

Similar Messages

  • How can i find an excel file deleted from the server

    In our office we all have access to the main server. Recently a document that we need was deleted from the server. It's not in the trash. Can and how would we be able to find and recover this deleted document? Specifically I am looking for an excel document, and I already checked the recent docs on excel.
    thanks!

    Have the admin for the server restore the file from the backup

  • How can I find a post I made esterday

    How can I find a post I made yesterday

    Click on your name above to go to your Profile, then click on Activity. You should see your recent posts there. Click on the title of the Post to go directly to it.
    Cheers,
    GB

  • I received the error (in iCal on my iMac): "The server responded with an error". The error message is very large, and if there is a way to acknowledge and close it I can't find it. Because this error message is open, I can't do anything in iCal. Any sugge

    I received the error (in iCal on my iMac): "The server responded with an error". The error message is very large, and if there is a way to acknowledge and close it I can't find it. Because this error message is open, I can't do anything in iCal. Any suggestions on how I could kill this error message? Thanks.
    iMac, Mac OS X (10.7.2)
    Basically i tried to enter too much information into my calendar and it has crashed  now i can not get rid of the error message or use the calendar  can anyone help please

    did you find ou how to get rid of it i can't

  • Windows Internal Database on Windows Server 2012 - How can I find out what role or feature is using it?

    We have setup many roles and features and apparently one of them is using the Windows Internal Database (WID). We have had some events logged for WID and need to troubleshoot them. But we are not sure which role/feature is using it. How can I find
    this out?

    Hi,
    Several components of Windows Server 2008 and 2012 use Windows Internal Database for their data storage: Active Directory Rights Management Services, Windows System Resource Manager, UDDI Services, Active Directory Federation Services 2.0, IPAM and Windows
    SharePoint Services.
    Which role did you setup or what is the error message did you received?
    Regards.
    Vivian Wang

  • How can I find out the mail server from email address?

    Hi:
    How can I find out the mail server from email address?
    for example: If I know the email address is [email protected],
    how to find the pop3 and smtp mail server?
    THANK YOU

    You can't tell by the email address since you can pretty much put whatever you want in there (especially if the SMTP server is not filtering anything).
    The header may be able to tell you something. There is a Received header value which looks like it has the routing information although I am not sure if this is a complete trace or just the last hop the message took.
    Sean

  • How can we find out which application is runing UDP port 69?

    Whenever I run Cisco Network Assistant on my Windows 7 computer, I receive "The embedded TFTP server cannot start".
     netstat -an|more shows “udp 0 0 0.0.0.0:69 ...” How can we find out which application is runing UDP port 69?
    Bob Lin, MCSE & CNE Networking, Internet, Routing, VPN Networking, Internet, Routing, VPN Troubleshooting on http://www.ChicagoTech.net How to Install and Configure Windows, VMware, Virtualization and Cisco on http://www.HowToNetworking.com

    These ones may help.
    Have you ever wanted to see which Windows
    process sends a certain packet out to network?
    Process
    Monitor v3.1
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • How can we find the most usage and lowest usage of table in Sql Server by T-SQL

    how can we find the most usage and lowest usage of table in Sql Server by T-SQL
    The table has time stamp column
    StartedOn datetime
    EndedOn datetime

    The Below query has been used , but the textdata column doesnot include the name of the table ServiceLog.
    SELECT
    FROM
    databasename,
    duration
    fn_trace_gettable('F:\Program
    Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Log\log_148.trc',
    default)
    WHERE
    DATABASENAME='ZTCFUTURE'
    AND TEXTDATA
    IS
    NOT
    NULL
    --AND TEXTDATA LIKE 'SERVICE%'
    order
    by cpu
    desc; 

  • How can I find what scom group a specific server belongs to using powershell?

    Environment:  SCOM 2007 r2
    Server in question:  Running Windows 2003 Std. (yes I know this sounds crazy)
    Why do I need this:  I noticed at the console level we have had server unexpected shutdown events which are not generating email notifications. 
    Source shows: Windows 2003 Server Standard Edition
    Alert Rule:  Windows Shutdown Unexpectedly
    From what I see these are all windows 2003 server Std edition systems.  I did a track and trace using our exchange tracking system which confirmed the alerts were not being emailed. Not sure if there is a better approach for this, but not being a sql
    expert (however I do have someone I can leverage) I am trying to see if I can somehow extract this information using powershell.
    Secondary general question:  How can I find out the current size of our scom 2007 database and the number of objkects\servers being monitored? This is prep work for a migration over to 2012.
    Thanks in advance for the help!

    1. what scom group a specific server belongs to
    function Get-GroupNames {
     [cmdletbinding()]
     param($computerFQDN)
     $containmentRel = Get-RelationshipClass -name:’Microsoft.SystemCenter.InstanceGroupContainsEntities’
    $computerClass = Get-MonitoringClass -name:”Microsoft.Windows.Computer”
    $criteria = [string]::Format(“PrincipalName = ‘{0}’”,$computerFQDN)
     try {
     $computer = Get-MonitoringObject -monitoringClass:$computerClass -criteria:$criteria
     $relatedObjects = $computer.GetMonitoringRelationshipObjectsWhereTarget($containmentRel,[Microsoft.EnterpriseManagement.Configuration.DerivedClassTraversalDepth]::Recursive,[Microsoft.EnterpriseManagement.Common.TraversalDepth]::Recursive)
     catch {
     $_
     write-host “An error occurred while querying groups of $computerFQDN”
    foreach($group in $relatedObjects)
     [array]$Groups = $groups + $group.SourceMonitoringObject.DisplayName
     if($groups) {
     return $groups
     } else {
     write-host “No groups available for $computerFQDN”
    Usage:
     Get-GroupName -ComputerFQDN myserver1
    for detail, pls. refer to
    http://techibee.com/powershell/powershell-get-scom-groups-of-a-computer-account/1129
    Roger

  • I keep getting messages that my storage is full and I should go to settings to fix it. I do not have alot of music or photos on the phone how can I find out wha tth problem is?

    My phone is giving me messages that I have no more storage although it should have 16GB capacity. I have a modest amount of music and 40 photos. How can I find out where all the storage has gone to?

    i think its in general settings and storage. this will list your apps and how much room everything is taking.  do you have a lot of apps downloaded?

  • How can i find out how much bandwidth my server has?

    I have a mac pro running os x leopard server and im using this for my companies server. How can i find put how much bandwidth the server has?
    Thanks Sam x

    What you are asking really doesnt mean much. Well, it actually means too many different things:
    either Available network bandwidth: The internet, or local area connection (where are your clients?)
    or Available network bandwidth: How much data will your ISP allow you to transmit as part of your plan?
    Can you be more specific?

  • How can I find the detailed package message in jdev9i

    Usually in jdev9i we need the detailed interface,class message in package ,espically when it has something to do with oracle specialization. how can i find the exact message I need?

    sung:
    I mean the java doc. Langyun:
    Follow these steps:
    1. In JDev IDE's editor window, either type in or find the class whose JavaDoc you want to see. For example, you can go to the towards the top of a .java file and type "import oracle.jbo.Row;".
    2. Then, click on that String ("Row") and right-mouse click. You should see a menu item named "Browse JavaDoc". Select that menu.
    From there, you can go to the package level JavaDoc.
    Thanks.
    Sung

  • HT1338 HOW CAN I FIND OUT WHICH SERVER MY MAC IS USING?

    HOW CAN I FIND OUT WHICH SERVER MY MAC IS USING, KEEP GETTING MICROSOFT SQL SERVER ERRORS
    WHEN TYPING IN ADDRESS'S?

    If your computer is tied to a network, then there is a way to check. Go to System Preferences, and click Accounts. unlock Admin
    then you can click Login Options.
    under that, Network Account Server. This should show you what server your computer is tied to. If you aren't in the tech department, you could try asking them.

  • How can u find SRM error message texts?

    hi friends
    How can u find SRM error message texts?
    thanks
    regards
    chinna

    Hi,
    There are several ways.
    1. Go to BBP_PD and open the document. Select the link "Check again" in the bottom area.
    2. Go to SE17 and serch it from table T100.
    3. Go to SE91.
    Regards,
    Masa

  • How can I find out "Global Access Protocol Pass phrase" for OAM server ?

    I'm configuraing Access gate using configureAccessGate command to integrate OIF with OAM.
    The OAM is working in "simple" transport mode. since it was not me installed OAM, I do not know what "Global Access Protocol Pass phrase" is.
    I need this to answer question to configure access gate. How can I find out the "Global Access Protocol Pass phrase" set for OAM server?
    Thanks

    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

Maybe you are looking for

  • Multiple ipods with 1 itunes account

    I have a 30gb iPod that I have for a couple years and use it with itunes. I just purchased a iPod shuffle and want to use the same itunes account to put the same music on my iPod shuffle. Can i do this? When I connect the iPod shuffle, it says it nee

  • I need a simple counter

    Hi everybody, I need a counter so that when ever i press the submit button continuously it should display the number starting from 1, can anybody help me with the simple code

  • Non aggregated Value into report

    Using Hyperion Interactive Reporting Studio 9.3.1, I created computed column that gives me a results that I'm able to put into a report. My formula in the footer of any Group is Tables("Results_Union").Columns("Computed").Sum(currBreak), I want the s

  • Trying to update my ipod with videos/dvds

    I have been on the internet looking for ways to put my dvds onto my ipod video. I have managed to convert my a movie to mp4 format, and put it on my itunes, where it successfully plays. However when I try to get the movie from itunes to my ipod video

  • Regarding Oracle SOA suite patch

    Hi All, From the following URL I find that :- http://www.oracle.com/technology/software/products/ias/htdocs/101310.html SOA suite patch set 10.1.3.4 has been released. However not sure whether this patch set can be applied on top of 10.1.3.1 version