Want to change the hostname of cisco WCS on Windows

Hi
We have cisco WCS and by default hostname is nonwmonitor .
Now we need to generate the certificate that will match with Hostname and so want to change the hostname.
Please help me for providing the process to change the histname for windows 2003

One thing to remember is the WCS license is tied to the sever name. So if you change the name if the server, you will have to rehost the WCS license.
Sent from Cisco Technical Support iPhone App

Similar Messages

  • Cloned Dac, Informatica and OBIEE want to change the ip and hostname

    Hi Gurus,
    I recently cloned my OBIEE env on virtual machines on OEL ( Linux)
    I want to change the hostname and ip address to make the services up with new IP and hostname.
    I started the Database(11gR2) single instnace successfully. Please let me know what all changes need to be done to start the dac(10.1.3.4), informatica(9.0.1 Hotfix 2) server and also OBIEE(11.1.1.7.1)
    I did run ./startServerprompt.sh for DAC but still the service cannot be started.
    Thanks in advance.
    Regards

    Hi kt1,
    Informatica and DAC is also on Linux servers. As a first step I'm trying to start the services on  DAC and Informatica servers but still no luck.
    When I'm Trying to start it gives me the following error in the log
    For Informatica:
    Domain service init method is called
    java.net.UnlnownHostException: santa.pti.local (which is the  wrong hostname)
    it should be picking up the new hostname panta.pti.local
    but I don't know where exactly is this information stored and how to get over it.
    The same case is with DAC server when I try to start it it's picking up the wrong hostname
    Anybody who can help me get through this. I have go ogled  it but so far I couldn't solve it.
    Appreciate if anyone could help me solve this.
    Regards,

  • How Can I change the colour in title bar of Window in Form 9i

    Hello
    All,
    I want to change the colour of title bar in window ?
    how can I ?
    From
    Chriag Patel

    Chirag,
    this is not in a scope of control for Forms and instead determined by the look and feel.
    Frank

  • Rename (Change of Hostname) of Cisco ISE Appliances !!!

    Hi,
    I am having the two Cisco ISE (Version: 1.1.1.268) appliances. These appliances are running in Failover with the internal CA signed certificates.
    The hostnames are 19 character long with Upper cases and Hypen. Boxes are joined to the domain but freqently used to disconnect after sometime. After some investigation, we came to know that AD can accept only the 15 characters long hostname... thats the reason, one of the appliance keeps disconnected. Also, sometimes, the authentications donesn't works properly.
    My question is that how to change the Cisco ISE Appliance hostnames without impacting the production and hassle?
    Send me the steps in detail, or it is just a matter to change the hostname and register with DNS with new names and regenerated the certificates...???
    Need expert opinion....
    Thanks,
    Regards,
    Mubasher

    Hello Mubasher-
    I recently had to do this and I want to warn you to be careful. I had to rename 4 hosts and out of 4 of them only 1 remained useable. The other hosts had to be re-built For some reason ISE nodes get very unhappy when trying to change certain things (Hostnames, timezone, etc) Also, keep in mind that even if the renaming goes well you will still impact the environment as the nodes will restart.
    Here is what I did when I made the change:
    1. Disjoin the ISE nodes from the domain
    2. Ensure that their computer name is removed from AD
    3. Update DNS records
    4. Ensure that DNS records have replicated
    5. Change names on ISE
    6. Join nodes to the domain
    Hope this helps
    Thanks for rating!

  • If changing the hostname of the Audit Vault Server version 12.1.2 please wait until the system reboots automatically.

    Hi everyone
    when changing the hostname of an AV Server in the newly released version 12.1.2, it can take up to 10 minutes from the time a user click ok on the pop-up message "Are you sure you want to reboot the Audit Vault Server for the changes to take affect" to the system actually shutting down for the reboot. The machine must not be manually rebooted as this will cause errors.
    Some background information was provided by one of Oracle's developers for this product:
    AVDF 12.1.2.0.0 uses Oracle Grid in Restart Configuration. This is needed to leverage the ASM infrastructure to create diskgroups etc. So, when a hostname of a system is changed, the entire Grid stack needs to be re-configured to work under the new hostname. This re-configuration is needed because Grid creates a lot of directories with the hostname in them and when the hostname is changed, it tries to look for critical configuration files under this new "hostname" and of course, they would not be present. Hence, when we change the hostname, an entire re-configuration of the Clusterware is attempted, at which point a new set of directories with the new hostname will be created by the Grid software.
    This reconfiguration operation may take a few minutes to several minutes depending on the hardware/resource specs. This is because re-configuration of the Clusterware stack is a heavy-weight operation and takes time (It needs to shutdown all the CRS services and re-configure them and bring them back up). Hence, the long duration it takes before re-boot. You *MUST NOT* reboot it manually before the system automatically reboots -- otherwise the re-configuration operation will only be half-done. The chances of this re-configuration operation failing is very, very minimal (based on our tests). So, given enough time it _WILL_ complete eventually and the system _WILL_ automatically reboot. You just need to wait for it to happen.
    Hope this will avoid any issues,
    greetings,
    Harm ten Napel

    I may add it was my personal impatience that lead to this discovery: I was re-imaging my virtualbox install with the new 12.1.2 version (for testing purposes) and I want my AV server to be called 'auditvault', when it appeared nothing was happening (but there was) I rebooted the system manually with said results...

  • How can I change the hostname after Oracle Database XE is installed?

    I currently have XE installed and working on my ubuntu machine.
    When I change the hostname of my machine, oracle database no longer connects and says "ORA-12505, TNS:listener does not currently know of SID given in connect descriptor".
    Can anyone tell me how I can change the hostname of my machine and keep oracle database working correctly?
    Thanks

    Stopping, reconfig, starting the instance is one way, although that is somewhat like using petrol to kill ants.
    The database instance pretty much does not care about the hostname setting. But the listener does- the installer finds the hostname and uses that in the setup bits.
    As posted somewhere here, when using the 1521 default listener port, the listener.ora config file can just be moved out of the way. Another potential fix is setting the HOST=0.0.0.0 for the IPv4 "any IP" address setting, or setting it to the correct hostname. Or HOST= can be set to IPv4 address. For IPv6, have to use HOST=<hostname> and it must resolve, can't HOST=... an IPv6 address.
    To move the listener file, stop the listener first. To change a HOST=... setting, also stop the listener first.
      lsnrctl stop
      mv $ORACLE_HOME/network/admin/listener.ora $ORACLE_HOME/network/admin/listener.bk0
      # or
      vi $ORACLE_HOME/network/admin/listener.ora
      # change HOST=<whatever> to the correct value, or 0.0.0.0
      lsnrctl start
      sqlplus /nolog
      conn system
      ... password ... Connected.
      alter system register;
      exit
      # start the lsnr
      lsnrctl start
      # check the status, services
      lsnrctl stat
      lsnrctl serv
    If the host has a wireless (or another NIC) that one does not want to offer up remote connections on, the 0.0.0.0 is not a good way to go either
    Message was edited by: clcarter
    typos

  • Change the hostname on 7920 phone

    I would like to change the hostname on my 7920 wireless phones, because the default name consisist of SEP00mac-address. (see network settings ->current config).
    Any input is very welcome
    Oliver

    Not changeable like all other Cisco IP phones.

  • I want to change the privacy settings on my e-mail, I provided the password once and now it opens without one

    I want to change the security settings on my e-mail. I provided a password once and now it opens without one. I want to keep my messages private.
    == This happened ==
    Every time Firefox opened
    == When I updated.

    Websites remembering you and automatically log you in is stored in a cookie
    Tools > Options > Privacy > Cookies: "Show Cookies"
    See also [[Cookies]]

  • I want to change the order that my 9 email accounts are listed on the left sidebar (folderpane?).

    Mac Snow Leopard
    TB 24.5.0
    Suggestions have pointed me towards finding prefs.js file, but I can't find it (library/mozilla, libary/application support/mozilla not there nor in search function)
    Tried with showing hidden files too.
    Really a pain as I need the more active accounts on top opened but not enough room with less active accounts stuck in the middle.
    No RSS feeds, local folders on bottom OK.
    Just want to change the order but can't seem to find the solution.
    Free smile to whoever helps me out! Thanks

    Use this add-on.
    https://addons.mozilla.org/en-US/thunderbird/addon/manually-sort-folders/

  • I want to change the security answers but have noticed the email address is a hotmail one.  I cannot remember the password and frankly it keeps telling me that the account doesn't exists.  So how can I change that to my personnal email?

    I want to change the security answers on my account but have noticed that the email address I listed is a hotmail one which I cannot get into.  How do I change this as I only see an edit button for logging into iTunes but not one where I can change in the security answers.  Thankyou

    You need to contact Apple to get the questions reset. Click here, phone them, and ask for the Account Security team, or fill out and submit this form.
    (94157)

  • I want to change the sharing and permissions of a large number of photos. How can I do this in bulk rather than one at a time?

    I want to change the sharing and permissions of a large number of photos. How can I do this in bulk rather than one at a time?

    Does this involve iPhoto in some way?

  • I have a 17" Mac Book Pro and a 13" Mac Book Pro...both use the same Apple ID. My wife now wants to change the Apple ID on the 13" to her Apple ID.  How do I do this and not loose the information on that computer?

    I have a 17" Mac Book Pro and a 13" Mac Book Pro...both use the same Apple ID. My wife uses the 13" and now wants to change the Apple ID on the 13" to her Apple ID.  How do I do this and not loose the information on that computer?

    Hello Teddy53149 and welcome to Apple Support Communities,
    Follow this procedure:
    Change your OS X account name and home directory name - Apple Support
    As they recommend and as always when you're messing with administrator accounts back everything up first.

  • HT204053 I used one Apple ID to set up iCloud after iOS 6 was downloaded to my iPhone, now I want to change the Apple ID for iCloud on my iPhone but I'm unable to. How do you change the ID after it's been set up?

    I used one Apple ID to set up iCloud after iOS 6 was downloaded to my iPhone, now I want to change the Apple ID for iCloud on my iPhone but I'm unable to. How do you change the ID after it's been set up?

    See https://discussions.apple.com/message/19218571#19218571.

  • Rs to do, and I selected the font for each 4s clip - now I want to change the font - is there a way to change all fonts on clips in one go?

    Hi I am new to iMovie - and made a 35min film - quite pleased with it - I sub-titled it right through coz we work with deaf people - wanted my first movie to be accessible. Now I want to change the font on each clip - can I do this in one step - and change all the sub-titles to a different font - thanks a lot, Jane

    Maybe some one else can pipe up with a solution, but this would literally take 2 seconds to do for a new project.  And you can create a "template project" that includes this "text" clip.  Save this project and then to a get info and check "stationary pad."  When you double click on this file, fcp will open with a copy of this project and you just need to do a save as. 
    I've been working with computer editing systems for longer than i can remember and at a certain point you just have to adapt your workflow to the limitations of the software.  

  • HT4314 I want to change the  language of my Game Center (it was set to German because I put the data of my Austrian credit card)

    I want to change the  language of my Game Center (it was set to German because I put the data of my Austrian credit card)

    Mikeandnicki wrote:
    I have looked through everything but cannot find a way to delete or spend the 69 cents credit. Can anyone help me?
    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

Maybe you are looking for

  • Timeout when consuming a SOAP web service

    Hello, I'm quite new to Labview and I'm trying to consume a SOAP web service created using a very simple WCF example, but I keep on getting a WebException because of a timeout. The web service has been created using the example from the WCF getting s

  • App store apps name

    Hello, I would like to report the difficulty and mess there is now in searching for apps or games in the app store. What people would do to earn money!! I'll try to better explain myself: less serious developers now use to name their app with aaa etc

  • Flash 17 .msi's not available?

    The main .exe download page for Flash Player appears to have the version updated to 17.0.0.134, yet the Adobe Flash Player Distribution page still has the .msi downloads for 16.0.0.305. When will the .msi files be updated to the latest version of 17?

  • HT1311 tried to use messages but it does not accept my apple id

    Tried to use messages with get started but it would not accept my apple id

  • If I can always use a passcode instead of Touch ID, how does Touch ID add security?

    Am I missing something?  Even if I have Touch ID enabled, I can always use my passcode instead of Touch ID.  So, how does Touch ID *ADD* security? I can understand always requiring passcode IN ADDITION to Touch ID at particularly sensitive moments (e