TMS directory failed in the endpoints of series C after the migration of the device to the virtual computer

Hi all

We have migrated the 12.8 TMS from the device to the TMS 13.0 on the VM platform. There is no matching TMSPE and mainly used for management and directory service.

Once the migration is complete on the platform of the VM, we found that endpoint C-series could not receive phonebook of TMS (while 95 MXP endpoints works very well with the TMS directory).

The end point of series C, we check the Configuration-> directory server 1: URL. The link is converted from http:// /tms/public/external/phonebook/phonebookservice.asmx http:// tms/public/external/phonebook/phonebookservice.asmx.

(In addition, we check the authorization of the two phone book page, and there is no IIS issue).

In the 95 MXP endpoint, it can receive the telephone directory unit VM MSD and MSD.

Best regards

Ben

Hi Ben,

As confirmed by the curl command - you don't have access to the web page as an anonymous user.  You have to fix your permissions.  One of the fastest ways to do would be to try to reinstall the MSDS on the server again - this should reconfigure the IIS settings required for TMS.

Wayne
--
Remember the frequency responses and mark your question as answered as appropriate.

Tags: Cisco Support

Similar Questions

  • After the Virtual Machine is hot migrated lose the reference to the virtual computer object (VMware.Vim.VirtualMachine)

    Hello

    In my VB.Net application, I retrieve the virtual computer object (VMware.Vim.VirtualMachine) through scripting Powershell VI.

    If the Virtual Machine is migrated to another host (hotmigrate) I receive an event (VMware.Vim.VmMigratedEvent), which also holds the moref of the Virtual Machine. I tried to use the updateview method to refresh the virtual computer object but failed with an error message stating that the object could not be found, or never existed.

    I also tried to recover the virtual computer object again, throug the method Client.GetView and the moref returned by the event, but the same error message.

    How can I get my hands on the virtual computer object or update after migration to another host takes place. I have to get it back again? It would be great if I could do it somhow with information from moref I hold the event!

    Any help is appreciated!

    Concerning

    Manfred

    Sorry, but I can only show you how to do this in PowerShell.

    I use the purpose of the task to get to the prompt MoRef.

    Here's how:

    $vmName = 
    $tgtHost = 
    $tgtPool = 
    
    $vm = Get-VM $vmName | Get-View
    $poolMoRef = (Get-ResourcePool $tgtPool | Get-View).MoRef
    $esxMoRef = (Get-VMHost $tgtHost | Get-View).MoRef
    
    $task= Get-View ($vm.MigrateVM_Task($poolMoRef, $esxMoRef, "lowPriority", "poweredOn"))
    
    while($task.Info.State -eq "running" -or $task.Info.State -eq "queuing"){
      $task.UpdateViewData()
    }
    
    $vmImpl = Get-VIObjectByVIView -MORef $task.Info.Entity
    

    I don't know how you get at the VmMigratedEvent event, but the MoRef in there is pointing to the correct prompt.

    In the following script, I extracted all the events related to the task of vMigrate immediately after the vMigrate task finished

    function Print-VmName{
         param($event)
    
         $MoRef = New-Object VMware.Vim.ManagedObjectReference
         $MoRef.Type = $event.vm.vm.type
         $MoRef.Value = $event.vm.vm.Value
         $vm = Get-View $MoRef
         Write-Host $vm.Name
    }
    
    $events = Get-VIEvent -Start (Get-Date).addminutes(-15)
    $events | % {
         $event = $_
         $eventType = $_.GetType().Name
         switch ($eventType){
              "VmMigratedEvent" {
                   $eventType
                   Print-VmName $event
              }
              "VmEmigratingEvent"{
                   $eventType
                   Print-VmName $event
              }
              "VmBeingHotMigratedEvent" {
                   $eventType
                   Print-VmName $event
              }
              "TaskEvent" {
                   $eventType
                   Print-VmName $event
              }
         }
    }
    
  • Is it possible I can get the virtual computer connectivity after restart to connect to the local network in the host operating system?

    Hi all

    For some reason, I have to disable and then enable the LAN connection in the host operating system. If some virtual machines are running during this time, connectivity all VMs for out-of-world are lost, they cannot connect to the host even more (by running the ping command). I tried a few methods to retrieve the connectivity, but all have failed, for example,

    1. reboot the virtual computer

    2. restart VMware Workstation

    3. restart the corresponding system services in the host operating system

    The only way I can retrieve all is to restart the host operating system itself.

    Yes, is there short any path, I can retrieve the connectivity of these virtual machines?

    Thanks in advance.

    Yark

    yarkwang wrote:

    I use a Broadcom NetLink (TM) Gigabit Ethernet NIC, shows the date of the pilot 2006-5-15, but it works well, I think.

    Try installing a newer driver.  According to the site, you should be able to find a driver dated 2008 or 2007 (depending on which exact model of NetLink card you have):

    - http://www.broadcom.com/support/ethernet_nic/downloaddrivers.php

    1 came out of safe guard 360

    Sometimes out of some firewall programs is not enough (they keep still themselves installed in the network of the host stack, even if they are 'closed').  You may need to uninstall to make sure that it is not interfere.  (Search the forums for support for your firewall software see if anyone else is having problems with vmware and 360 safe guard).

  • need to reconfigure the virtual computer after deployment of the vm

    Hi all

    I have a script to deploy a computer virtual to a CSV file. I need to change the configuration of virtual machine (CPU and memory) after the deployment of the vm. where the name of the virtual machine should be taken to csv. So any help is appreciated.

    Attach the script used. (downloaded and works fine)

    $vms = import-CSV D:\vm-deploy\vm-deploy.csv

    {foreach ($vm to $vms)

    $Template = get-model $vm.template

    $VMHost = get-VMHost $vm.host

    $Datastore = get-data store $vm.datastore

    $OSCustomization = get-OSCustomizationSpec $vm.customization

    New-VM-name $vm.name - OSCustomizationSpec $OSCustomization - VMHost - $VMHost model $Template - $Datastore - Datastore RunAsync

    }

    # This cmd need to run after the vm deployment completed. The virtual computer name must come from the 1 column of the CSV file

    Set-VM $vmname - NumCpu 2 - MemoryGB 5 - confirm: $false

    Write-Host "All VMs deployed" - ForegroundColor Green

    Disconnect-VIServer-confirm: $false

    CSV file looks like this

    Name, host datastore, Template, customizing

    Test-VM,vm-dep-test,ESX02,P5-vm-stage,vm-deploy

    Thanks in advance...

    A simpler, but not optimal, solution is to use the Wait-job cmdlet.

    Something like that

    $vms = import-CSV D:\vm-deploy\vm-deploy.csv

    $tasks = @)

    {foreach ($vm to $vms)

    $Template = get-model $vm.template

    $VMHost = get-VMHost $vm.host

    $Datastore = get-data store $vm.datastore

    $OSCustomization = get-OSCustomizationSpec $vm.customization

    $tasks += new-VM-name $vm.name - OSCustomizationSpec $OSCustomization - model $Template - VMHost $VMHost '

    Data - $Datastore - RunAsync store

    }

    Waiting-task-task $tasks

    {foreach ($vm to $vms)

    $vm.name set-VM - NumCpu 2 - MemoryGB 5 - confirm: $false

    }

  • Reload the Configuration of the virtual computer after changing the VMX file

    Hello

    If I make changes to a file on a virtual machine's .vmx in vCenter 5.5 is automatically valid configuration for the engine power vm off? I made some changes earlier and it seemed to be the case, but one of the steps that I see in some of the documents is to reload the configuration of the vm, so it can be used appropriately. So this happens automatically or not?

    Hello

    If she turned off the virtual computer, then during power on, changes to take effect.

    Concerning

    Mohammed

  • Move-vm can migrate a powered off the virtual computer to a DRS cluster?

    When I try to move-vm has propelled off VM to a destination of DRS cluster, he says that he cannot migrate a powered off the virtual computer to a DRS cluster.   I can explicitly name the destination of the host and it works, but that defeats the purpose of using the DRS and forces me to script on the destination hosts.

    I do something wrong or I would be able to migrate a powered off the virtual computer to a DRS cluster?

    Thank you

    -MattG

    Hello, MattG-

    I get the same behavior as you when you try to move a VM PoweredOff to a DRS cluster, specifying the cluster as the value for the parameter - Destination to Move-VM (using PowerCLI v5.1 Rel 2 v5.5 Rel 1).  Not quite what I expected.

    To work around the problem, and without having to appoint a particular host as destination, you could use some Get-Random, do something like:

    Move-VM myVM0 -Destination (Get-Cluster myDestDRSCluster | Get-VMHost | ?{$_.State -eq "Connected"} | Get-Random) -RunAsync
    

    Who should receive the machine said cluster and on a host that is in the connected state.  A subsequent operation to the market (whenever do you eventually) should then see DRS power on the virtual machine on a suitable host in the cluster.

    Maybe the dev team can comment if this behavior is the expected or desired.

    Anyway, how does do for you?

  • How can I type of NETWORK adapter in the virtual computer a vCloud?

    I'm trying to write a script that compares the type of NETWORK card in vCloud NIC type in vCenter to work around a bug in vCloud 1.5.  I can get the type of NETWORK adapter in the virtual computer a vCenter by getting the vCenter VM up and running:


    $vcvm | Get-NetworkAdapter | FT-auto
    Name Type NetworkName MacAddress WakeOnLanEnabled
    ----              ----           ----------- ----------        ----------------
    Network adapter 1 isolated EnhancedVmxnet 00:50:56:01:00:33 True


    I do not get the same results when you perform an action similar to vCloud:
    $vcdvm | Get-CINetworkAdapter

    Connected primary index IPAddressAllocation IPAddress ExternalIPAddress VM
    ----- ------- ---------  ------------------- ---------       ----------------- --
    0 true true manual 192.168.10.30 nic1

    I can get all the other info NIC, such as the network, IP, MAC, etc, but not the type:
    ($vcdvm. ExtensionData.section) [2] .networkconnection

    Network: isolated
    NeedsCustomization: false
    NetworkConnectionIndex: 0
    IP address: 192.168.10.30
    ExternalIpAddress:
    IsConnected: true
    MACAddress: 00:50:56:01:00:33
    IpAddressAllocationMode: MANUAL
    Get_anyattr:
    VCloudExtension:

    For the moment, I get the type of NIC the vCloud himself database vCloud.  Thanks for any help.

    I use VMware vSphere PowerCLI 5.1 Release 1 build 793510

    I could tell you where to find it, but there is a bug in the API that shows only as PCNET32 anyway (sleep if she could be VMXNET3). Keep doing what you're doing with the database query.

    See you soon,.

    Jake

  • Best method to deploy the virtual computer

    Anyone who can tell me what is the best way to deploy the virtual computer deploy of the FVO or models (the VM creation) that create the virtual machine of the templated took longer time compare to the creation of the FVO. Any Suggestions?

    Deploying the model customizze the new machine as part of the deployment will treat you while FVO will be an exact xopy, so you need to manually configure the new machine.

  • Strange problem after moving from the virtual computer to a new data store

    I am migrating our VM existing (8 in total) a 'problem' RAID to a new table on a new controller and am having a strange problem. Here are the steps I took (host OS is Ubuntu 8.0.4 LTS x 64):

    (1) off the power the virtual computer from the Web interface

    (2) the directories created for each virtual on the new RAID array computer (in this case a RAID 10 array on LSI 9750-8i controller)

    (3) rSync used to copy the data from RAID1 to be RAID2

    4) has created a new data store on the new RAID through the Web Server of VMWare user interface.

    (5) removed VM of the inventory through the Web, their return, added user interface then choose files .vmx on new data store on RAID2

    They have all power save fine... but three of them are not accessible on the network. I can open a console in the Web Server of VMWare user interface and they all run normally... but I can't their ping or access the respective virtual machine Web GUI. It seems quite arbitrary that those who work and those who are not. In this case... the VM that don't work is a license Autodesk, a Squid proxy server and a VM of cactus. All three of these virtual machines are 32-bit Ubuntu Server VM (two 8.0.4 and a 10.0.4)... and are the only Ubuntu VM on this host. It must be signifigant but I'm not see how.

    If I delete these three virtual machines of the inventory again and add to their original location (on the RAID1) they light up AND work normally. A consultant that we were working seemed surprised, as he had also done this experiment with some of the older VMWare products. I don't see how it would be the physical location of the files of the virtual machine. Any ideas?

    We rely on the migration to ESXi soon but in the meantime, we get these a few VM out of this RAID array problem. I'm stuck.

    Depending on the application, it may be enough to reconfigure the IP parameters (they are very probably on DHCP now) for the newly detected virtual NIC.

    André

  • Script to rename the virtual computer by name DNS listed in VC

    I am very new to powershell, and I tried to understand this by using pieces of code I found, but nothing helped.

    I'm looking for a script to take the given DNS host name for a virtual machine listed in VCenter and rename the virtual computer.

    For example.

    Host01VM01 (as shown in Vcenter) - the DNS name of the "something.xyz.com".   VM and rename it "something.xyz.com" in Vcenter.

    To run the script only for a group called "Mycluster" you can do:

    Get-Cluster "My Cluster" | Get-VM | `
    Where-Object { $_.Guest.HostName } | `
    ForEach-Object { Set-VM -VM $_ -Name $_.Guest.HostName -Confirm:$false }
    

    This script will only work for VMS that have installed VMware tools and probably only for VM which are turned on.

  • Need to include the hardware version of the virtual computer in 'standard' VMReport.ps1 in Excel...

    Need to include the hardware version of the virtual computer in 'standard' VMReport.ps1 in Excel...

    Notice-EEG - viewtype virtualmachine. Select Name, @{N = "HardwareVersion"; E = {'Version $($_.) Config.Version)"}}

    I above for the hardware version of vm, but I need to include in a report 'necessary' as 'necessary '.

    The script of VMReport.ps1 previously published works for all requirements except the hardware version of the virtual machine. I tried to 'embed' the syntax get-view without success.

    Any suggestions on how to get the VM hardware version (and the name of vm State, OS, CPU, IPAddress, host) in an excel spreadsheet?

    I have VDuc script is modified for the rest no problem.

    All points will be awarded as usual.

    Hello

    You can try below also extracts

    $report = @()
    
    Get-VM | %{
        $row = "" | Select VMName, State, OS,  Host, CPU, IPAddress, HWVersion
         $Ver = $_|get-view
         $vmGuest = $_ | Get-VMGuest
         $row.VMname = $_.Name
         $row.HWVersion= $Ver.Config.Version
         $row.IPAddress = $vmGuest.IPAddress[0]
         $row.Host = $_.Host.Name
         $row.OS = $_.Guest.OSFullName
         $row.State = $_.PowerState
         $row.CPU = $_.numcpu
         $report += $row
    }
    $report | Export-CSV c:\VMReportTest1.csv
    

    I hope this helps.

  • Get the IP address of the virtual computer? (when no DNS available)

    I have a strange setup where I have a server vCenter runs in a private network that has no DNS available IN-HOUSE.  I am running the scripts that query an IP address range, but takes forever to run.  I can run get - vm and get all virtual machines, but can't do anything with them because there is no DNS and I can't find a way to enter the IP address of the virtual computer.  If I could get the IP addresses I could then run functions against them.  If it makes a difference those VMS have two network cards: Public and private.  Any ideas?

    The Get - VM cmdlet returns the IP addresses to the title of Guest.IPAddress count of the first IP address use as well:

    Get-VM |Where {$_.PowerState -eq "PoweredOn" } |foreach { Write "$($_.Name) has an IPAddress of $($_.Guest.IPAddress[0])" }
    

    If you found this information useful, please consider the allocation of points for correct or helpful.

    Alan Renouf

    http://Virtu-al.NET

  • Through host SCSI tape drive to the virtual computer with the backup software installed in the comments

    Can I attach an external SCSI tape drive to one of my hosts, and then add it as a device in a virtual machine.

    I want to use backup exec on a virtual machine, rather than having to have a separate physical server to attach the tape drive. I realize that I wouln't be able to vmotion the guest but as its only going to be a backup machine I am happy with that.

    Thanks in advance,

    Yes is possible.

    I have a Dell TL2000 with a dedicated SAS card and it works (not faster than in a real environment, but works).

    You add the SCSI ID of the tape (and the library, if any) to the virtual machine.

    Or, if your hardware can he take charge, using VMDirectPath and give the card on the virtual computer.

    André

  • Had an error "NTLDR is missing" while restarting the virtual computer

    Hi all

    I got an error "NTLDR is missing" while restarting the virtual computer on which windows is running.

    Can someone please suggest a way out of this error?

    Thank you

    Jenish

    You have a connected to the virtual machine floppy image? If so, disconnect the diskette drive.

  • Moving the virtual computer configuration file and work on the clone of the model

    Using the VirtualMachineRelocateSpecDiskLocator to move disks from different NFS data warehouses when cloning a model looks very good work.  However, the Virtual Machine configuration file and the location of work remain on their original NFS data storage, not moving with the root of the drive.

    If this move not all together, or am I missing a step here?

    Thank you

    Scott

    Specifying the "data store" in VirtualMachineRelocateSpecDiskLocator specifies the location of the VM virtual disks only. To move the virtual machine, it might also be necessary to specify "datastore" property of "VirtualMachineRelocateSpec. If this is not specified, the current data store is used to store the files of the virtual computer.

Maybe you are looking for