How can I find the dns names ?

those what are made in the control panel...

how can I find the dns names ?That is OS specific thus you must either use Runtime.exec() or use JNI to get to the names.
If you search this forum you will find more specific suggestions on how to get them.

Similar Messages

  • How can i change the DNS Name of a 10.6 Server

    Hello when i installed the Server i made a mistake and put in a wrong dns name wich is not reachable from the clients. How can i Chane the DNS Name?

    The core command is changeip, and Google will find some details and discussions.
    $ man changeip
    $ changeip {-v} {-d path} directory-node old-ip new-ip {old-hostname new-hostname}
    It's not always successful; the host name tends to get embedded everywhere.
    For the official documentation on this, see the [Advanced Server Management Manual|http://manuals.info.apple.com/enUS/ServerAdminv10.6.pdf] for a discussion of what (else) needs to happen when the IP settings change; see the +Understanding Changes to the Server IP Address or Network Identity+ section.

  • How can one find the table name of the Delta Que and setup table?

    Hi !
    Is there any method to find the table name of the delta que and Extraction que ?

    setup table = <extract structure>_setup
    example: setup table for MC11VA0ITM = MC11VA0ITM_SETUP
    Delta Queue is based on following 3 tables:
    ARFCSDATA
    ARFCSSTATE
    TRFCQOUT
    assign points if useful ***
    Thanks,
    Raj

  • How can I find the Host Name and Instance #

    I am having trouble finding the host name and instance #. Thanks in advance.

    Hi Kyle,
    Hope you are doing good.
    if it is the R/3 server, the easiest option would be to navigate to /nSm51 .  
    Hope this helps.
    Kind Regards,
    Hemanth
    SAP AGS

  • How can I find the schema name of the current session

    HI,
    I logged in to one oracle session,
    I just want to know from which schema I logged in .Please send me the query for it.
    Regards,
    Rb

    You should use SHOW USER;
    SQL> conn test/test
    Connected.
    SQL> show user
    USER is "TEST"
    SQL>- - - - - - - - - - - - - - - - - - - - -
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • How could I find the register name?

    I'm using Rslinx OPC server according to the Tutorial, and when I follow the 16th step  in " Configuring an Allen Bradley PLC in RSLinx ", I find that I can not successful do "type the register name you are trying to get data from or writing to".
    So I wonder how can I find the register name needed?
    nelly

    Hi nelly, which NI software are you using and what application you want to achieve?
    Would you please give me more detailed information ,thanks!

  • How can I get the administrators name and password so I can download the latest os this is a refurbished iMac

    How can i find the administrator name and password for my  iMac .
    This was a refurbished product purchased online and i need this info to download new things form the apple store ?

    See #5
    Step by Step to fix your Mac

  • How can I find the specific channel name and modify channel name in automatically in VBS?

    How can I find the specific channel name and modify channel name in automatically in VBS? (DIAdem 9.1)
    I would like to change channel name = "speed01" ... "speed10"  to  channel name = "velocity01"..."velocity10.
    martino

    Hello Martino,
    this script will help:
    Option Explicit
    Dim i
    Dim n
    For i=1 To 10
    If i < 10 then
    n = CNo("speed0" & i)
    Else
    n = CNo("speed" & i)
    End If
    If n > 0 Then
    If i < 10 then
    ChnName(n) = "velocitiy0" & i
    Else
    ChnName(n) = "velocitiy" & i
    End If
    End If
    Next
    Matthias
    Matthias Alleweldt
    Project Engineer / Projektingenieur
    Twigeater?  

  • How can i find the available JDBC driver name?

    hi,
    can anyone tell me how can i find the JDBC driver name in XI

    Hi
    The available JDBC drivers can be viewed in the file found in the following path in ur XI  server
    :\usr\sap\XR3\DVEBMGS00\j2ee\cluster\server0\bin\ext\
    regards
    krishna

  • How can i find the meta chain name?

    My process chains are running based on meta chain option,So how can i find the meta chain name???

    Hello
    Goto SE16
    Table RSPCCHAIN
    ut u r local chain name as varient and exe
    similerly goback if the chain you get is also a local chain....Until you get only one chain...
    Where Used List --
    RSPCPROCESSLOG table
    You can see the Process Logs at SM37 too based on the Technical name of the Chain you can trace the Meta chian
    Thanks
    Geeta

  • How can I find my user name password as I only remember the administrator password for the MacBook?

    How can I find my user name password as I only remember my administrator password?I don't want to lose things or content.

    If you have only one account, then your admin password is your user password. If you use another account that is not an admin account, then log into your admin account from which you can change the password on your user account.
    Forgot Your Account Password
    For Snow Leopard and earlier with installer DVD
         Mac OS X 10.6- If you forget your administrator password,
         OS X- Changing or resetting an account password (Snow Leopard and earlier).
    For Snow Leopard and earlier without installer DVD
        How to reset your Mac OS X password without an installer disc | MacYourself
        Reset OS X Password Without an OS X CD — Tech News and Analysis
        How To Create A New Administrator Account - Hack Mac

  • 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 the index from a specific container?

    How can I find the index from a specific container?
    For example, if I'm traversing through textframes like so (an example, not tested):
    var doc = app.activeDocument;
    var story = doc.pages[0].textFrames[0].parentStory;
    for (var i=0, l=story.textContainers.length; i<l; i++) {
         var textFrame = story.textContainers[i];
         if (textFrame.constructor.name == "TextFrame") {
              var lastPara = textFrame.paragraphs.lastItem();        //How can I find the index of this in relation to the story?
    How can I find the index of "lastPara" in relation to the story rather than the current container?
    I tried:
    var newPara = story.paragraphs[lastPara.index];
    but this results in an invalid object. . .
    alert(newPara.isValid);      //returns false

    The .index property is the character offset. So lastPara will begin at story.characters[lastPara.index].

  • I had 2 games of clash of clans on 1 game centre.  Now I can only see one?  How can I find the other one?

    My kids had 2 games of clash of clans on 1 game centre.  Now I can only see one?  How can I find the other one?
    My daughter set up a game centre on her ipad.  My son, on his ipad used the same game centre log in.  He then set up his own game of clash of clans.  After my son set up his Clash of Clans, my daugher set up her own Clash of Clans using the same game centre log in on her ipad.  Both were using the Clash of Clans successfully on their own ipads using the same game centre log in. 
    One day my son signed into someone elses Clash of Clans, since then he is unable to go back to his Clash of Clans and can only see his sisters.
    Please let me know if this can be resolved.
    We wish to delete my daughters Clash of Clans - as she does not use it at all.  We would like to regain access to my sons. 
    My son can visit his Clash of Clans - his clan name is 'The Big Boys'  He has a shield that is blue with a yellow lightning from top right to bottom left.  His name is Fat Poo (I know ridiculous).
    If you can help us or advise us what to do we would make my son very happy
    thanks

    Thanks for taking a stab at it: that didn't prove to be the problem. That option in the settings for tabbed browsing was not checked.
    I may be a bit behind the times: I am used to tabbed browsing showing all the tabs it possibly can, instead of just the last one. Sometimes it won't even show the last tab: I can have 15 tabs open, and not see a single tab. I've been confused by this into closing a window with lots of tabs open, because it looks like a single page-window.
    My main problem with the tab-bar flashing to the end of the row is that it means a great deal more mouse-clicking around to browse.
    I haven't tried installing the latest beta. Maybe that would fix the problem.
    Toddo

  • How do I find the image name and media_link for an ubuntu image in the Gallery?

    I am trying to create VM using Python API.  
    I have a custom Linux image:
    image_name = 'cloudN-Azure-20150205-os-2015-02-05'
    media_link = 'https://portalvhds10ssz63zgvb9g.blob.core.windows.net/vhds/cloudN-Azure-20150205-os-2015-02-05.vhd'
    When I used this image to create VM, it failed.
    I would like to use the ubuntu 1204 image in the Gallery.
    How do I specify the image_name and media_link in my Python code?  Basically, where and how do I find the image name and media_link for an image in the Azure image Gallery?
    Thanks in advance...

    hi sir,
    Did you try to use "List OS Image"? we can get the property form the results:
    result = sms.list_os_images()
    for image in result:
    print('Name: ' + image.name)
    print('Label: ' + image.label)
    print('OS: ' + image.os)
    print('Category: ' + image.category)
    print('Description: ' + image.description)
    print('Location: ' + image.location)
    print('Affinity group: ' + image.affinity_group)
    print('Media link: ' + image.media_link)
    print('')
    Please try it. Any questions or it doesn't work, please let me know.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • Item category determination error

    Hi all, we are basically working on SAP R/3 4.6c and SAP CRM 4.0 environment. and we are trying to maintain the same item categories in SAP CRM 4.0 as they are in R/3. when we are maintaining item category determinations in CRM 4.0 the system is thro

  • Oracle Access manager 10.1.4 (coreid) multiple authentication for same URL

    I am evaluating oracle access manager hence new to this product. I have a requirement where i have a /wps URL. Users coming externally go through reverse proxy server to the final IIS web server. Internal user access IIS directly. /wps should be prot

  • OWB 10.1 get sid and serial from running mapping

    I have a mapping that's executing way to long. I know how to kill a kill a session with alter system kill session <psid>, <serial> immediate. In OWB 10.2 these parameters are visible when you look at running mappings, in 10.1 you don't see them . I c

  • IDES ABAP Workbench and access key

    Hi everyone, I am new to SAP, please Help. 1. How i can use OSS ID. 2. I installed 4.6B IDES, but ABAP - Workbench is not    accessable. 3. How i can get Access Key for ABAP Workbench. Thanks in Advance Shareef

  • OpenDocument - Can you pass input controls & other table columns

    I need your expertise.....In Webi XI 4.0 I have used The OpenDocument URL to pass prompts as parameters...and that worked perfectly But now I want to pass input control as well...but now sure if this is possible and I would like to pass other columns