Cannot create Administrator Account after Installation

Hi,
I would like to have the server assistant of OS X Server 10.6 to configure the whole server for my needs. Unfortunately this didn't work, even after the 5th trial.
Here is what I did:
- Local Installation via original DVD
- Configuration windows (server assistant) populated with my needs.
I get an error message, telling me that the keychain for the administrator account could not be created. The process brakes and the server won't be configured. This error happend twice.
I have no option but to install the whole server software again. I could not find out how to restart the configuration / setup again from scratch WITHOUT having to install the whole system again.
However, after the broken configuration procedure I get a blank login window. I found out that the system root account exists but NOT the administrator I wanted to create. What I can do is: reboot from the install DVD and reset the system root password. I can, then, log in as system root and get a desktop.
But I still don't have any more users and - even worse - the server is not configured.
I really don't want to configure every setting on my own due to a serious lack of basic knowledge.
Is there any way to have the setup assistant getting to work? Can I "restart" the configuration process without installing the whole system again?

I had this same problem. I experienced it first on a Mac Mini, not my Xserve, when I was doing a test install as recounted below. I was able to recreate the problem even.
I discovered that for me the problem only occurs if I chose during setup to import groups and users from an already existing Open Directory. If I skip this step everything works fine, and I can manually import users and groups by exporting them from OD on my Xserve and manually importing them via the exported files.
So here is the setup:
1.) During the fresh install on the Mac Mini I created the user with my short id of pope.
2.) When asked if I wanted to import OD users and groups, I did and I imported them by having it connect to my X-Serve (10.5.8)
3.) The installer runs in to keychain problems and eventually you end up with a blue screen and then the login screen
4.) At this point no usernames or passwords work
If I skip step 2, 3 and 4 never happen.
I thought maybe there was a conflict between my local shortname and a shortname in the OD that I attempted to pull from. I checked though and no conflict exists.
Here is a more detailed account:
I set my name, shortname, and password and continued on. Towards the end of installation I imported the users and groups from my 10.5 server and continued to setup services.
Eventually a screen popped up saying that there was no keychain for my user. It offered to reset the keychain, but it wouldn't accept my password. After a handful of tries the screen turned blue and after a long while the system came back up, but this time to the normal login screen.
And at the login screen the account I setup doesn't work. I'd reset the password via the booting from the setup disc, but I'm sure Snow Leopard just decapitated itself.
I'm going to reinstall from scratch because I have the aching feeling that when it went haywire it probably !@#$% any services since it decided to commit suicide.
Message was edited by: Pope7

Similar Messages

  • Cannot create a session after the response has been committed (Tomcat 6)

    I'm getting a rather annoying error when I try to open a pretty basic JSP page.
    I'm rather new to the whole JSP scene, so I'm following the example found on pages 287 and onwards in "JSF in Action - Manning" in case anyone wanted to check my code against the source.
    I've searched for about 4 hours now, coming back to this site a couple of times, once reading about writeouts and stuff. But I'm not really sure this is the issue in this case and if it is, where exactly the problem lies.
    I've already fixed a number of errors I got (jtsl.jar and standard.jar missing etc...) but this particular problem is driving me (and my co-workers for that matter :-) ) up the wall.
    Anyone willing to help me out here?
    Error:
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: Cannot create a session after the response has been committed
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:152)
    root cause
    java.lang.IllegalStateException: Cannot create a session after the response has been committed
         org.apache.catalina.connector.Request.doGetSession(Request.java:2301)
         org.apache.catalina.connector.Request.getSession(Request.java:2075)
         org.apache.catalina.connector.RequestFacade.getSession(RequestFacade.java:833)
         org.apache.myfaces.context.servlet.SessionMap.setAttribute(SessionMap.java:53)
         org.apache.myfaces.util.AbstractAttributeMap.put(AbstractAttributeMap.java:103)
         org.apache.myfaces.util.AbstractAttributeMap.put(AbstractAttributeMap.java:35)
         org.apache.myfaces.application.jsp.JspStateManagerImpl.saveSerializedViewInServletSession(JspStateManagerImpl.java:523)
         org.apache.myfaces.application.jsp.JspStateManagerImpl.saveSerializedView(JspStateManagerImpl.java:358)
         javax.faces.application.StateManager.saveView(StateManager.java:47)
         org.apache.myfaces.application.jsp.JspViewHandlerImpl$StateMarkerAwareWriter.flushToWriter(JspViewHandlerImpl.java:387)
         org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:322)
         org.apache.myfaces.lifecycle.RenderResponseExecutor.execute(RenderResponseExecutor.java:41)
         org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:132)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:138)
    Source Code of login.jsp:
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
        pageEncoding="ISO-8859-1"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <f:view>
    <html>
    <head>
         <title>
              <h:outputText value="ProjectTrack"/>
         </title>
    </head>
         <body>
              <table>
                   <tr>
                        <td>
                             <h:graphicImage url="/images/logo Skillteam.jpg"
                             alt="Welcome to ProjectTrack"
                             title="Welcome to ProjectTrack"
                             width="435" height="120"/>
                        </td>
                   <td>
                        <font face="Arial, sans-serif"
                        size="6">
                        <h:outputText value="ProjectTrack"/>
                        </font>
                   </td>
                   </tr>
         http://forum.java.sun.com/post!default.jspa?forumID=45#
    Click for bold     </table>
         </body>
    </html>
    </f:view>
    web.xml & faces-config
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns="http://java.sun.com/xml/ns/javaee"
         xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
         <display-name>ProjectTrack</display-name>
         <welcome-file-list>
         <welcome-file>faces/login.jsp</welcome-file>
         <welcome-file>index.html</welcome-file>
         </welcome-file-list>
         <servlet>
         <servlet-name>Faces Servlet</servlet-name>
         <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
         <load-on-startup>1</load-on-startup>
         </servlet>
         <servlet-mapping>
         <servlet-name>Faces Servlet</servlet-name>
         <url-pattern>/faces/*</url-pattern>
         </servlet-mapping>
    </web-app>
    <?xml version="1.0"?>
    <!DOCTYPE faces-config PUBLIC
    "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
    "http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
    <faces-config>
         <navigation-rule>
              <from-view-id>/login.jsp</from-view-id>
              <navigation-case>
                   <from-outcome>success</from-outcome>
                   <to-view-id>/inbox.jsp</to-view-id>
              </navigation-case>
              <navigation-case>
                   <from-outcome>failure</from-outcome>
                   <to-view-id>/login.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
    </faces-config>Setup:
    Eclipse Europe 3.3.0
    Tomcat 6.0.13
    MyFaces 1.2
    JRE 1.6.0_02

    When searching for this error, this was the first page google gave me. I found the answer and just in case anyone else stumbles in here with the same question I thought I'd share my findings.
    Unfortunately, if your problem is the same as mine, you're going to feel pretty silly. I was navigating to the wrong page. If MyFaces(when running tomcat) tries to resolve to a page that doesn't exist, the error given above is what happens.
    In my case I accidentally put my .jsp page into the wrong directory and ended up banging my head against the wall for an hour figuring that out. Hope this helps someone.

  • Cannot create an account to register my printer and acquire my password

    I have a HP Photosmart Plus wireless printer. I cannot create an account to register and acquire my password. It tells me my email address is incorrect...which it is not and/or my password is incorrect. If I go to "forgot my password, it keeps telling me to enter my e-mail address even though I have done that. I tried to sign in using my Facebook account....doesn't let me and tried creating an HP Passport account. Cannot do ANYTHING!

    Hi,
    Thank you for posting,
    You will ge this error message if you have a Snapfish account created on your name.
    Please go to www.hp.com/go/eprintcenter and click on the Sign in Button. In the Sign in Page, please click on the Snap Fish icon and then enter the email address and the password and that will login to the eprint center.
    If you are still unabel to login, please click on Forgot Password on the Snap-Fish popup screen and then you will get an email with a temporary password and a link to reset the password. Once the password is reset, please go back to www.hp.com/go/eprintcenter and click on the Sign in Button. In the Sign in Page, please click on the Snap Fish icon and then enter the email address and the password and that will login to the eprint center.
    Say "Thanks" by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as "Accepted Solution"
    (Although I am employed by HP, I am speaking for myself and not for HP)

  • Cannot Create Blackberry Account?

    I can't set up my Pearl 8110.
    All I get when I get to e mail set up is   "Cannot create and account: An account alreday exists for this Blackeberry device.   It then tells me to call VodUK, who tell me Blackberry is active"
    I've set up through the wizard but when it comes to e mail set up, it won't let me when I enter PIN & IMEI as it says already registered. Phone is brand new unlocked. I';m using a Vodafone SIM and the phone is branded Vodafone.
    How can I resolve this?

    Yes, you need to contact Orange andn ask that the PIN be removed from the old account there.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Cannot creat icloud account

    cannot creat icloud account .i have latest version ios 7

    What happens when you try?  Any error message?

  • Unable to log into administrator account after software update

    I've done a clean installation of server 10.5 on a G5 Xserve using the simplified "workgroup" setting. Created a named administrator account as part of the setup. Once passed the initial setup screens I did a software update to 10.5.8. After reboot I'm locked out of the named administrator account. I can still log in as root and localadmin using the same password. However, I don't see any accounts listed under the Users tab in Server Preferences. I've done nothing to this system other than answer a few standard questions during install and then update software.
    This result is repeatable as I tried simply reinstalling the server OS figuring I must have done something wrong the first time. In fact the reason I'm reinstalling in the first place is related to this problem. Something caused all my admin and user accounts to go away on the original server setup. Couldn't figure it out so I decided to do a fresh install. I realize now it was likely related to a software update.
    When logged in as root and using Console I see errors like "'No LDAP Master' while processing a command of type: 'readSettings' in plug-in: 'servermgr_accounts'". I'm a newbie to the server world and I'm not sure what that means.
    There should be nothing remotely fancy going on here. Simply a stand alone server getting a fixed IP from a router. A single admin account, no directory services. Before the software update everything seemed fine.
    Any help would be appreciated.

    Hi,
    I have same issue and i have resolve so.
    login as root and password
    Verify if you have in /Users/xyz : your admin home folder
    if yes, create a new user with : Preference System, Account, create new user
    set as Administrator, give same name as your /Users/xyz home folder
    then click OK, a message will appeart that the folder exist, click YES.
    that's resolve my issue

  • Cannot start j2ee engine after installation

    Hi All,
    After installation of WAS 6.30 (Netweaver 04) on IBM AIX 64 bit (with db2) my server is running but very slow.
    When the server is stopped and started the first time after the installation the dispatcher is running just fine but the server is not loading all applications. The server is timing out during load but with telnet it’s possible to load the applications manually.
    I tried to change the memory settings as described in some of the SAP notes but still no luck.
    The server is now failing with the following message in the dev_server0 log file (work directory) and the server is never writing to the output log file.
    ERROR => JHVM_LoadJavaVM: Cannot create Java VM (rc=-6) [jhvmxx_mt.c  466]
    ERROR => Cannot load Java VM (<default>) (rc=-1) [jlnchxxi_mt. 557]
    JLaunchCloseProgram: good bye (exitcode=-1)
    Changing the memory settings back again doesn’t change anything. The server is not starting!
    The server has 2Gb of memory, enough disk space and is running the correct JDK version.
    Any ideas?
    Thanks in advance!
    Regards
    Michael

    Hi,
    Thanks for the answers.... but the settings are already tried without success.
    Finally SAP came up with a solution that worked.... deleting the file instance.properties.vmprop solved my problems with starting the j2ee engine.
    Regards
    Michael

  • Cannot create an accounting document  for year-end-closure

    Good morning,
    I am dealing with an urgent issue related to the year-end-closing.
    The accounting document cannot be created because the account 9600700000 does not exist in standard chart of accounts.
    The system wants to pick up an account which is used by the chart of accounts of the country CAGR. This is used for the analytical ledger at the end of the month.
    When I compare it with another example which was posted correctly, I see that the account 9600700000 was used in the Special ledger.
    Do you have any idea how to create the accounting document?
    Thank you very much.
    Kind regards,
    Linda

    Issue solved

  • IPhone 3G Cannot create mail account from IPhone.

    Cannot create Pop email account from IPhone. Keeps asking if I want to try to create the account without SSL, whether I answer yes or no. I have to create the account via ITunes.
    Any ideas?

    No error msg. Just keeps asking over and over again, if I want to try to setup the account without SSL. If I answer yes. It try's again for 2 min, the repeats the question. If I say no then it takes me back to the config screen for the account where I can select cancel. Never creates the account or give error msg.

  • Windows Server 2012 R2 cannot rename Administrator account via GPO

    Have created the normal Rename Administrator GPO: Comp config -> Policies -> Windows settings -> Security settings -> local policies -> Security options Accounts: Rename Administrator Account
    But GPO does not get applied for some reason, RSOP indicated the policy engine did not attempt to configure the setting.
    Any suggestions?

    Hi,
    Any update?
    Just checking in to see if the suggestions were helpful. Please let us know if you would like further assistance. If the issue persists, please provide the following information for further
    research.
    GPMC.log
    ==================
    a. On domain controller, click Start -> Run, type GPMC.MSC, it will load the GPMC console.
    b. Right click on "Group Policy Result" and choose wizard to generate a report for the problematic computer and user account (please place appropriately). (Choose computer and select the proper
    user in the wizard)
    c. Right click the resulting group policy result and click the "Save Report…" => save report to save the report to a HTML file.
    Best Regards,
    Andy Qi
    TechNet Subscriber Support
    If you are
    TechNet Subscription user and have any feedback on our support quality, please send your feedback
    here.
    Andy Qi
    TechNet Community Support

  • Cannot launch Flash CS6 after installation with Application manager

    I have recently installed the Flash CS6 trial via the application manager.
    After installation I was able to run the application normally. But, the next day, obviously after restart, there is no icon inside Application manager to launh it. It only shows "installed".
    When I am trying to launch the application by double clicking on it's icon in the folder where it is installed, I receive the error:
    "Windows cannot access the specified device or path or file. You may not have the appropriate permissions to access the item."
    How can I resolve this?
    Thanks

    >Right click start menu shortcut and clock properties
    >find out file location
    >one of the folders it's in is locked and needs permission
    >keep searching until you find application
    >open it
    >now can install
    Anyway to fix any of this?
    Is our computers messed up or something?

  • Cannot create recovery disk after update to Win 8.1 on G580

    Friends
    I have a Lenovo G580 that came with Win 8.0 preinstalled. I upgraded it to Win 8.1 over the Internet.
    When I try to run the "Create recovery disk" I get the error that states that "We cannot create a recovery drive for this PC. Some required files are missing..."
    I found out that the winre.wim file that is supposed to be in the C:\Windows\System32\Recovery folder is not there. I cannot locate it anywhere on the C or D drives either. I believe there is a copy on one or more of the recovery partitions but I do not know how to get that file from those partitons.
    I am confused as to why there are seven partitions on that one drive:
    1 Recovery partition 1000 MB
    2 EFI system partition 260 MB
    3 OEM partition 1000 MB
    4. Recovery partition 350 MB
    5. Recovery partition 20 GB
    6. Lenovo D: 25 GB
    7. Windows 8 C: 250 GB
    Can someone help me and give me some instructions on how I can fix the system to find the winre.wim file?
    Thanks for any good input.
    Calle

    Hi Calle,
    Welcome to Lenovo Community Forums!
    I’m sorry to hear that the error message is displayed in your G580 Laptop, as the OS (Operating System) installed is Windows 8.1 or Windows 8. Recovery discs cannot be created only a “Recovery Media” can be created using USB Flash drive, below is the link to create USB recovery drive.
    Create a USB Recovery Drive
    Do post us back if the issue persists.
    Best Regards
    Shiva Kumar
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Cannot create sony account with safari so I can install sony camera specific apps

    It is impossible to get into the sony website to create an account so that I can get sony camera apps, which are required to use the sony camera correctly. Basically Safari is hanging up when I click create account on the sony site. My brother does not use Apple and his browser works fine for this, so this is a Apple/safari problem. I have found very little info regarding this problem anywhere.
    Is there an Apple expert here who could look at this?
    Me: macbook pro, safari 6.2
    Website problem page is :https://www.playmemoriescameraapps.com/portal/usbdetail.php?eid=IS9104-NPIA09014 _00-000003
    Although all sony entertainment network login pages do the same thing
    Please if your a Apple goo roo look at this and let me know something
    Thanks

    Hmmm, so since I'm using 6.2 then maybe that is the problem? I can surf all of sony's other pages etc, but when I try to create account it just freezes up, I was trying not to install the other browsers and was confused why it would not work with my current safari 6.2. I have not upgraded my OS yet, so are you thinking this is related to that?

  • "Grouped" user cannot create Mobile account

    Hello
    Leopard Server 10.5.4 and Leopard client 10.5.4.
    In Server, we have a group of users called Group1. In this group we have a user called User1. When we try to create a mobile account, prompts for password, and then "There was an error creating mobile account" appears.
    When we try to create Mobile account for any user outside any group we have no problem.
    The Mobility prefs are the same in the Group1 and in the account outside the group.
    Any help appreciated.
    K.

    Look in the system log for clues.
    Also you can turn on ManagedClient logging from Terminal this way:
    sudo defaults write /Library/Preferences/com.apple.MCXDebug debugOutput -2
    Then reproduce the problem. The log will be here:
    /Library/Logs/ManagedClient/ManagedClient.log
    Remove /Library/Preferences/com.apple.MCXDebug.plist to stop logging (and increase performance).
    And please file a bug with Apple.

  • Cannot logon to account after a logout the night before

    I have a customer who cannot login after a logout. A restart fixes the problem. His Home folder is encrypted (File Vault) and he has discovered what appear to be duplicate or temporary Home folders that are coincident with the failed login. One from last Thursday, this Tuesday and this morning. Although it did not happen yesterday morning.

    Wow ok, I was able to solve this sooner then I thought.
    I simply had to login to the account I created when I first powered up the new mac.
    Go into users and reset the password for the account I had restored through time machine back up.
    But the problem remains of the time machine back up not properly restoring, I should not have had to do this. Im glad none the less I found a work around.

Maybe you are looking for

  • WebtopNaming - can not find server name for server ID

    We have a LB, and web servers in front of OpenSSO app servers in our environment. OpenSSO debug log CoreSystem fills up with lot of errors like these: ERROR: WebtopNaming.getServerFromID() can not find server name for server ID : 07 com.iplanet.servi

  • Unable to deploy the MSI in Windows 7 64-bit

    Hi there, I try to deploy Adobe Reader 10.1.1 in a new Windows 7 Pro SP1 64-bit installation with the following command line: "msiexec /i AcroRead.msi TRANSFORMS=AcroRead.mst /qn /log log.txt" through MDT 2010. I also tried in a command prompt withou

  • [ URGENT ] - Skype website that gets your IP!

    This is an urgent topic! Please read all information! I've recently been a victim in a host kick... someone asked me skype what was my skype name and then I was kicked offline for 5 minutes! I later found out this website: skype2ip.org - They state t

  • Incorrect Link of Execute Work item in External Notification

    Hello Experts, I am working with the HCM Processes and Forms and used Standard Task TS17900101 in workflow, for Approve/Reject Forms. Everything is working fine (form gets approved/rejected from UWL). Now I configured, SWNCONFIG for sending the exter

  • My Macbook Air loses its Mac OS.

    I've reinstalled from backup, it lost the system in two days, reinstalled and made a clean install, it lost the system in a week. What can I do? Is it a hardware or a software problem? Thanks in advance