Computer Name/"Computer's website" discrepancy after static IP used.

Modifying my network settings to use a static IP has caused a problem with my web sharing. Whereas before the computer name, computer's website and personal website were in sync, now the computer name is correct, but the latter two use something different and I cannot modify them. Any ideas about how to get the computer's website and personal website back to using the computer name?

Sure. Fix your DNS.
Now that your machine is using a static IP address, you'll need to add corresponding records to your DNS server for your server's new IP address. Ideally you should add both forward and reverse records (Server Admin will do this automatically if you're using that to manage your DNS).

Similar Messages

  • PowerShell Web Access - Prefill Computer Name?

    One of the devs asked me if there was some way to prefill the computer name field for the PSWA site (since we use the localhost machine quite often).
    Is there any way to do this?  He mentioned maybe query params?

    If there is a query parameter or query string that can be added to the URL then I am not aware of it. Even so, it can be done.
    You can modify the code in the logon.aspx file but it'll take some work. Start by stopping the website in IIS. Then locate the file at C:\Windows\Web\PowerShellWebAccess\wwwroot\en-US\logon.aspx. You need to add value="computername" to
    the line <input id="targetNodeTextBox" name="computer-name" type="text" class="required" runat="server" clientidmode="Static" />. I added it after the word input and before id="targetNodeTextBox"...
    The issue here is that you will have to take ownership of the file first, add modify and write permissions to a group (that you're in) or user (that's you) on the file, copy the file out of the directory, edit it as mentioned above, save it with a new name
    and close the file, rename the file to logon.aspx, and then copy it back to the directory above. Painful (and
    possibly a security risk?), but that's the only way in which I am aware.
    Be sure to start the website in IIS before reloading your PSWA website.
    Edit: Added a step to the instructions about adding permissions.

  • How to change the computer name

    I need to change the computer name but after this I cannot access to the historical data (printing alarms).
    I have already changed the settings in Options->System and restarted the system.
    With MAX 3.0 I can see that all the alarm records are stored with the old computer name \\computer name\process\....
    How can I do to read the old alarms with the new computer name?
    Thank you
    Michael

    Hi,
    When you change the computer name in Options>>System, you are not changing the name of the computer. Rather, you are telling Lookout to log to either a remote or local system. Here are the specifics:
    1. Computer Name: Name you want the traces to appear with (\\computer_name\process\...)
    2. Default Computer: Computer you want to log to. If the name listed here is different than your computer's name (as seen by Windows), then it will attempt to log directly to that remote machine.
    3. Default Path: Directory on either your local or remote machine that you want to log to.
    To change the name of your local computer, you will need to do that in Windows. If you have WinXP, you can do this by right-clicking on My Computer and selecting Computer Name.
    Go
    od Luck
    Mike

  • API to get computer name

    i want to get computer name in Java program. I tried to use System.getProperty(), but seems like there is no appropriate key.
    please advise. thanks!!

    Here's some different ways using java.net package to get various names and numbers. Of course, this requires a network id.
    import java.net.*;
    public class GetIPAddress {
        public static void main(String[] args) throws UnknownHostException {
            System.out.println(InetAddress.getLocalHost());
            System.out.println(InetAddress.getLocalHost().getHostName());
            System.out.println(InetAddress.getLocalHost().getHostAddress());
            System.out.println
                ("+++ If there is more than 1 IP address for HostName +++");
            InetAddress[] inet = InetAddress.getAllByName(InetAddress.getLocalHost().getHostAddress());
            for (int x = 0; x < inet.length; x++)
                System.out.println
                    ("IP " + (x + 1) + ": " + inet[x].toString().substring(1));
    }The following one takes an IP address argument.
    import java.net.*;
    public class GetIPName
        public static void main(String[] args)
            try
                // Look up ip address, eg 123.123.123.123
                InetAddress local = InetAddress.getByName(args[0]);
                System.out.println(local.getHostAddress());
                System.out.println(local.getHostName());
                System.out.println(local.getCanonicalHostName());
            catch(Exception e)
                e.printStackTrace();
    }

  • Web Service Client using computer name instead of IP

    Hi,
    I've built a small EJB web service with a JAVA application deployed via JAVA Web Start for the client.
    I testing the application on our LAN and it worked perfectly on one machine. I tested it on another machine and I get an erro along the lines of:
    HTTP Transport Error java.net.UnknownHostException: Ian
    "ian" being the computer name of the server machine hosting the EJB we service. I presume the program worked on the first machine as it new which computer on the LAN was "ian", whereas the second machine didnt'.
    The applications were built in NetBeans and the only place i can see the "ian" address being used is in the client WSDL file:
      <service name="VOQAOnline">
        <port binding="tns:VOQAOnlineSEIBinding" name="VOQAOnlineSEIPort">
          <soap:address location="http://ian:8080/VOQAOnline-EJBModule/VOQAOnline"/>
        </port>
      </service>Netbeans seems determined to keep this address using the computer name, even if i delete the web service refernce add it again using the server ip address. I've also tried editing the WSDL file in the client JAR post compile, however the error still occurs, so maybe the problem is somewhere else?
    The App server I am using is JBoss 4.0.3. Maybe there is a configuration on the server i need to do?
    Eventually I plan to deploy the client app over the Internet, so using the computer name is clearly insufficient and it needs to use the IP. It's really annoying how it works on some machines on the network but not others. Any ideas on how to solve this?

    You can associate a Virtual Host to the loopback IP address 127.0.0.1 read about Virtual Hosts here: http://tomcat.apache.org/tomcat-6.0-doc/virtual-hosting-howto.html
    But with the above configuration alone you can access your app via http://somedomainname.com only on your local machine, no one else on the internet will see it.

  • How to get client computer name in Developer 9i

    Hi ..
    I m using developer 9i from several days.But i need to get the client computer name.But i heard that i need to use GetClientInfo java bean to get that.How to use GetClientInfo.What is the procedure to use that?What code i should use?In Sample code in this site..there was a example.But in that example there is nothing clear.What to do and what code should i use?
    Sharif

    This shouldn't be any problems if you'd successfully installed the Forms Demos. Anyhow, another way is to use WebUtil which I'd prefer. There's tons of other interesting and useful functions in WebUtil.
    Also, I'd really, really think about using Forms 10g instead of 9i.
    Regards,
    Martin Malmstrom

  • How to get cleint computer name in Flex

    I am using SBI(Spring BlazeDS Integration) for my project.I need to send the computer name from flex client.I try it with
    Using the Capabilities classFollowing Link Also didnt help for me.....
    http://livedocs.adobe.com/flex/3/html/index.html?content=18_Client_System_Environment_1.ht ml
    If Any body please help me...
    And Following is answer for http://forums.adobe.com/thread/630928?tstart=0
    <mx:DataGridColumn headerText="Allocated Amt"
    editorDataField="text" dataField="allocatedAmt"
    itemRenderer="mx.controls.TextInput" editable="true"/>
    Just replace TextInput--->Your decide controll

    Hi,
    Yes its true,
    But then, brother again I am calling to server,isn't it? Then server will return me his computer name. But I want to get a client computer name.
    hostname is Server Computer name. Isn't it?
    try {
        InetAddress addr = InetAddress.getLocalHost();
        byte[] ipAddr = addr.getAddress();    // Get IP Address
        String hostname = addr.getHostName();   // Get hostname
    } catch (UnknownHostException e) {
    Any way thnx brother....Any ideas from you???
    Happy Codding.......

  • Computer Name With Number

    I was a beta tester of Yosemite and recently updated to retail.  This happened while I was a beta tester and I thought it would go away, but it hasn't.  My computer name is being followed by a (#) that continues to increase for no reason (e.g. (1), (2), (3), etc.) - any ideas?

    I'm having the same issue with my iMac (early 2008) and MacBook Pro (2010). It's very weird, both machines insist on appending numbers in parentheses to the end of the Computer name: in the Sharing preference panel. However the name  given beneath that in the message "Computers on your local network can access your computer at: <computer-name>.local" does not include the number, just the normal hostname.local. Also, using hostname command in terminal returns the regular <computer-name>.local without a number.
    If I remove the (n) at the end of the Computer name: field it only lasts a few seconds before changing back to a number (though the number is not always the same as before, sometimes it goes to (2) or (3) rather than the (4) it was originally.
    If I open a Finder window with the sidebar showing I see under Devices an entry for "<computer-name> (4)" and under Shared it shows:
    <computer-name>
    <computer-name> (2)
    <computer-name> (3)
    I have screen and file sharing enabled, I tried switching them off and on again, I've tried rebooting, nothing seems to stop it appending the number and I can't get rid of the <computer-name> (2) and <computer-name> (3) entries under Shared either.

  • Random characters after computer name

    Hello,
    We have a new issue with our agent deployment since we use MDT to deploy our workstations.
    When computer register to ZCM some random characters appear after computer name, for example:
    Computer name: corporate001
    ZCM computer name: corporate001-741132927c2e6f41b5569a9f9409b983
    Do you have an explaination?
    ZCM Agent is automatically installed after deployment through a .vbs script.
    cscript ZCMscript.vbs
    Code:
    Set objShell = CreateObject("Shell.Application")
    objShell.ShellExecute "PreAgentPkg_AgentCompleteDotNet.exe", "-q " & "-x"
    strComputer = "." ' local computer
    strProcess = "Setup.exe"
    Do Until isProcessRunning(strComputer,strProcess)
    WScript.Sleep(5000)
    Loop
    Do While isProcessRunning(strComputer,strProcess)
    WScript.Sleep(5000)
    Loop
    WScript.Quit 0
    ' Function to check if a process is running
    FUNCTION isProcessRunning(BYVAL strComputer,BYVAL strProcessName)
    DIM objWMIService, strWMIQuery
    strWMIQuery = "Select * from Win32_Process where name like '" & strProcessName & "'"
    SET objWMIService = GETOBJECT("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" _
    & strComputer & "\root\cimv2")
    IF objWMIService.ExecQuery(strWMIQuery).Count > 0 THEN
    isProcessRunning = TRUE
    ELSE
    isProcessRunning = FALSE
    END IF
    END FUNCTION

    Yes, the random number is the "Device GUID".
    In your Example there would already be a device called "corporate001" in your zone.
    The GUID is added since there cannot be two devices with the same name.
    There are reconciliation rules that determine "matches".
    Most likely, your rules rely upon MAC and/or SN and this changed instead of relying upon Workstation Name.
    No one way is "Correct".
    It really comes down to what works for you.
    Most likely a tweak of the rules to rely more upon "Workstation Name" may work best for you since I suspect your devices are in a domain if using MDT, which means the names are unique.

  • Authentication popups after computer name changed to computer record name

    Hi
    I'm not sure if anyone else is facing this issue, but I have been unable to find anything in the forums.
    I have setup a number of client machines on Lion Server, all using 10.7.4. I used WGM and Remote Desktop to make some changes and deploy software
    Since then, I have been getting the following authentication popup on all client machines (twice after login, and then every 30 mins or so afterwards):
    Mac OS S wants to make changes. Type an administrator's name and password to allow this.
    The changes made prior to this happening were:
    - Overplay VPN installed (using RD pkg install)
    - Adobe CS 5.5 installed (using Adobe Enterprise Deployment Tool and RD package install)
    - Evernote installed (using RD copy)
    - Set computer name to computer record name (From WGM > Computer Groups > Preferences > Options)
    I have now removed all the installed software from one machine, and log in as administrator, unbind the machine, rename the computer manually to the record name, rebind the computer.
    As far as I can see, I have reverted all changes one at a time, and am still receiving the admin password requests when logged in as a network user.
    The only machine that seems to be ok, is the one where the name change to computer record name was unsuccessful.
    Does anyone have any suggestions as to how I can fix this issue?
    Thanks
    Suraj

    Issue resolved. It turns out none of my changes caused the issue as much as Google Chrome Autoupdates. The new version constantly checks for updates which makes clients on Lion Server go haywire. Solution to turn off auto-updating:
    Open a Terminal window:
    defaults write com.google.Keystone.Agent checkInterval 0
    Relaunch Chrome.

  • Change Computer Name after first TC backup

    Has anyone tried changing their Computer Name after the first TC backup. The sparse image created on the TC which contains the backup has the computer name as the first part of its name, presumably any change of computer name would have to automatically change the name of that sparse image. I would like to change the name of my iMac from the default but don't want to do this if I have to do a brand new full Time Machine backup afterwards.

    I have changed the computer name (in System Pref: Sharing) of an iMac on our network after the initial backup to TC. There was no problem. This is due to the fact that TC uses the MAC address (also called Ethernet ID) to differentiate machines connected to it.
    You can see your machine's MAC address in the advanced area of the Network SysPref under the Ethernet Tab. This number is also in the .sparsebunle idisc image created by TC.
    Good luck with the name change.

  • EM not working Properly after computer name change

    Hi Friends,
    i hav 10gr2 DB, everything was fine.
    last week my computer name changed, and EM stops to work.
    so i reconfigure EM through command line.
    after that EM started, but when go to 'Performance' or any other tab in browser.
    its asks for login and shows 'oldcomputername:orcl:1521' in connection string.
    so whats other things , i hav to change?
    Thanks

    Search every file under $ORACLE_BASE for the old name.
    Assuming *NIX use find and grep.
    Why do people rename servers? A name is a name is a name. All it ever does is cause problems.

  • Computer name changes after security update

    We installed the latest security update for OS X 10.5.8 and after installation the computer name was automatically changed. It was "Name (2)". After the update it magically became "Name (3)". It becomes very confusing because we share this computer's printer with a Macbook and it can't find the shared printer after this happens. Is this normal? It has happened after two security updates.

    This is how it SHOULD be. When you try to rename a Mac in a LAN to a Computer Name which is already given to another Mac in the LAN, Mac OS X will suggest to add a number to the name you tried. When you rename the Mac to this Computer Name before you connect to the LAN Mac OS X will add the number automatically.
    But the problem this thread is about (imho) is that Macs with UNIQUE Computer Names in the LAN, unexpectedly add a number, when there is for sure no other computer with that exact name in the LAN.
    I can witness this behavior round about two to three times in a month in our network of over one hundred Macs.
    By the way: Not only the Computer Name will change but the Local Hostname too.
    Computer Name: "Example Name" -> "Example Name (2)"
    Local Hostname: "Example-Name.local" -> "Example-Name-2.local"
    This looks more like a bug in the system than an operating error.
    Any suggestions anyone?

  • What modifications to be done after changing the Computer name..?

    Hi all...
    What are the modifications to be done after changing the Computer name..(Hostname) to connect the oracle. When i am restarting the TNS Listener manually, it is giving Error 1067.
    Please tell me, what are the modifications to be done, if i change the computer name.
    Thanks in advance,
    Pal

    You need to change your hostname/ip in listener.ora

  • Terminal shows old computer name (after migration)

    After using migration assistant (over Ethernet) from a 2007 mini to a mid-2011 mini:    the Terminal shows the old computer name in the prompt.
    (Many other oddities -- every file action brings up "Finder wants to make changes" and requires a password, to move or copy or delete any file).    I see this problem has been reported before over the  years but I did not find any answer that didn't have further questions

    Aha, changing it in "Sharing" seems to have worked for me (suggestion from 'Kappy' in the 2008 "Re: Migration: (UNIX) thread, although it did not work for others in that thread at the time):

Maybe you are looking for

  • IPod Nano Black 1gb error installing ipod drivers

    Hi there i just bought an IPOD Nano Black. My problem is that i want to install the drivers for the ipod but i'm getting an error: 1608: Unable to create InstallDriver instance, Return code: -2147024894 I don't know what to do can anyone help me with

  • What would cause a prolonged blue screen during start up?

    I have an iMac desktop.  Recently I've had trouble with a prolonged blue screen during start up (approx. 10 mins) before it finally takes me to the login screen.  Any ideas why this is happening? Jeff P.

  • I cant open my trash

    Whatever I do, I cant open my trash. Ive tried relaunching finder, and "killall dock" and "killall finder" in terminal. Nothing works. ans when i look up trash in spotlight I get a error. I dont really get how terminal works either.....

  • How do i accept a request from pin blackberry messanger

    i had a request for the blackberry messenger service which a friend sent but nothing has come on the program to accept he enter my pin number in the add a contact and i not recieved anything also i done same to his pin and its showing as pending Solv

  • COST CENTER CREATION

    CAN ANYONE TELL ME HOW TO CREATE A COST CENTER?