Setting domain name on CIMC

Hi,
Is it possible to set a domain name for CIMC? - there does not seem to be an option to do this in the CIMC GUI.
Thanks

You can setup a hostname:
Procedure
Step 1  
In the Navigation pane, click the Admin tab.
Step 2  
On the Admin tab, click Network.
Step 3  
In the Network pane, click the Network Settings tab.
Step 4  
In the Hostname field, enter the name of the host.
Step 5  
Click Save Changes.
http://www.cisco.com/c/en/us/td/docs/unified_computing/ucs/c/sw/gui/config/guide/1-4-1/b_Cisco_UCS_C-Series_GUI_Configuration_Guide_141/b_Cisco_UCS_C-Series_GUI_Configuration_Guide_141_chapter_01000.html#task_10637AC91E1C4F55ABEC112C91AD29EA

Similar Messages

  • WLST setting domain name and ListenAddress attribute

    using weblogic 9.2
    just getting started with WLST and ran into two issues:
    1) want to state the ListenAddress for both the adminserver and application servers with the script below:
    cd('Servers/AdminServer')
    set('Name', 'adminserver')
    set('ListenAddress', 'localhost')
    set('ListenPort', 7001)
    cd('/')
    create('appserver1', 'Server')
    cd('Server/appserver1')
    set('ListenAddress', 'localhost')
    set('ListenPort', 7003)
    ....however get the error "Property Listen address of Server appserver1 is invalid. The server has the same combination of listen address and (default) port as other server" which clearly isn't the case since the ports listed above are different.
    2) second issue is more of a complaint that the domain name is automatically derived from the domain directed in the writeDomain command. want to specify another domain name. is this possible?
    thanks / matthew

    Ok update changing the hostname in the field does NOT allow me to edit the .local part. In fact it converts Steve.mydomain.net.local to Steve-mydomain-net.local.
    But I got my windows workgroup changed and I am showing up with the correct workgroup name from my other servers.
    Also, lets say you only have a couple of computers on your home network right? So dedicated dns is kind of overkill especially when most of them are laptops rebooting all the time.
    Well, your mac os x box has a hosts file. /etc/hosts as in if you want to edit sudo vi /etc/hosts. So you keep the computers pretty much in sync from those files.
    I was afraid the information would not be persistent across a reboot. It was.
    So, two out of three ain't bad. I read in the server forum its a pain in the ***. I was almost thinking of doing the hostconfig trick but I saw an Apple bulletin saying do NOT do that.

  • [Solved] Set domain name on systemd system

    Since the demise of rc.conf I have been unable to find out how to set the system's domain name. I tried "hostnamectl set-hostname hostname.domain" but it just set the hostname to "hostnamedomain". I also tried setting it manually through the hostname utility but it broke GUI applications (could not connect to display error). No luck with google or tge wiki either. Any ideas?
    Last edited by jiggpig (2013-02-04 16:16:55)

    First of all, see "man archlinux" for how to set the hostname.
    Second, is Bash treating the period as a special character? Try "hostnamectl set-hostname hostname\.domain".
    Thirdly, my hostname is just set to "archsystem". Are you thinking of what goes in "/etc/hosts"?
    # /etc/hosts: static lookup table for host names
    #<ip-address> <hostname.domain.org> <hostname>
    127.0.0.1 localhost.localdomain localhost archsystem
    ::1 localhost.localdomain localhost
    # End of file
    Last edited by drcouzelis (2013-02-04 04:18:47)

  • Setting domain name

    Hi all,
    Can I use my server to set up the internal domain name? I want to fix it to be something else than local and distribute it over the internal network.
    Thanks,
    Ziv
    PowerBook G4   Mac OS X (10.4.3)  

    What you're needing is quite simple. I've boiled down the procedure into the following recipe. You may find my other posts useful: http://discussions.apple.com/thread.jspa?threadID=236181, http://discussions.apple.com/thread.jspa?messageID=661415, and http://discussions.apple.com/message.jspa?messageID=1221660
    1. Go ahead and configure the DNS service on your server. Create a zone with a suffix like mycompany.private and give the nameserver a machine name, defining your server's fully-qualified name. Remember your nameserver is the server itself, so you should end up with a fully-qualified server name like myserver.mycompany.private.
    With DNS configured, you've only defined a name that matches your server's IP address.
    2. Tell your server to use itself as a nameserver. In the Network pane of System Preferences, add the server's primary IP address to the top of its name server list, or make the change remotely with networksetup.
    You'll also need to tell each of your clients to use the server as a nameserver for local DNS. You can manually add the server to the client's nameserver list in the Network pane of System preferences, or you can add it to your router's list of nameservers that it passes on to clients via DHCP.
    On the server and one a test client, use lookupd -d to test local DNS resolution:
    a. Verify address to name resolution:
    lookupd -d then
    >hostWithInternetAddress: <server's IP> and press return
    Look for the server's DNS name after name
    b. Verify name to address resolutioin:
    lookupd -d then
    >hostWithName: <server's DNS name> and press return
    Look for the server's primary IP after ip_address
    3. Check the server's hostname. If you have UNIX experience, this may seem a bit strange, but Apple differentiates between what it calls a local host name and the hostname. With a fresh installation of Mac OS X Server, /etc/hostconfig contains the line HOSTNAME=-AUTOMATIC-, which means that the hostname is determined by the first item that's true in this list:
    First try: The hostname is set to the DHCP client ID if the server's primary IP was configured in this way.
    Second try: The hostname is set to the name returned by reverse lookup of the server's primary IP address, if you have an existing nameserver.
    Third try: The hostname is set to the local host name, which is the mDNS (Bonjour) name. This is the name that ends with .local
    Final try: The hostname is set to the string "localhost".
    Since you're using your server as a DNS name server (config steps 1 & 2), neither the first or second try will return a hostname; and, since the mDNS process is always running, the hostname will be defined as the local host name provided by Bonjour. This explains why you're getting the same "dot local" name even after configuring DNS.
    For this reason, you need to manually define the hostname.
    First, edit the /etc/hostconfig file and replace HOSTNAME=-AUTOMATIC- with HOSTNAME=<qualified name from step 1>. For example, replace HOSTNAME=-AUTOMATIC- with HOSTNAME=myserver.company.private.
    Next, issue sudo hostname <qualified name> to update the hostname cache. Now you're in business with a real hostname.
    Note that you still have a local host name (mDNS/Bonjour name). That's still going to exist even though you have a fully-qualifed hostname defined by the server's DNS service and the hostconfig entry. The name you edit in the Overview section of Server Admin or the Sharing pane of System Preferences is, unfortunately, just that local host name; in short, there's no GUI to edit the hostname.
    5. Now you're ready to configure Kerberos and other services that depend on a "real" hostname provided by DNS. Please see my post: http://discussions.apple.com/message.jspa?messageID=1221660
    Hope this helps.
    --Gerrit

  • WRT1900AC - WPA2 on Guest Network and Setting Domain Name

    I'm configuring a new WRT1900AC (version 1) and have a couple of questions.  The first should be easy, on the Connectivity -> Internet Settings page on the right side under the heading Optional the Domain Name (provided via the DHCP server, Comcast in this case) is displayed, but I cannot change it.  How do I set the Domain Name to reflect my local domain? The second question is a bit more daunting.  I have two main wifi segments (one each on 2.4Ghz and 5Ghz) that are each secured by WPA2.  They work great so far.  I also have two Guest wifi segments (one each on 2.4Ghz and 5Ghz), I cannot figure out how to secure these with WPA2.  You can set a passwword for each of the Guest wifi segments, and instruct users to open a web browser after connecting and enter this password, but that's not a secure connection.  Please tell me there is a way to secure the Guest network via WPA2, nobody wants to use an insecure internet connection in this day and age...... -MC

    That's exactly why you want the connection encrypted, so EVERYTHING you send is encrypted and not sniffable.  The intended use of this Guest network is for renters at a condo resort, who will likely be doing banking and the like while on vacation.  If we only provide an open/unencrypted network for them they can't (or at least shouldn't) use it. I have a Netgear R7500 in place right now, it doesn't have any of these problems (e.g. you can specify the domain name even on with a dynamic WAN IP, and all 4 network segments are WPA2 encrypted).  Unfortunately, it's totally unreliable - the 4 network segments randomely disappear and stop working all the time, and the signal range is poor.  I "downgraded" to this 1900AC because this router has a better reputation for stability and range (and indeed, I've been testing it for several days now and stability and range seem to be its strong points, not a single problem so far), but these firmware decisions by Linksys are forcing me to reconsider this router.  -MC

  • How to set domain name to a site that was developed using netbeans

    I developed a website using netbeans.I want to give some DNS like site1.com to it.Where can i set that ?
    Thanks in advance

    1) You post questions in the wrong forum. (As you title says this is a Swing question).
    2) Not once in your last 10 postings have you ever bothered to reply to a posting to thank people for the help you have received.
    I seriously doubt you well ever get answers in the future.

  • How to change host name and domain name in installed Cisco Meeting Place Express 2.0?

    Hi
    I have  Cisco Meeting Place Express 2.0 installed on server. Meting Place uses Linux (Red Hat) as base operation system. Please tell me how I can change host name and domain name for Meeting Place Express application to integrate it into corporate domain infrastructure.
    Thanks in advance!!!
    Sincerely yours
    Sergey Bondarenko

    Hi
    Thanks for your attention for my humble problem.
    I have performed Meeting Place Express configuration through the “net” command.
    But now unfortunately I can't connect to meeting place through web browser. I just get blank page.
    Though I can reach the server with help of ssh. I think my DNS works properly because I can resolve the ip address of  cumpxvoice .uclab.com and cumpxweb. uclab.com with help of dig command.
    Have you any idea?
    A lot of thanks in advance!!
    Sincerely yours Sergey Bondarenko
    Here I have printed the net configuration output of Cisco meeting Place Express:
    [root@cumpxvoice root]# net
    This is the MeetingPlace Express network configuration utility.
    Up to the point where you save changes, it is safe to hit ^C to get
    out at any time, in which case nothing will have changed.
    1) List current configuration
    2) Configure Ethernet port 1
    3) Configure Ethernet port 2
    4) Configure service bindings
    5) Set host names
    6) Set domain name
    7) Configure DNS service
    8) Configure NTP service
    9) Configure routing
    10) Done
    Select: 1
    Primary/audio host name: cumpxvoice
    HTTP host name:          cumpxvoice
    RTMP host name:          cumpxweb
    Domain name:             uclab.com
    Service bindings:
    Audio:                   port 1 (eth0)
    Web browsing (HTTP):     port 1 (eth0)
    Web conferencing (RTMP): port 2 (eth1)
    Port 1 (device eth0):
    IP Address:      10.62.60.116
    Network mask:    255.255.255.0
    Default gateway: 10.62.60.1
    Link setting:    autoneg on
    Port 2 (device eth1):
    IP Address:      10.62.60.117
    Network mask:    255.255.255.0
    Default gateway: 10.62.60.1
    Link setting:    autoneg on
    Static routes:
    Destination      Gateway          Network mask     Port
    0.0.0.0          10.62.60.1       0.0.0.0          1
    DNS Servers:
    10.62.60.115
    10.0.1.4

  • How do you set up more than one Personal domain name to your .Mac account

    I have registered 3 domain names changed all the cnames to web.mac.com.
    Now on the menu to set Personal domain on my .Mac account it only lets you add 0ne Domain name?
    How do we add more or is there a limit?

    You can only set one domain name. You can of course use other means to forward the other two to the one you have put in your .Mac Account Settings.

  • Having trouble setting new domain name in business catalyst

    Hello,
    I'm having problems setting up my site to go live. Here's what I've done so far:
    1) built the site and pushed it live
    2) upgraded the site
    3) set up a GoDaddy domain name
    4) set up the servers on GoDaddy
    5) set up the associate account info on BC
    And then.... nothing.
    I've then deleted the domain and tried to repeat the process, in case I missed something, but now I can't set up a new domaine and keep getting the error "Domain already exists. Please delete all records associated with this domain". What records? What does this even mean?
    Can someone please walk me through the steps to get this site live?
    Thanks!
    Darin

    Hi Aish,
    I'm still having no luck with the site. I've triple-checked and everything is correct on the GoDaddy end. I'm attaching a screenshot of with BC portal, so you can see where I'm at. I somehow ended up with duplicate domains and I have no idea which one to delete. Also, I can't seem to enter anything for the A records, C name records, etc. Is there anything at all that support can do to get this thing up and running? It's been close to a week since I upgraded the site. Please advise.
    Thanks,
    Darin

  • IWeb & Setting up Personal Domain Name is Brutal

    I know I run the risk of getting this post taken down, but I have just spent six hours trying to have my iWeb pages sent to my domain page.
    Nothing has been more difficult.
    - There was no direction that I needed to get my domain name from another service.
    - There was no direction suggestions where to get my domain name. (I finally for one from godaddy.com)
    - The CNAME, adjustment, www etc. directions are AWFUL and absolutely no help.
    There is so much more to complain about.
    I am still hoping that someone can provide a point, by point directions as to how to point my domain name to my iWeb pages.
    Nothing has been more difficult in my 25 years with Apple.

    I think Apple did a great job, as far as it could. I used to work for a small training company in San Francisco. When I started our the first classes for HTML back in the '90's, we used text editing programs to place the graphics and all other layout. I wasn't very good at visualizing the text to how it would look, so I spent way too much time viewing pages and making corrections or tweaks. I don't type as well as I could, so typo's always killed me. With dial-up services being the norm - graphics optimization was/is key for pages to work well and required learning to use graphics tools like Photoshop 2
    Some better text editing tools came out with buttons that worked similar to the Bold, Italic, Underline buttons, but they allowed us to insert the code for graphics, anchors, and links. Too Cool. Saved a lot of typing and typo's.
    Then Adobe PageMill brought drag and drop to site design and I quit coding by hand. I understand the code and can fine tune it to what I want, but just grabbing the picture and placing in a table was really easy, and choosing fonts and font sizes from a menu was very nice. Then I upgraded to GoLive because I wanted to do full scale commercial sites, and use all of the other technologies that have sprung up. I would have stayed with GoLive for many more years, but right after I upgraded to GoLive 9, Adobe decided I needed to pay $200 more for a sidegrade to Dreamweaver or lose my investment and support. So I jumped at Dreamweaver with it's learning curve and tutorials, and I'm almost competent with it now after a year.
    None of these programs explained how to get a domain name or set up DNS. Meanwhile, the hosting services have evolved, and they all have their own system.
    I didn't use any previous version of iWeb because it was a pain to publish to anything but .mac or whatever Apple names it's server and the server has never had enough speed for me. It wasn't until iWeb '09 that I really began to take a look at it for some simple projects that could be put together in an evening, and turned over to a client for them to have fun with.
    For what it does, iWeb is fantastic. I've created pages with layers and rich graphics that would have required much more work with any other program I've ever used. The learning curve for iWeb is as simple as opening a page and exploring all the buttons. Of course, you might need to understand why you would need a button, like the poster a couple of days ago, that didn't understand how to link to another page. But you catch on pretty fast.
    iWeb will turn out results within a week or two, that would take you several years of study and graphics/site design to master. It has many limitations, so I wouldn't consider it for a commercial site, unless the site is a 'business card' site with show and tell, but not for retail sales, or a very large number of pages.
    I'm hoping that iWeb will improve with future versions enough so that some tools for sidewide management like widgets that hold a navigation bar, that you design on your pages, and when you update the navigation bar in the widget, all the pages get updated automatically, or even the ability to change the address for a URL on one page and have it change on every page the link is on. Updates and corrections are not as easy to do with iWeb as other programs.
    Still, for 5 or 10 page sites, iWeb templates take care of so many design choices that it is pretty easy to come up with something visually pleasing and informative.
    All that being said, no design program has actually helped me understand a particular host's system. They are all different because they run on different versions of software like different versions of Apache or Windows server. Each company considers itself the master of security (by advertisement) and they use many different methods to control their servers and the services they offer.
    Sometimes, the easiest way to get started is to go to a company like seanic.net and just sign up for their $3.92/month Linux based server. They even throw in the domain name with the deal. All of these hosting companies provide email services, ftp (some with password protection at no cost), and some provide more advanced services like SQL database, Perl scripting, and CGI-BIN. You don't need to use all of the features at once, and the tech support of a commercial company can get you going pretty quickly.
    The tech support can show you where to upload your files, they set up DNS, and handle all of those other chores, so you can concentrate on designing interesting pages with iWeb.
    Sorry for the blathering...
    Message was edited by: dechamp because I can't spell or type sometimes

  • Do you need .Mac accout to set up personal domain name!?

    i've just bought iLife '08 and i thought you could publish your own websites through iWeb. But so far it looks like i have to pay 60 odd quid on a .Mac account!! what a p* take!!

    The "set up personal domain" is for directing a personal domain name at your .Mac account. This is of no use to you if you are hosting with a commercial service.
    When you host your website on the Apple server with a .Mac account your URL is something like this....
    http://web.mac.com/YourName/YourWebsiteName/PageName.html
    You can register a domain name and direct it at your .Mac account so that the URL is more like...
    http://www.yourname.com/pagename.html
    When you are using a commercial hosting service you register your domain name and instruct the registration company to direct it at your servers IP address.

  • How to set-up Fully Qualified Domain Name in WIN2k3?

    Dear Experts,
    Admin, please rederict if this is the wrong forum.
    I need to set up a FQDN for our one host demo system running on Windows Server 2k3. How do I set it up (without compromizing our system)? On this host we have ECC 6.0 and GRC running.
    We don't have a registred domain.
    Kind Regards,
    Vit Vesely

    Hi,
    Set your domain name as FQDN (fully qualified domain name.)
    1) start the transaction RZ10.
    2) select INSTANCE Profile name where your server name is given.
    3) Select Extended Maintenance.
    4) Click on change button.
    5) Change parameter icm/host_name_full to FQDN
    6) Copy your settings with new version number.
    7) Activate that version.
    8) Restart your WAS (Transaction code SMICM -> Administration Menu).
    Check that the following services are active in your ICF setting (transaction code SICF)
    /default_host/sap/bc/bsp/sap
    /default_host/sap/bc/bsp/sap/system
    /default_host/sap/bc/bsp/sap/public/bc
    /def ault_host/sap/public/bc
    /default_host/sap/public/bc/ur
    /default_host/sap/public/bsp/sap/public
    /default_host/sap/public/bsp/sap/public/bc
    /defaul t_host/sap/public/bsp/sap/system
    /default_host/sap/public/bsp/sap/htmlb
    Set Request Hanlder Class, add Standard Class provided by SAP to default\sap\bc\bsp\sap service. Right click on default\sap\bc\bsp\sap service service.
    Now select display service, go to Handler Tag, and add the class CL_HTTP_EXT_BSP, which is a default HTTP request handler class.
    Specifically for fully qualified domain names problems,
    see:
    434918 Configuration for fully qualified host names for BSP
    654326 Domain restrictions in a portal environment         
    654982 URL requirements due to Internet standards          
    677118 SP31  >: Fully Qualified Domain Names Check         
    763427 Error message for domain name with underscore  
    Regards
    Krishna

  • Income email set up using company domain name

    Ive just jumped ship from PC to Mac (lion) and im trying to set up my email account. My company has its own domain name which appears to be the problem and although outgoing mail is working ok (o2 broadband) i just cant configure incoming. Ive used the same Pop3 and SMPT info as on the PC but it just dosnt like it. This must be a common problem but i dont seem to be able to find any threads that explain, im also surprised that Apple didnt explain when i purchased the unit as they had my email address which clearly shows the domain name?
    So i would be obliged to know if anyone has a solution?
    Many thanks
    Kind regards
    Lusso

    I had the same problem and discovered that I had to migrate to the new ATT email service powered by Yahoo.  I had received notices each time I went into by bellsouth email account that I needed to migrate by following a procedure provided and was asked whether I wanted to do that "now" or "later".  I always chose "later".  Then Saturday, when I got my Pre, I had the same problems you had and even wnet back to the Sprint store and the Palm rep could not figure it out. 
    So, I returned home and decided to migrate to the new ATT email platform.  After that, I used the Pre email setup routine and had no problem.  I now receive by bellsouth email on the Pre and can send replies to email I receive.  I have not tried to send new email directly from my Pre yet. 

  • How to set Netbios/Partial Qualified Domain name for a Mac?

    Is it possible to set a Netbios/Partial Qualified Domain name for a Mac the way one sets it for a PC? If so, where can this be set? Apparently, this is what my router uses to report clients connected by DHCP.
    Mike

    You're looking for something completely different if
    what you're after is to have your DHCP server (your
    router) report your computer name.
    yep - that's what I'm looking for but everything else didn't pan out so I'm following up the suggestion of our IT guy (which is that it reports the Netbios name).
    I don't know what brand or model of router you're
    using but with a Linksys brand router it reports the
    yep - I've got a Linksys, about 2 years old (802.11b).
    computer name, which is set on your Mac under Apple
    menu --> System Preferences... --> Sharing. The
    Linksys router will report the computer name
    typically found under Status --> Local Network -->
    DHCP Clients Table.
    nope - I've got it set as "Michael Levin Laptop", but the Linksys router shows it (and all of the other Macs on the network) as "¸#Єª"... Any way to debug this?
    What you'll notice is that none of this has anything
    to do with Windows. Today's basic networking is
    platform agnostic.
    I thought so; it was a desperation move, based on my IT person's suggestion...
    Thanks,
    Mike

  • What is the domain name setting under internet tcp/ip?

    In the airport utility > Internet > TCP/IP panel, what is the 'Domain Name' field used for?

    The Domain Name setting would be that of your ISP. For example, I have Cox as my ISP. My Domain Name setting is: cox.net
    This field is not mandatory and is used to establish the appropriate domain that your Public IP address is located to assist DNS in directing requests.

Maybe you are looking for