10.6 client can't login to 10.9 server

Wondering if there were any known issues with 10.6 clients connecting to 10.9 server.
When the user tries to log in, they get the invalid username and password message.  It does work from 10.9.
We just upgraded from 10.6 to 10.9 server.  We had a work through a number of issues with that.  We changed our hostname before upgrading and things were working until we upgraded to 10.9 server.  Had to rebuild open directory and fix some DNS issues.  Our DNS server is now on a different server.
These errors from system log may be relevant.

Verify that your network is functional and correctly-configured, and that your DNS services are correct, as a starting point.  Then definitely check the logs on the server, looking for clues around the particular errors being encountered.
Beachballs within the administrative tools can be triggered by network errors and by invalid DNS configurations, and wonky network settings can derail the distributed authentication.

Similar Messages

  • Clients can.t login

    Just did a clean 10.6 Server install,
    10.6 clients can login but 10.5 client can't.
    All appears ok, DNS etc.

    Yes indeed kjamezzz, that was my problem.
    But same as Good-heart, no connection possible to OD when away from server. Probably because the 'Users and Groups" preferences point to OD-server  server.local  instead of the external DNS record. But the client can't find the OD server when pointing to the external DNS record, even when they are in the same network.

  • 10.4 Server - Client Can't Login In

    Hello
    Basic knowledge of Tiger Server and need to troubleshoot a client that won't login to the network. It appears that the desktop comes up but the Client can't authenticate with the server.
    Any ideas?
    Can anyone step me through how to check the client config and see what is going on with the Login?
    Anyone available on Skype?
    Thanks In advance

    ok i had to poke around I changed users to crpyt pas word then back to open directory... got this error
    Error of type eDSAuthFailed (-14090) on line 3378 of
    /SourceCache/ServerManagerUserGeneral/
    ServerManagerUserGeneral-193.2.5/
    UserAdvancedPluginView.mm
    but after a few times i was able to get the open directory to stick and users can now log in... wierd... any one have an expalnation?

  • Clients can't login to OD when home folders are on server

    Lion Server 10.7.2, Lion Clients 10.7.2
    Fresh new server, not a single service is on, except for file sharing, dns, open directory.
    After setting up network, time to add some clients.
    Clients whose homefolders are marked as "only local" (in server app), can login to their account on a client machine, with obviously local homefolders.
    The moment the "only local" setting is changed to a network homefolder location (the default "Users"), they can no longer login, and get a simple message not being able to login.
    I do not have a lot of knowledge of servers, but this is a real simple setup:
    Fresh server, only one client machine (for now).
    In Directory Utility (on server AND client), the HomeDirectory and NFSHomeDirectory are matching, and pointing at the selected path for this network-user. As is in Workgroup manager, the homefolder path is pointing where is should.
    Just tried on a leopard client machine. Binding OD in seconds, but with the same client login result.
    Can anyone help me with this one?
    Thanks

    Yes indeed kjamezzz, that was my problem.
    But same as Good-heart, no connection possible to OD when away from server. Probably because the 'Users and Groups" preferences point to OD-server  server.local  instead of the external DNS record. But the client can't find the OD server when pointing to the external DNS record, even when they are in the same network.

  • How can I login on a remote server ?

    I want to copy some files from a remote server automatic by using a java program ,how can i do it?
    I just can't login!!
    i use the following code but I get nothing only the black green!!!
    Any advise may be useful,
    thanks in advance!
    Socket s = SocketOpener.openSocket(host, port, timeout);
    try
              System.out.println(s);
              BufferedReader read = new BufferedReader(new InputStreamReader(s.getInputStream()));
              PrintWriter write = new PrintWriter(s.getOutputStream(),true);
              write.println("username");
              write.println("passwd");      
         //     write.println("ls");
         //     write.println();
              boolean more=true;
              while(more)
                   String line= read.readLine();
                   if (line==null)more=false;
                   else System.out.println(line);
         System.out.println("error");
         catch (IOException e)
         //     System.out.println("error"+e);

    Why u r using Socket Class? Instead of this u use RMI.
    In RMI u can access server remotely.I don't know that u know anything about RMI or not.If yes then ok,otherwise mail me I will tell u total detail of how to use RMI.
    My email address
    [email protected]

  • Can not login to OS X Server 10.4

    Hi, I'm using OX Server 10.4 with Open Directory.
    I've been experiencing a strange behaviour sometimes. Every other month or so, users stop being able to login via SSH to my server.
    Disabling and enabling SSH in sharing doesn't do the trick...maybe it is some ApplePasswordService issue.
    I just reboot the server as I never found any way to resolve this either here or at any other site.
    Today, feeling confident that it could be an ApplePasswordService issue
    I've done the following:
    prompt>NeST -stoppasswordserver
    prompt>NeST -startpasswordserver
    Didn't work either...
    I reboot the server and now I can not login locally with my personal or admin account, so now it's complicated.
    Booted in Safe mode (pressing shift when booting) but i get the same thing. After entering the username and password the server shows that progress colour circle spinning forever.
    Booting in single user I was able to check the logs.
    In /var/log/secure i get:
    SecurityAgent[104]:Showing Login Window
    SecurityAgent[104]:User Authenticated: continue login process
    And nothing else after that.
    I've done "fsck -fy" in single user also without any result. I really need some help here...
    Any ideas please ?
    Thank you very much.
    Regards
    David

    I think I made a mistake and typed a command made for NetInfo. Now, could that disable Open Directory authentication ? If so, How can I restore the Open Directory authentication ?

  • Client can't access Serializable classes on Server

    Hi there, i have created a very simple client server model and had it running fine. I then added a new serializable class to the server and return it in a new method. Now when i try to run that method on the client side it complains it cannot find my new serializable class ("no class def found exception: rmi/server/ServerObject.class"). This is how it's setup at the moment:
    Server
    -ServerFront extends Remote
    -Server implements ServerFront
    -ServerObject implements Serializable
    The server binds itself to the registry as such:
    ServerFront engine = new Server();
    String name = "Server";
    ServerFront stub = (ServerFront)UnicastRemoteObject.exportObject(engine, 0);
    Registry registry = LocateRegistry.getRegistry();
    registry.rebind(name, stub);The ServerObject class looks like this:
    public class ServerObject implements Serializable
        private static final long serialVersionUID = 10L;
        //methods
    }The ServerFront interface has a method as such:
    ServerObject getServerObject () throws RemoteException;    Client
    -Client
    The client gets a reference to the server as follows:
    String name = "Server";
    Registry registry = LocateRegistry.getRegistry("127.0.0.1");
    server = (ServerFront)registry.lookup(name);Then tries to run the getServerObject() method:
    ServerObject = server.getServerObject();I run the client and server from jar files using the following commands:
    start java -Djava.rmi.server.codebase="http://www.xenwars.com/Server.jar" -Djava.security.policy=security.policy -jar Server.jar
    java -Djava.security.policy=security.policy -jar Client.jar"security.policy" allows all access, and the codebase URL points to my webserver where i uploaded an identical copy of the Server jar file that i'm trying to run.
    So... i've read all the Sun documentation and such and i'm massively confused why my client isn't simply downloading the serializable class as it's supposed to. Any help is massively appreciated, thanks :D
    Edited by: Aldarn on Feb 8, 2009 10:03 AM
    Edited by: Aldarn on Feb 8, 2009 10:05 AM

    By a mirrored interface i mean i just created an interface based off my existing serializable classes, i.e. copied the method constructors into an interface class and made the serializable class implement that interface.
    I think that must have been the problem then, that i wasn't giving the client an interface to the serializable classes on the server that it was attempting to download. I thought by using RMI on a serializable class it would just download that class when it needs it and so wouldn't need an interface pre-defining it.
    Thanks for the help! I'm now working on a system with 3 servers and one client, where two servers have various methods implemented and the third one acts as a bridge between the other two servers and the client - so the client only has to deal with one server. It's working fine but it's pretty annoying having to mirror all the methods from both servers' interface classes in the server that acts as a bridge's interface class - is there any way that the bridge server can inherit the other two servers interfaces into its own so i don't need to make loads of duplicate "shell" methods like this:
    // second server
    public ArrayList<Thing> getAllThings ()
        return things;
    // bridge server
    private SecondServerFront secondServer; // reference loaded in constructor
    public ArrayList<Thing> getAllThings () throws RemoteException
        return secondServer.getAllThings();
    }  

  • Can't Login to Netware 4 server using Client 3.4

    Hi,
    I have a small network with a dedicated server and two workstations
    connected using a linksys switch. The dedicated server is running
    netware 4.x (an old character based netware system). Both workstations
    have Windows 98 and log in to the server using Novell Intranetware 4.11
    software for Windows 95, which is several years old. Recently, I added a
    workstation and downloaded client 3.4 to use to access the server rather
    than install the Intranetware. It turns out that I can't get this
    workstation to log into the server using client 3.4. I get the login
    screen, but it reports it can't find a server or tree, even though I
    entered them correctly. Does anybody know why it won't access the server
    while the other workstations can?
    Thanks very much.

    On Sun, 10 Jul 2005 17:58:38 GMT, [email protected] wrote:
    >No, I didn't try installing it IPX only. Would I just reinstall the
    >client software and choose IPX? Also, what is the term frame type mean?
    It is a method for packaging data for transmital over IPX.
    >Where do I find out what frame type the computers have?
    At the console enter the command CONFIG. The displayed output will
    include the frame type. On the workstation, go into the Control
    Panel, Network, and find the NWLink IPX/SPX/NetBios Compatible
    Transport Protocol, and open its properties. Set the frame type to
    match the server. If more than one frame type was displayed on the
    server, use 808.2 if it is listed.
    >Is there any
    >other info I might need besides the login, server name, tree, and
    >context? This new workstation has Windows 98. In the Windows control
    >panel under network settings, what client should be installed? It gives
    >3 options.
    >
    > 1. Netware client 32 bit
    > 2. Netware client shell 4.x
    > 3. Netware client 3.x
    These option are for the Microsoft client for NetWare, which is not
    aware of NDS. Install the Novell Client for NetWare. Choose Custom
    install, IPX only.
    Donald Albury
    Novell Product Support Volunteer SysOp
    Sorry, no replies to e-mail responses
    "If something is so complicated that you can't
    explain it in 10 seconds, then it's probably not
    worth knowing anyway." Bill Waterson

  • OS X Server clients can't login after IP renumber and domain Name change

    I can not seem to get the logins working again on my OS X server (10.9.4 w/ server 3.1.2 on a 1 yr old. MacMini) after I needed to renumber the IP and change the domain name. I destroyed the Open Directory server, recreated it and created one test account. If I log in to the client with a local account I can connect to the server (Go>Connect To Server)  from the client using my newly created account, but when I try to login to the server  using the same network account login I get the "shaking head" response immediately. I have rebound the server to this client and it says that network accounts are available, but seem to be at a loss to understand why it won't let me login...
    The only error message I see in any of the logs is the following:
    (AFP Error Log:) Sep 15 20:21:47 isis.mydomain.com AppleFileServer[3032] <Info>: major error <1>: No credentials were supplied, or the credentials were unavailable or inaccessible.
    I'm not sure what credentials it is referring to. I created a self signed certificate that I am using with OD, could that be the one?

    Many Open Directory problems can be resolved by taking the following steps. Test after each one, and back up all data before making any changes.
    1. The OD master must have a static IP address on the local network, not a dynamic address.
    2. You must have a working DNS service, and the server's hostname must match its fully-qualified domain name. To confirm, select the server by name in the sidebar of the Server application window, then select the Overview tab. Click the Edit button on the Host Name line. On the Accessing your Server sheet, Domain Name should be selected. Change the Host Name, if necessary. The server must have at least a three-level name (e.g. "server.yourdomain.com"), and the name must not be in the ".local" top-level domain, which is reserved for Bonjour.
    3. The primary DNS server used by the server must be 127.0.0.1 (that is, itself) unless you're using another server for internal DNS. The only DNS server set on the clients should be the internal one, which they should get from DHCP if applicable.
    4. Follow these instructions to rebuild the Kerberos configuration on the master.
    5. If you use authenticated binding, check the validity of the master's certificate. The common name must match the hostname and domain name. Deselecting and then reselecting the certificate in Server.app has been reported to have an effect in some cases. Otherwise delete all certificates and create new ones.
    6. Unbind and then rebind the clients in the Users & Groups preference pane. Use the fully-qualified domain name of the master.
    7. Reboot the master and the clients.
    8. Don't log in to the server with a network user's account.
    9. Disable any internal firewalls in use, including third-party "security" software.
    10. If you've created any replica servers, delete them.
    11. As a last resort, export all OD users. In the Open Directory pane of Server, delete the OD server. Then recreate it and import the users. Ensure that the UID's are in the 1001+ range.

  • Lion Server: iOS 5 clients can't connect to Address Card Server

    I have set up shared accounts on the server for Calendar and Address Book (family) sharing. Although I can add and use the Address Book shared account on OS X Lion clients, I can't get this to work on iOS 5 clients (iPhone nor iPad). I keep on getting "CardDAV account verification failed".
    Calendar sharing works just fine on both OS X and iOS5 clients
    Let me briefly describe my setup and observations:
    Server:
    Running Lion Server 10.7.2 on Mac Mini (server)
    Using SSL connections with keys generated during set-up of the server
    Portforwarding in router (ao) for 8008 and 8843 (iCal and Address Book)
    Created  shared accounts on server for Calendar ("sharedcalendar") and Address Book ("sharedcontacts")
    In the DNS server I created services in my primary zone for "_caldavs._tcp." and "_carddavs._tcp." both on port 8443
    OS X Client (Calendar)
    Created additional CalDAV account in preferences (user "sharedcalendar")
    Left the server settings untouched (server path, port "auto" and using SSL but not Kerberos)
    Created in "sharedcalendar" different calendars and reminder lists for the family members which each can access from their OS X client
    This account is now set-up through Profile Manager (tried this with Address Book as well but didn't make any difference)
    iOS 5 Client (Calendar)
    Once tested on standalone and got this working I'm now using the Profile Manager to push the definition of the shared account to all clients
    Hostname with port 8443 (default)
    Left Principal URL blank since it was optional
    User "shared calendar" with the appropriate password
    Ticked "Use SSL"
    OS X client (Address Book)
    Created additional CardDAV account in preferences (user "sharedcontacts").
    Left the server settings untouched (port 443 using SSL)
    iOS 5 client (Address Book)
    In the settings add a CardDAV account (server, user "sharedcontacts", password, description).
    First error message "Cannot connect Using SSL. Do you want to try setting up the account without SSL?". When I press continue I get the error "CardDAV account verification failed"
    If I then save the account details still and edit the account I can access the "advanced settings". When I change to SSL I have tried port 0 (default value), 8443 (the one that's listed in the documentation) and 8843 (which is used by default if you try to set up the
    account in Profile Manager). All to no avail, including Profile Manager
    Observations:
    Lion Server app nicely lists both Calendar and Address Book Server as active (plus Profile Manager, File Server, Web server and Wiki server)
    When I access my server home page, Calendar is listed in addition to other services (Mail | Calendar | Change Password | Profile Manager) but not Address Book. Is this normal behaviour? i.e. can't Address Book entries be changed through a web interface?
    Address Book on OS X client uses 443 for SSL but does not require me to define port 8443 for secure iCal or Address Book server communications
    Lion Server Profile Manager specifies port 8843 as port for SSL communication. I only saw 8443 listed in documentation
    The response "can't connect .." or "account verification failed" happens very quick which make me think either the verification doesn't even leave the iPad or there is something wrong in the SSL connection
    Since iCal set-up works nicely using the same ports I am puzzled why it doesn't work for Address Book
    Your solutions or suggestions how to investigate are most welcome,
    Erik

    Thanks for joining the discussion.
    Although port 8443 is mosten quoted as correct port for CalDAV and CardDAV, port 8843 can be found both on Apple's website and other places:
    see Technical Note 1649 to find port 8443 listed for iCal and port 8843 for Address Book
    Mac OS X Lion Server for Dummies (sic) lists port 8843 on pages 236 and 238 but port 8443 in many other places
    when you want to push iCal and Address Book information with Profile Manager, Profile Manager lists port 8443 for iCal but port 8843 for Address Book as default:
    So I hope you understand I'm somewhat puzzled.
    I did get the Address Book working for my Lion desktops with the all the necessary certificates as far as I know, just not for the iOS devices (iPhone and IpPad). iCal sharing from Lion Server works fine on both Lion and iOS devices.

  • Can't Login to Embedded Web Server for HP Officejet Pro 8600 N911g

    I have a HP Officejet Pro 8600 N911g that I am trying to access in order to update the adress book for the scanner but in order to do that I must login. I have never set up a user name or password for it. Is there a default username and password?

    Hello @jessescopely, 
    Welcome back to the HP forums.
    I understand that when you try to access the EWS (Embedded Web Server) for your Officejet pro 8600, you are prompted for a username and password.
    Unfortunately there is no default username or password.
    On rare occasions this can be fixed by restoring the network defaults.
    Go into the Setup menu.
    Select the Network sub menu.
    Choose Restore Network Defaults.
    I have also sent you via private message the steps to reset your printer back to factory defaults.
    If you are unfamiliar with how the Forum's private message capability works, this post has instructions.
    If neither of those clear the password, please call our technical support at 800-474-6836.
    If you live outside the US/Canada Region, please click the link below to get the support number for your region. http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
    Aardvark1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!

  • Can't login to Mac X server after an unexpected CPU reboot

    I'm using Mac X server 10.4.10.
    Here is an interesting situation....after an unexpected system reboot, I was not able to login. This happened 2 twice. The first time, I was able to boot from another drive which was a clone of the drive with the difficulty, I went in to the passwd file located on the drive with the difficulty and enabled the root user, and after doing a startup on the drive with the difficulty, I was able to use the root ID to login. After doing so, I was able to reset the passwords normally used, and they worked going forward.
    Some time later, the unexpected reboot occured again. I tried the above method to regain acess and it did not work. So now, I'm wondering what is part of a normal shut down process that is needed to be in place in order for the next login to work.
    I ran all the built in disk maint routines but that did not help. I can boot from another drive and have full access to the data, I can also do a restore and over write the OS info with a baseline functional install, but I am wondering if there is another short cut way of resolving this. I'm thinking that there is an encrpyted file that gets out of sync if a proper shut down is not done resulting in an normal login process from happening. I'm not using keychains and do not have any speacial features enabled as well as just running bare bone defualt configs.
    This is not the ned of the world...I can redue the install pretty easy and still have access to the data...just wondering if anyone has a short cut process to fix this.

    "I would try booting from the cd and resetting the password of a local acount. This will at least allow you to log in. You might want to look into why the server is rebooting though as that seems to be the real problem. "
    booting from the install cd...easy......resetting local account...interesting ....how would that be done?

  • Can't login to Final Cut Server with AD group...

    I just setup the Final Cut server and I also linked it to Active Directory so we could use the groups on it. I opened up the preferences and added a group to that from AD and then set them with admin. However, when I login with a user who is a member of that group it won't let me in. The only user I can get on with is the local admin. Does anyone know how I can use the members of the AD group so if their password changes or the group membership changes I don't always have to go and update it?

    now when I run:
    ./adprincadd.pl -dc <fully qualified hostname of AD server> fcsvr/<fully qualified hostname of FCSVR machine>
    I get:
    No Kerberos TGT!
    You must have kerberos ticket that allows writing to the computer record in AD. Use kinit to get a ticket
    but kinit give me: Cannot find KDC for requested realm
    How can I correct this so I can get the kerberos ticket and resolve this?

  • Can not login groupspace when admin server is not running

    hi Experts,
    I am using wc11.1.1.5, I found an issue like this:
    1. startup admin server
    2. startup WC_Spaces
    3. stop admin server
    4. login WC_Spaces
    At this time, I got the following issue:
    =============================
    Caused By: oracle.security.jps.service.idstore.IdentityStoreException: JPS-01520
    Cannot initialize identity store.
    at oracle.security.jps.internal.idstore.util.IdentityStoreUtil.getIdenti
    tyStoreFactory(IdentityStoreUtil.java:168)
    at oracle.security.jps.internal.idstore.AbstractIdmIdentityStore.getIdmF
    actory(AbstractIdmIdentityStore.java:174)
    at oracle.security.jps.internal.idstore.AbstractIdmIdentityStore.initSto
    re(AbstractIdmIdentityStore.java:124)
    at oracle.security.jps.internal.idstore.AbstractIdmIdentityStore.getIdmS
    tore(AbstractIdmIdentityStore.java:110)
    at oracle.webcenter.framework.service.Utility$1.run(Utility.java:1124)
    at oracle.webcenter.framework.service.Utility$1.run(Utility.java:1121)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.webcenter.framework.service.Utility.getDefaultIdentityStore(Ut
    ility.java:1118)
    at oracle.webcenter.framework.service.Utility.getUserUniqueIdentifier(Ut
    ility.java:1046)
    at oracle.webcenter.framework.service.Utility.getUserName(Utility.java:6
    05)
    at oracle.webcenter.webcenterapp.model.security.WebCenterSecurityUtils.g
    etUserUniqueID(WebCenterSecurityUtils.java:2050)
    at oracle.webcenter.webcenterapp.internal.metadata.WebCenterUserCC.getVa
    lue(WebCenterUserCC.java:74)
    at oracle.mds.internal.cust.CustomizationUtils.appendCLs(CustomizationUt
    ils.java:456)
    at oracle.mds.internal.cust.CustomizationUtils.getCLList(CustomizationUt
    ils.java:282)
    at oracle.mds.core.MDSSession.getMetadataObject(MDSSession.java:3121)
    at oracle.mds.core.MDSSession.getMetadataObject(MDSSession.java:1228)
    at oracle.mds.core.MOResolver.getMetadataObjects(MOResolver.java:213)
    at oracle.adfinternal.controller.metadata.provider.MdsMetadataResourcePr
    ovider.getMetadataObjects(MdsMetadataResourceProvider.java:421)
    at oracle.adfinternal.controller.metadata.provider.MdsMetadataResourcePr
    ovider.loadUnmutalbeMetadataResources(MdsMetadataResourceProvider.java:372)
    at oracle.adfinternal.controller.metadata.provider.MdsMetadataResourcePr
    ovider.loadResources(MdsMetadataResourceProvider.java:346)
    at oracle.adfinternal.controller.metadata.provider.MdsMetadataResourcePr
    ovider.getBootstrapResources(MdsMetadataResourceProvider.java:238)
    at oracle.adf.controller.internal.metadata.MetadataService$Bootstrap.add
    All(MetadataService.java:905)
    at oracle.adf.controller.internal.metadata.MetadataService.initializePag
    eFlow(MetadataService.java:657)
    at oracle.adf.controller.internal.metadata.MetadataService.getPerUserCac
    he(MetadataService.java:760)
    at oracle.adf.controller.internal.metadata.MetadataService.getPerUserCac
    he(MetadataService.java:729)
    at oracle.adf.controller.internal.metadata.MetadataService.getAdfPageFlo
    w(MetadataService.java:459)
    at oracle.adf.controller.internal.metadata.MetadataService.getPageFlow(M
    etadataService.java:448)
    at oracle.adf.controller.internal.metadata.MetadataService.getActivity(M
    etadataService.java:304)
    at oracle.adfinternal.controller.state.ViewPortContextImpl.getPhysicalUR
    I(ViewPortContextImpl.java:1074)
    at oracle.adfinternal.controller.application.AdfcPageResolver.getPhysica
    lURI(AdfcPageResolver.java:75)
    at oracle.adf.controller.faces.lifecycle.Utils.getPagePathFromViewId(Uti
    ls.java:44)
    at oracle.adfinternal.controller.application.model.UpdateBindingListener
    .setBindingELVariable(UpdateBindingListener.java:108)
    at oracle.adfinternal.controller.application.model.UpdateBindingListener
    .beforePhase(UpdateBindingListener.java:61)
    ================
    after restart admin server, this issue was solved.
    My question is this normal? this could be a issue for high availability.
    Best regards

    Admin server's purpose is - to control other managed servers.For High availability you can use clustered enviroment and other stuffs as suggested by oracle.
    Without running Admin server how security->myrealms>Users will work ?Users will not be available ,that's why you are getting such errors.
    Regards,
    Hoque

  • Can't Login to my VM Server

    Hi,
    I had created a VM two months ago and I can login and everything running fine. Then I convert the package to pay-as-you-go before the trial period expired. Today I try to login again but I can't log into my server using the same password. I don't
    know what is happening. Anyone can provide some advice on this? Thanks in advance.

    Hello,
    Based on your description, you create a free Azure VM two months ago and then convert the free trial subscription to a pay-as-you-go account before the 30 days trial ends (last month). Did you cannont to the server successfully after convert to
    pay-as-you-go? Or it is you first time connection after convertion?
    Just as Jessica post above, you can check the service status on the Windows Azure Management Portal and verify the Subscription you used is active.
    If the Subscription is correct and server is running, and you did get any information about failed connection, then you should connect to Windows Azure support.
    You can contact support team by creating a support ticket at 
    http://www.windowsazure.com/en-us/support/contact/ .
    Reference:http://blogs.msdn.com/b/wats/archive/2013/10/12/windows-azure-30-day-s-free-trial-uncovered.aspx
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

Maybe you are looking for