VMware 5.0 host not seeing EMC VNX5300 through UCS

I cannot seem to get VMware ESX 5.0 host to see EMC VNX5300 through UCS FC setup.  It does see the EMC storage through iSCSI.
This is our setup
2 - WS-C3750X-24T-E
2 - UCS 6248 UP
2 - Cisco UCS Chassis
2 - EMC VNX5300 FC - Connects directly to Fabric Interconnect and configured as FC Storage Port
2 - EMC VNX5300 iSCSI - Connects directly to Fabric Interconnect and configured as NAS Port
When I do 'show flogi database' on the Fabric Interconnect, I see
INTERACE
VSAN
FCID
PORT NAME
NODE NAME
fc1/31
2231
0x970001
50:06:01:62:46:e0:13:42
50:06:01:60:c6:e0:13:42
fc1/32
2231
0x970101
50:06:01:6b:46:e0:13:42
50:06:01:60:c6:e0:13:42
vfc689
2231
0xea0002
20:00:00:25:b5:00:00:5f
20:00:00:25:b5:00:00:4f
vfc1133
2231
0xea0000
20:00:00:25:b5:00:00:2f
20:00:00:25:b5:00:00:7f
According to this, I seems to see the initators on the EMC.  Why is it not seeing the EMC storage group?
Is there a documentation on how to hooking this up correctly?
Jimmy

Hi Jimmy,
If you are using UCS version 2.1, it could be that you missed to do the zoning in UCS for the FC direct attached storage. Please enable zoning in the required VSAN and follow steps in
http://www.cisco.com/en/US/docs/unified_computing/ucs/sw/gui/config/guide/2.1/b_UCSM_GUI_Configuration_Guide_2_1_chapter_011011.html to configure the zoning.
If your UCS version is prior to 2.1, you need to have a upstream SAN switch which is connected to FI and pushing the zone database to the FI.
Hope this helps.
-Ganesh

Similar Messages

  • R12 on VMWare - errors when HOST not connected to internet

    Hi all
    I've got a strange problem. I'm running R12.1.1 on OEL 5u4 on VMWare on my latop. Most of the time this is fine, but I recently moved to a new client site where I have no internet access.
    When trying to start the Apps tier, adoacorectl, adformsctl and adoafmctl.sh all fail with the following error:
    ERROR : Timed out (100000): Interrupted Exception
    If I then connect my laptop to a network, everything starts correctly.
    Does anyone have any idea what could be causing this?
    VMWare is set to use NAT.

    Hi;
    ifconfig shows the ip address as 192.168.133.130
    /etc/hosts file has only the following:
    127.0.0.1 oracle12.oracle.com oracle12 localhost.localdomain localhost
    ::1 localhost6.localdomain6 localhost6Please take backup of hosts file by using cp command, then open it vi editor then
    127.0.0.1 localhost.localdomain localhost
    192.168.133.130 oracle12.oracle.com oracle12
    save hosts file then please follow:
    Changing IP Address after installing R12.1.1
    And open services and test again
    Regard
    Helios

  • VMWare Workstation 8 did not see any USB devices, only BT dongle

    No errors reported, just no devices available. With 7.1.4 there was no problems, Virtualbox works well too.
    Is it my installation's personal bug or known issue?
    System is Arch x86_64 on Asus Rampage II motherboard (Intel X58/ICH10R).
    Last edited by pekmop1024 (2011-09-26 10:46:31)

    You probably had some problem with your installation, I have this:
    $ ls -l /etc/rc.d/vmware*
    lrwxrwxrwx 1 root root 18 Sep 18 22:09 /etc/rc.d/vmware -> /etc/init.d/vmware
    -rwxr-xr-x 1 root root 2653 Sep 18 22:09 /etc/rc.d/vmware-USBArbitrator
    lrwxrwxrwx 1 root root 37 Sep 18 22:09 /etc/rc.d/vmware-workstation-server -> /etc/init.d/vmware-workstation-server
    But if you want, were is my [vmware-USBArbitrator]:
    #!/usr/bin/env bash
    # Copyright 1998-2010 VMware, Inc. All rights reserved.
    # This script manages the VMware USB Arbitrator service
    # VMWARE_INIT_INFO
    # Load bootstrapper info
    . /etc/vmware/bootstrap
    # This defines echo_success() and echo_failure() on RedHat
    if [ -r "$INITSCRIPTDIR"'/functions' ]; then
    . "$INITSCRIPTDIR"'/functions'
    fi
    vmware_failed() {
    if [ "`type -t 'echo_failure' 2>/dev/null`" = 'function' ]; then
    echo_failure
    else
    echo -n "$rc_failed"
    fi
    vmware_success() {
    if [ "`type -t 'echo_success' 2>/dev/null`" = 'function' ]; then
    echo_success
    else
    echo -n "$rc_done"
    fi
    # Execute a macro
    vmware_exec() {
    local msg="$1" # IN
    local func="$2" # IN
    shift 2
    # On Caldera 2.2, SIGHUP is sent to all our children when this script exits
    # I wanted to use shopt -u huponexit instead but their bash version
    # 1.14.7(1) is too old
    # Ksh does not recognize the SIG prefix in front of a signal name
    if [ "$VMWARE_DEBUG" = 'yes' ]; then
    (trap '' HUP; "$func" "$@")
    else
    (trap '' HUP; "$func" "$@") >/dev/null 2>&1
    fi
    if [ "$?" -gt 0 ]; then
    vmware_failed
    echo
    return 1
    fi
    vmware_success
    echo
    return 0
    # Start the virtual machine USB Arbitrator service
    vmwareStartUSBArbitrator() {
    # The executable checks for already running instances, so it
    # is safe to just run it.
    "$BINDIR"/vmware-usbarbitrator
    # Stop the virtual machine USB Arbitrator service
    vmwareStopUSBArbitrator() {
    # Find the running process
    # grep instead of pgrep... Turns out to be more reliable. pgrep
    # would return extranneous results.
    pid=`pgrep -f "$BINDIR"/vmware-usbarbitrator`
    # If it is not running
    if [ $? -eq 0 ]; then
    # PID was found, stop it.
    kill $pid
    return 0
    else
    # No process found.
    return 0
    fi
    vmwareService() {
    case "$1" in
    start)
    vmware_exec 'VMware USB Arbitrator' vmwareStartUSBArbitrator
    exitcode=$(($exitcode + $?))
    if [ "$exitcode" -gt 0 ]; then
    exit 1
    fi
    stop)
    vmware_exec 'VMware USB Arbitrator' vmwareStopUSBArbitrator
    exitcode=$(($exitcode + $?))
    if [ "$exitcode" -gt 0 ]; then
    exit 1
    fi
    restart)
    "$SCRIPTNAME" stop && "$SCRIPTNAME" start
    echo "Usage: $BASENAME {start|stop|restart}"
    exit 1
    esac
    SCRIPTNAME="$0"
    BASENAME=`basename "$SCRIPTNAME"`
    # Check permissions
    if [ "`id -ur`" != '0' ]; then
    echo 'Error: you must be root.'
    echo
    exit 1
    fi
    vmwareService "$1"
    exit 0
    Copy it to your system and test, probably will solve your problem.

  • I can't see pdf files through safari

    i can not see pdf files through safari

    I had the same problem after making Adobe the reader for pdf. Fixed it by
    1) removing the Adobe plug-in from the Internet Plug-Ins file in the Library.
    2) restarting Safari.
    Back to normal.
    Bob

  • Windows 8.1 will not see the Printers host name or ip address

    I have tried installing an OfficeJet Pro 8615 on two different Windows 8.1 computers (wireless)  but did not connect.  Pirnter is connected to network wireless (192.168.111.153). Router is 192.168.111.1. The printer was installed from a Vista (wired) desktop and it connected and printed fine. Both 8.1s can ping router but not the printer. Host name install does not work either. Router is a new Cisco RV180w. It works fine everywhere else. Printer wireless power is 5 of 6. Have looked for shared devices setting on Win 8.1 but have not found it yet. Win 8.1 computers are both 64bit and the install download showed 64x. I am running out of things to check. Can anyone help me? Win 8.1 computers sees other devices on the network but not the printer. Print & Scan Doctor does not see the printer either.
    Now I am having the same problem with a Win7 (64) install. It can't see it either. Once I plugged this one into the network then it saw the printer and installed and printed. But if I unpluged the network wire and made it wireless then it stopped seeing the printer. So I am having some  kind of a wireless issue.

    Hi @EdEdata ,
    Thank you for visiting the HP Support Forums and Welcome. Thanks for all the details of what you have done and the restuls. (Very helpful) I have read about your HP OfficeJet Pro 8615 Printer not connecting wireless and is not seen by the Print and Scan Dr. Here is a document on printer does not keep a wireless connection.  Try assigning a Static IP address. You might have to change the channel.
    Make sure your computer is connected to 802.11b/g/n wireless router over a 2.4 GHz connection. NOTE: HP Printers are currently not compatible with 802.11n 5.0 GHz networks. This HP document here, explains about a printer wireless.
    If this does not help you, please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link to get the support number for your region.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • Pre 2010 Macs not seeing netboot images hosted on 10.6.7 server

    I'm having an interesting issue where any pre-2010 Mac will not see available images hosted on OS 10.6.7 Server. Anything later than mid-2010 has no issues and sees all of the available boot images when option booting. Does anyone have any insight as to why this might be happening. I'm still searching but not having any luck.

    Just a shot in the dark but is it possible you have enabled some kind of filtering  under Netboot/Settings/Filters? My box to enable is unchecked.
    Thanks

  • Host not responding ESXi 5.5 and HA messages

    hi guys
    Lately I've been troubleshooting an issue with ping lost for my ESXi Servers. Network people tested all and they say is not networking.
    These two servers are in a blade center - ibm - and they HS23, having Emulex and Broadcom NICs (Emulex OneConnect 10Gb NIC (be3), Broadcom NetXtreme II BCM5709S 1000Base-SX). Servers firmware is up to date and NICs and driver for NICs were updated yesterday and the issue is the same... continue ping lost
    and today and I found repetitive "host not responding messages" like every 2 - 3 hours
    and a lot of these too HA related as you can see below?
    Any idea what logs do I have to check? for the ping lost and HA issue?
    thanks a lot

    Note: Discussion successfully moved from VMware ESXi 5 to Availability: HA & FT

  • Nexus 1010 VSM does not see VEM (DPA service not running....)

    Hi all,
    I have the attached topology. All the conf outputs and device details are attached.  The problem is "vemcmd show card info" output shows that VEM correctly receives the control, packet VLAN information from the VSM. However I couldnt make vempda service to run. I got the same output all the sayins that : "VEM Agent (vemdpa) is not running".  I checked the control and packet vlan end to end connectivity by creating VMs and etc. there werent any problems....One thing is that, VEM AIPC MAC never showed up in the upstream switch which is connected to ESX host.
    I would be glad if someone can help me out with any configuration errors or anything like that...
    [root@sahaesx1 ~]# vem status -v
    Package vssnet-esx5.5.0-00000-release
    Version 4.0.4.1.3.0.0-2.0.21
    Build 21
    Date Sat May 22 16:25:36 PDT 2010
    Number of PassThru NICs are 0
    VEM modules are loaded
    Switch Name      Num Ports   Used Ports  Configured Ports  MTU     Uplinks  
    vSwitch0         128         4           128               1500    vmnic0   
    DVS Name         Num Ports   Used Ports  Configured Ports  MTU     Uplinks  
    vsm1yeni         256         51          256               1500    vmnic2,vmnic1
    Number of PassThru NICs are 0
    VEM Agent (vemdpa) is not running
    [root@sahaesx1 ~]# vemcmd show version
    VEM Version: 4.0.4.1.3.0.0-2.0.21
    VSM Version: 4.0(4)SV1(3)
    System Version: VMware ESX 4.1.0 Releasebuild-235786
    [root@sahaesx1 ~]#

    Ok. Now VEM and VSM speaks to each other. However I can not see VEM on "show module vem mapping" ? Is there any specific reason to that ?
    [root@iacm-1 tmp]# vem-health check 00:02:3d:70:01:03
    VSM Control MAC address: 00:02:3d:70:01:03
    Control VLAN: 444
    DPA MAC: 00:02:3d:40:02:00
    The VEM-VSM connectivity seems to be fine.
    vsm1yeni# show module uptime
    ------ Module 1 -----
    Module Start Time:   Thu Oct 14 16:49:45 2010
    Up Time:             3 day(s), 23 hour(s), 45 minute(s), 6 second(s)
    vsm1yeni# show module vem mapping
    Mod     Status          UUID                                    License Status
    vsm1yeni# show module vem counters
    Mod InNR OutMI  InMI OutHBeats  InHBeats InAipcMsgs  OutTO OutTOC InsCnt RemCnt
    vsm1yeni#

  • IOS 8.2: Notes.app no longer works with Gmail hosted Notes

    I'm on iOS 8.2, but I haven't tested this for a while so I don't know if it's a new problem.
    BACKGROUND:
    In Settings:Mail, Contacts, Calendars:Accounts you can setup a Gmail account. If you do that you have options to use
    Mail
    Contacts
    Calendars
    Notes
    I use Mail, but in iOS 7 I used to also use Gmail (Google) hosted Notes. The Notes.app would then show a "heading" of Gmail and I could create or view those "notes" (IMAP store).
    PROBLEM
    In 8.2 when I turn Gmail "Notes" on nothing happens in Notes.app. There's no heading for Gmail notes. It simply doesn't work.
    Could someone else test this and let me know if it works for them? If it works for anyone else I'll do more debugging.

    The things that I have tried:
    - Remove exchange account, restart phone, create new exchange account, restart again, open app. Nothing.
    - Created a Gmail account instead of an exchange account (which didn't work previously, due to me not seeing the shared calendar), didn't work.

  • TS1538 itunes does not see any of my devices.

    itunes does not see any of my devices.  It used to. But not any more. Why. They show up in Windows. But not itunes.
    <Edited by Host>

    Try
    iOS: Device not recognized in iTunes for Windows
    I would start with               
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    or               
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    New cable and different USB port?
    Runs this and see if the results help with determine the cause
    iTunes for Windows: Device Sync Tests
    Try on another computer to help determine if computer or iPod problem

  • Corporate Directory - host not found intermitently

    We have a new installation of a CUCM cluster (10.5.2.10000-5).
    The phones are a 7821 and 8851.
    Corporate directory was working fine but all of a sudden it just says Requesting... and then it says Host Not Found.
    Then all of a sudden it will start working on some phones but on others it will still not work.
    If we restart a phone on which it is working at the moment after reboot it doesn't work.
    Does anyone have an idea how to fix this?
    Regards.

    Directories or corporate directories?
    As for the status messages, you can find them from:
    Settings > Status > Status Messages
    I'm suspecting that the issue is with the Trust list:
    Try deleting the Trust list from the IP-Phone by going to:
    Settings (you will see a lock that is locked), unlock it by pressing **#
    Once its unlocked proceed:
    Security Connfiguration  > Trust List > ITL File 
    Once reach this section you will see the ITL File(ITL File, CAPF Server,TVS, TFTP Server)
    to verify if its the same files from you tftp servers(login to cucm) and issue the below command
    show itl
    admin:show itl
    Length of ITL file: 5438
    The ITL File was last modified on Wed Jul 27 10:16:24 EDT 2011
            Parse ITL File
    Version:        1.2
    HeaderLength:   296 (BYTES)
    BYTEPOS TAG             LENGTH  VALUE
    3       SIGNERID        2       110
    4       SIGNERNAME      76      CN=CUCM8-Publisher.bbbburns.lab;
                                    OU=TAC;O=Cisco;L=RTP;ST=North Carolina;C=US
    5       SERIALNUMBER    10      21:00:2D:17:00:00:00:00:00:05
    6       CANAME          15      CN=JASBURNS-AD
    *Signature omitted for brevity*
    The next sections each contain their purpose inside of a special Function parameter. The first function is the System Administrator Security Token. This is the signature of the TFTP public key.
            ITL Record #:1
    BYTEPOS TAG             LENGTH  VALUE
    1       RECORDLENGTH    2       1972
    2       DNSNAME         2
    3       SUBJECTNAME     76      CN=CUCM8-Publisher.bbbburns.lab;
                                    OU=TAC;O=Cisco;L=RTP;ST=North Carolina;C=US
    4       FUNCTION        2       System Administrator Security Token
    5       ISSUERNAME      15      CN=JASBURNS-AD
    6       SERIALNUMBER    10      21:00:2D:17:00:00:00:00:00:05
    7       PUBLICKEY       140
    8       SIGNATURE       256
    9       CERTIFICATE     1442    0E 1E 28 0E 5B 5D CC 7A 20 29 61 F5
                                    8A DE 30 40 51 5B C4 89 (SHA1 Hash HEX)
    This etoken was used to sign the ITL file.
    The next function is CCM+TFTP. This is again the TFTP public key that serves to authenticate and decrypt downloaded TFTP configuration files.
            ITL Record #:2
    BYTEPOS TAG             LENGTH  VALUE
    1       RECORDLENGTH    2       1972
    2       DNSNAME         2
    3       SUBJECTNAME     76      CN=CUCM8-Publisher.bbbburns.lab;
                                    OU=TAC;O=Cisco;L=RTP;ST=North Carolina;C=US
    4       FUNCTION        2       CCM+TFTP
    5       ISSUERNAME      15      CN=JASBURNS-AD
    6       SERIALNUMBER    10      21:00:2D:17:00:00:00:00:00:05
    7       PUBLICKEY       140
    8       SIGNATURE       256
    9       CERTIFICATE     1442    0E 1E 28 0E 5B 5D CC 7A 20 29 61 F5
                                    8A DE 30 40 51 5B C4 89 (SHA1 Hash HEX)
    The next function is TVS. There is an entry for the public key of each TVS server to which the phone connects. This allows the phone to establish a Secure Sockets Layer (SSL) session to the TVS server.
            ITL Record #:3
    BYTEPOS TAG             LENGTH  VALUE
    1       RECORDLENGTH    2       743
    2       DNSNAME         2
    3       SUBJECTNAME     76      CN=CUCM8-Publisher.bbbburns.lab;
                                    OU=TAC;O=Cisco;L=RTP;ST=North Carolina;C=US
    4       FUNCTION        2       TVS
    5       ISSUERNAME      76      CN=CUCM8-Publisher.bbbburns.lab;
                                    OU=TAC;O=Cisco;L=RTP;ST=North Carolina;C=US
    6       SERIALNUMBER    8       2E:3E:1A:7B:DA:A6:4D:84
    7       PUBLICKEY       270
    8       SIGNATURE       256
    11      CERTHASH        20      C7 E1 D9 7A CC B0 2B C2 A8 B2 90 FB
                                    AA FE 66 5B EC 41 42 5D
    12      HASH ALGORITHM  1       SHA-1
            ITL Record #:4
    BYTEPOS TAG             LENGTH  VALUE
    1       RECORDLENGTH    2       455
    2       DNSNAME         2
    3       SUBJECTNAME     61      CN=CAPF-9c4cba7d;
                                    OU=TAC;O=Cisco;L=RTP;ST=North Carolina;C=US
    4       FUNCTION        2       CAPF
    5       ISSUERNAME      61      CN=CAPF-9c4cba7d;
                                    OU=TAC;O=Cisco;L=RTP;ST=North Carolina;C=US
    6       SERIALNUMBER    8       0A:DC:6E:77:42:91:4A:53
    7       PUBLICKEY       140
    8       SIGNATURE       128
    11      CERTHASH        20      C7 3D EA 77 94 5E 06 14 D2 90 B1
                                    A1 43 7B 69 84 1D 2D 85 2E
    12      HASH ALGORITHM  1       SHA-1
    If they dont match, go back to the below steps and erase the ITL File
    Security Configuration  > Trust List > ITL File 
    At this point you will see ITL File, there will be a more button.
    press more and click on erase it will says "earsing CTL and ITL Files" and reboot

  • I imported 635 images into an iPhoto album so that I can share them via a photo-stream. However, iPhoto says there are only 600. When I try to add the missing images it says they are already there. Why can i not see these images in iPhoto?

    I imported 635 images into an iPhoto album so that I can share them via a photo-stream. However, iPhoto says there are only 600. When I try to add the missing images it says they are already there. Why can i not see these images in iPhoto?

    Generally I would not use Facebook for sharing any photos, it compresses the photos substantially, and when you have shadows and dark colours you get visible "bands" where there should be subtle gradients, ie at sunsets and sunrises.
    It sounds like you are using two methods to upload to Facebook:
    1. Sharing from within Aperture, which basically syncs Facebook with your Aperture album, so any changes made at either end gets synced, hence the deletions from Albums, although the original file should still be in your library, just removed rom the album. It is like a playlist in iTunes.
    2. Exporting pics and uploading to Facebook from the browser.
    I am not sure how method 1 gets compressed, but I know that uploading hi-res jpegs to Facebook using method 2 results in poor quality images.
    I wouldn't even bother comparing option 1 or 2, and they will both be poor images once you view them on Facebook, as opposed to viewing uploaded images on proper image sharing / hosting sites.
    Your problem is not with Aperture, it is using Facebook for showing your work.
    If you export pics form Aperture at high res jpegs or TIFFs your images will be fine.
    If you insist to use Facebook as your way to share your work, then your workflow should be this:
    1. Right click images you want to share.
    2. Select Export version.
    3. Export as 100% size and ensure the export settings are set at 100% quality.
    4. Upload this pic into Facebook.
    This will get you the best image size and resolution on Facebook.
    See how you go.

  • Warning host not found in topology

     
    Hi I am new to Lync. After following tutorial to install Lync Server 2013 (front end) on Server 2012 R2, everything worked like charm. Then I decided to enable external access (another Windows 2012 R2) , so I started with Edge installation. Unfortunately
    when I run Setup Lync Components, I get "Warning host not found in topology. All roles will be uninstalled."
    I can find that this error is connected with DNS suffix. 
    I looked which name was not found in the error and it is Hostname: imc-leg.domain.local
    The only difference is that name is written in small letter, when I open to see Computername or run hostaname in cmd I get IMC-LEG. I also added suffix domain.local in the advance options before I started with the configuration. I am also not sure if "-"
    sign is allowed. If not can I just delete edge server from topology, rename the server and recreate the topology or not ?
    My edge server has 2 NICs, 1st is LAN NIC 192.168.10.28 and second is in DMZ 192.168.3.28. We have static IP address.
    LAN NIC has IP, Subnet Mask, DNS (AD)
    DMZ NIC has IP, SNM, DGateway. 
    Both have File and print sharing for microsoft networks disabled ( I read somewhere that it can be disabled _ I would appreciate some opinions)
    From Lync server I can ping FQDN of edge server, also DNS record in AD is created. 
    When I open topology on Lync Server (IMC-LSRV.domain.com), I can see Edge Pools : IMC-LEG.domain.local with internal LAN address (192.168.10.28) next hop is IMC-LSRV.domain.com. External Settings are: Access Edge service is sip.domain.com with DMZ address
    192.168.3.28 also web conferencing and A-v edge service.  Oud static IP appears in NAT-Enables public IP address.
    Please help, I really don't know what to do 

    One more thing just like an info for the people that are trying to install Lync for the first time (like me), once configuration is exported from the FE Server name of the edge server must be in the xml file inside zip folder. Mine wasn't there so this was
    first sign that something was wrong (I think with publishing topology). Now I see that my edge server is listed 
    -<Cluster Fqdn="IMC-LEG.domain.local" RequiresSetup="true" RequiresReplication="true">
    <ClusterId SiteId="1" Number="3"/>
    -<Machine Fqdn="IMC-LEG.domain.local" OrdinalInCluster="1">
    <NetInterface IPAddress="192.168.107.28" InterfaceNumber="1" InterfaceSide="Internal"/>
    <NetInterface IPAddress="192.168.33.28" InterfaceNumber="1" InterfaceSide="External" ConfiguredIPAddress="StaticIP xxxxxx."/>
    </Machine>
    </Cluster>
    </Clusters>
    And I have now one more question. When replication is supposed to happen. I didn't install certificates yet (3rd step) and when I run :
    PS C:\windows\system32> Get-CsManagementStoreReplicationStatus | ft
           UpToDate ReplicaFqdn     LastStatusReport LastUpdateCreation ProductVersion
               True IMC-Lync.dom... 23.04.2014 1... 23.04.2014 1... 5.0.8308.0
              False IMC-LEG.dom....                
          24.04.2014 0...

  • Agent ok but host not available

    Hello All,
    I've reconfigured my agent by following article 413228.1, i.e. clearstate agent, and cleaning up the files before restarting. My agent is now up and running but i do not see the host on which the agent is running. I've tried everything and can only think of uninstalling and reinstalling the agent.
    I can see my databases on that host but i can't not see the host as a target. Has anyone experienced this? In other words, i can't to a refresh host..I can run upload agent fine from the server.
    Thanks.

    Yes host was viewable to OMS..weird thing is that it was known to OMS as a different name. For instance, the hostname is hostA but in OMS, it used to be known as hostB. There was a hosts file entry with hostB= IP address of host A. This was put in place so that the application can work.
    Since then, we've cleaned up the hosts file but the hostB entry remains! Where does OMS get the machine name of the server from? I've looked everywhere in the config files and all have the entry hostA not hostB.

  • Not seeing credit card screen on Order screen in E-Commerce B2B webshop

    Hi Gurus,
         I am new to SAP E-Commerce 5.0 B2B application.  I am trying to see the credit card payment screen while ordering in Order page.  We are not using CRM system, but we are using ECC6.0 SD module.  Could you please guide me how to activate the credit card screen in Order page.  Thank you very much in advance.
    With Regards,
    Sudheer

    Hi Sudheer,
    For activating credit card page you have to configure it in your shop.
    Go to your "http://<host>:<port>/shopadmin/shopadmin/init.do
    Select your shop and go to "Transactions" tab go to bottom there are 2 options
    1) Payments -Check Box
        By Invoice possible
        By Cash on Delivery possible
        By Credit Card possible
    2)Preassignment: Payment  - Radio Button.
       By Invoice *
       By Cash On Delivery *
       By Credit Card *
    Select payment type you want to keep from options 1 you can select only 1 or you can select all three.
    From option 2 you can select only 1 as PReassignment payment.
    Restart the application Shop admin and ISA to make sure that when you access ISA after this change you will see Payment screen. In ISA 5.0 Once you click on Order or Quotation it will take you to the Payment scrren here you have to select "Invoice" or provide credit card information.
    If you have selected only invoice in Shopadmin then you will not see payment screen. From order page it will take you directly to order simulation page. but if you have payment option then you will see Payment Screen with credit card.
    Do not forgot to configure shop in shopadmin to get payment options screen in ISA. You will get it after order page not on the order page.
    If you want to display it on order page then you have to do customization to include payment infpormation or order page.
    I hope this will help you.
    Thanks and Regards.
    eCommerce Developer.

Maybe you are looking for