SMB on Server 10.5.6: Vista user needs to enter user and pass after restart

Hello,
We have a Vista user running in XP mode connected to SMB on OS X Server 10.5.6. After every log out or restart windows ask the user to enter the user and password. We have checked the remember user and password box but the windows can't remember the user and pass...
What could we do?

Is your server bound to AD, and your PC clients as well (probably) ?
First, stop SMB.
Then, backup /etc/smb.conf
Then edit it (use nano or vi or emacs via the Terminal. If you must use the GUI then use TextWrangler.
Make sure the file permissions are preserved.
under the [global] section of /etc/smb.conf, make the following modifications (add the entry if it's not there):
security = ads
windbind separator = +
; auth methods = guest opendirectory
ie: comment out "auth methods" via the ";"
Start smb and compare. Anytime you make a change in the GUI tools, verify your edits are preserved.

Similar Messages

  • Issue with cisco acs 4.2.Users unable to login aaa client but after restarting group policy able to login

    issue with cisco acs 4.2.Users unable to login aaa client but after restarting group policy able to login

    issue with cisco acs 4.2.Users unable to login aaa client but after restarting group policy able to login

  • We used to only need to enter a password to login, but we need to enter user name too now. how can we only enter password?

    we used to only need to enter a password to login, but we need to enter user name too now. how can we only enter password?

    Open the Accounts or Users & Groups pane of System Preferences and set the login options to show the list of users.
    (67582)

  • New user just for entering JE and General Ledger

    hello experts,
    I created a user, just to enter few of the Journal Enteries and General Ledgers. I gave the rights for JE and also Financial reports but when I open the "G/L account and Business Partner" Report in Financial Report > Accounting, it open the initial parameter window but all Blank I mean no field in it but just OK and Cancel Button.
    Also when I open the next report "General Ledger" Report in the initial parameter window. It does not show the Business Partner or Account Selection field on the top of this said windows.....
    Is there any special Authorization required for this
    Help Required ....

    What is this user license type?  All financial transactions need professional license.
    Thanks,
    Gordon

  • Users forced to clear cache and cookies after server move

    We recently moved our ColdFusion 9 website from one server to a new and improved upgraded spec server. The site works great and the upgrades are a huge improvement. However, since the move last Friday we are being flooded with calls to our helpdesk because a user goes to our normal login screen, enters their username and password, successfully login (which I store their last successful login in the account in a database so I know it's passing all login scripts), but when redirected to the "successful login" message screen, it is not holding the session variables from the login page and prompts them to login again. It's a basic form with username and password, a simple query to check for an account with those credentials and then if found sets a session.usauthenticated and then moves them to the next page. This has been working on the old server with no issues. I don't believe it's a coding issue, because on everyone who has called in, if we clear their cache and cookies from the browser and then attempt to login again, it works fine and maintains their session. This has worked on everyone so far. So I'm thinking it has something to do with our users storing cookies from the old server and the new server is trying to access them unsuccessfully.
    Is there a way around this? It seems rather odd to me that there isn't an easy way to migrate a website to a new server and treat it as a new website to the user instead of something cached. How can we make our website work for past users without having to have each and every person clear their cache and cookies (we're talking over 300,000 users here so this could get intense). Most users won't know to do this so they are all calling our help desk which is being overrun with these calls right now.

    never fails, after you post a question, you find the answer.   For anyone else who runs into this, we had to purge all cookie and session data from our users prior to them hitting the login screen. After doing the following code, they were able to successfully login on our new server without having to manually clear their cache and cookies from their browsers.
        <cflock scope="Session" timeout="10" type="exclusive">
          <cfset structclear(session)>
        </cflock>
        <cfloop item="name" collection="#cookie#">
        <cfcookie name="#name#" value="" expires="now" />
        </cfloop>

  • Need help!---lookup connectionFactory failed after restart j2ee server!

    hi,
    I wonder anyone could help me to solve this context lookup problem described as bellows.i should say 'thanks' in advance!!!
    At the end of the message i post the code used to lookup administered objects then create connection.
    i use sun's default jms implementation (j2sdkee1.3.1) and jdk1.4 as environment.
    The jms client will try to establish a new connection if the j2ee server restarts (perhaps due to remote j2ee server shutdown or network trouble) , but it fails to lookup topicConnectionFactory in the JNDI this time. An namingException will be caught :
    "javax.naming.CommunicationException: java.rmi.MarshalException: CORBA COMM_FAILURE 1398079689 No; nested exception is:
         org.omg.CORBA.COMM_FAILURE: vmcid: SUN minor code: 201 completed: No
         at com.sun.corba.ee.internal.iiop.ShutdownUtilDelegate.mapSystemException(ShutdownUtilDelegate.java:92)
         at javax.rmi.CORBA.Util.mapSystemException(Util.java:65)
         at org.omg.stub.com.sun.enterprise.naming._SerialContextProvider_Stub.lookup(Unknown Source)
         at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:120)
         at javax.naming.InitialContext.lookup(InitialContext.java:347)
    Caused by: org.omg.CORBA.COMM_FAILURE: vmcid: SUN minor code: 201 completed: No
         at com.sun.corba.ee.internal.iiop.ConnectionTable.getConnection(ConnectionTable.java:176)
         at com.sun.corba.ee.internal.iiop.ConnectionTable.getConnection(ConnectionTable.java:68)
         at com.sun.corba.ee.internal.iiop.GIOPImpl.getConnection(GIOPImpl.java:70)
         at com.sun.corba.ee.internal.corba.ClientDelegate.createRequest(ClientDelegate.java:641)
         at com.sun.corba.ee.internal.corba.ClientDelegate.createRequest(ClientDelegate.java:583)
         at com.sun.corba.ee.internal.corba.ClientDelegate.request(ClientDelegate.java:875)
         at org.omg.CORBA.portable.ObjectImpl._request(ObjectImpl.java:431)
         at org.omg.stub.com.sun.enterprise.naming._SerialContextProvider_Stub.lookup(Unknown Source)
         ... 6 more
    Some code in the establish() method:
    try {
    TopicConnectionFactory topicConnectionFactory = null;
    InitialContext ctx = null;
    ctx = new InitialContext();
    System.out.println("ctx:" + ctx);
    topicConnectionFactory =
    (TopicConnectionFactory) ctx.lookup ("connectionfactory");
    System.out.println("topicConnectionFactory:" + topicConnectionFactory);
    while (connection == null)
    try{
    connection = topicConnectionFactory.createTopicConnection();
    } catch (javax.jms.JMSException jmse)
    System.out.print("Cannot connect to message server...");
    System.out.println("Pausing " +
    CONNECTION_RETRY_PERIOD / 1000 + " seconds before retry.");
    try
    Thread.sleep(CONNECTION_RETRY_PERIOD);
    } catch (java.lang.InterruptedException ie) {ie.printStackTrace();}
    continue;
    System.out.println("\nConnection established");
    session =
    connection.createTopicSession(false,Session.AUTO_ACKNOWLEDGE);
    topic = (Topic) ctx.lookup ("subscribeTopic");
    connection.setExceptionListener( (javax.jms.ExceptionListener) this);
    catch (javax.naming.NamingException jne){
    System.err.println("[MessageSubscriber] - NamingException!");
    //jne.printStackTrace( );
    Best Regards,
    -bawanglongqiqi

    Hi!
    I've encountered a similar problem with looking up the Home-interface
    of an EJB from a client through the InitialContext object after a
    restart of the application server.
    Try to set an additional property before creating your InitialContext
    object that clears the JNDI cache (the property name seems to differ
    between context factories - e.g. I'm using a WebSphere one and had to
    set a WebSphere specific property name).
    I'm sure you will find further info when you do a web search on "clear
    JNDI cache" for your specific JNDI provider.
    Kind regards,
    Markus

  • Saving chart data and reload after restart of server?

    Hi
    I have a vi that communicate with another program called EES through DDE and sometimes EES mess up the server. My solution is to automatically restart the server once a day [this is good enough for me].
    My question is: How do I get all my data in my charts to save and reload easiest?

    Hi,
    I think you may create a database table in your server and then pass your data to this table every time a new entry is made and calling the same from the database every time you run the VI after its restart. This can easily be done using the database connectivity tool-kit in the function palette. 
    Regards,
    Nitz.
    (Kudos are always welcome)

  • Computer-illiterate mac user needs help with .rar and unrarx!!!

    i am trying to download .rar movies from mediafire and then open them. i've read the forum and watched youtube instuctional videos on extracting these, and other kinds of movie files and despite this, i can't get them to work. the files pop up on my "downloads" list and when i click on them, i inevitably get some kind of error message after i try and open them. i have downloaded stuffit, unarchiver and unrarx. with .rar files, i keep getting a message "there are no files to extract" despite using the password and following all the steps. any help is greatly appreciated!

    Thanks also tried that it does hangs the screen back to how it was but the background is now my screen saver with the photoshop tool bars around. But the docking area is still not visible and when I open a file it opens it as sep screen and layer and not as part of docking station? Very strange
    Sent from my BEphone

  • Need to find user's usergroup

    hi ,
    i have a swing application ,user needs to enter userid and password to use this tool,this user id is nothing but a DB2 server userid and password which is running on AIX system .
    now my question is , user entered his userid and password ,if the user valid user , i wanted to find user group through java.
    if any one come across such kind of development,could you please help me out..
    thanking you in advance...

    Dear Ashok,
    Please check after making invoice is it possible to change the Tax classification in the same billing documnet, bcoz in standard it will get grayed out.
    And in the Change logs there is no entry, user had changed to different tax during creation itself.
    And you can conclude, the USER who created the Billing had changed the Tax classification.
    Regards,
    Mani,

  • Linked Server unable to Connect in SQL Server 2012 after Restarting SQL Server Service it works fine. Why?

    I have created a Linked Server to Access Database of 64 MB in Size located in Remote System to SQL Server 2012.In Start for Some time it works fine and after it is giving the Error 
    OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "LANDLINE_TEST" returned message "Cannot open a database created with a previous version of your application.".
    Msg 7303, Level 16, State 1, Procedure Insert_Records_Into_Actual_Calls_History, Line 29
    Cannot initialize the data source object of OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "LANDLINE_TEST".
    Previously I thought it as Permission Issue. By trying some fixes proposed in forums it not fixed. But, after restarting the SQL Server Services without changes to the linked Server it works perfectly. How could i fix it. I don't want restart the SQL Server
    Service it leads to Some other process failures.
    RehaanKhan. M

    After all the Errors, When I am restarting the SQL Server its working correctly.
    Whats the problem it is clearing itself after restarting of SQL Server. Why ?. I can't find anything regarding this in SQL Server .
    The following are the Errors i got connecting to SQl Server.
    OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "LANDLINE_TEST" returned message "Cannot open a database created with a previous version of your application.".
    Msg 7303, Level 16, State 1, Procedure Insert_Records_Into_Actual_Calls_History, Line 29
    Cannot initialize the data source object of OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "LANDLINE_TEST".
    Error-2:
    Executed as user: RMS\Administrator. Cannot initialize the data source object of OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "LANDLINE_TEST". [SQLSTATE 42000] (Error 7303)  OLE DB provider
    "Microsoft.ACE.OLEDB.12.0" for linked server "LANDLINE_TEST" returned message "Cannot open a database created with a previous version of your application.". [SQLSTATE 01000] (Error 7412).  The step failed.
    After unchecking the Allow In Process in OLEDB.ACE Provider Properties.
    Msg 7399, Level 16, State 1, Procedure Insert_Records_Into_Actual_Calls_History, Line 29
    The OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "LANDLINE_TEST" reported an error. Access denied.
    Msg 7301, Level 16, State 2, Procedure Insert_Records_Into_Actual_Calls_History, Line 29
    Cannot obtain the required interface ("IID_IDBCreateCommand") from OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "LANDLINE_TEST".
    for to fix above error i have followed the instructions in the following link,
    http://blogs.msdn.com/b/dataaccesstechnologies/archive/2010/08/19/permissions-needed-to-set-up-linked-server-with-out-of-process-provider.aspx
    This also failed to work. I Restarted SQL Server and make the Linked Server Properties Default to my Configuration and it works fine.
    Can you suggest me a solution for this issue. Every time i don't want to restart SQL Server Services as it effects other jobs and Processes.
    Thank you.
    RehaanKhan. M

  • Help needed in Substitution & User Exit.

    Hi Experts,
    I have a peculiar recuirement. In the <b>Vendor Invoide Creation</b> transaction (<b>FB60</b>), if you try to create a Invoice/Credit memo for a "<b>One Time Vend</b>or", a pop up window comes asking Bank and Address data.
    The user need to enter the bank key and acc no and  need to substitute the name, address fields in this pop up window screen, with some data fetched from custom DB tables according to the bank keys.
    Since the pop up screen fields are from structure BSEC, I cant really do the substitution them from OBBH (Since it only allows BSEG & BKPF fields to be substituted !! ).
    Also since the Only user exit (ZXCPDU01) avaliable in FB60 does not have any Export table, I can send the values back to the screen.
    <b>Can any one of you by any luck have a feasible solution for this ?</b>

    hi Saurav.
    there are 14 user exits in thsi transaction. these are as follows
    F050S001            FIDCMT, FIDCC1, FIDCC2: Edit user-defined IDoc segment
    F050S002            FIDCC1: Change IDoc/do not send
    F050S003            FIDCC2: Change IDoc/do not send
    F050S004            FIDCMT, FIDCC1, FIDCC2: Change outbound IDoc/do not send
    F050S005            FIDCMT, FIDCC1, FIDCC2 Inbound IDoc: Change FI document
    F050S006            FI Outgoing IDoc: Reset Clearing in FI Document
    F050S007            FIDCCH Outbound: Influence on IDoc for Document Change
    F180A001            Balance Sheet Adjustment
    FARC0002            Additional Checks for Archiving MM Vendor Master Data
    FEDI0001            Function Exits for EDI in FI
    RFAVIS01            Customer Exit for Changing Payment Advice Segment Text
    RFEPOS00            Line item display: Checking of selection conditions
    RFKORIEX            Automatic correspondence
    SAPLF051            Workflow for FI (pre-capture, release for payment)
    check if anyone of them meets ur requiremnt
    regards
    ravish
    <b>plz dont forget to reward points if helpful</b>

  • Vista crashed, did factory reset, downloaded and installed Thunderbird, can I get messages and contacts from windows backup

    Did a factory reset of Windows Vista. Had Thunderbird before, downloaded and installed after reset. I have a windows backup on external drive that was made about a week before the crash. Would the old contacts and messages be on this windows backup? If so, how to retrieve?

    What you need is your Thunderbird profile folder. Check whether that's in your backup.
    http://kb.mozillazine.org/Profile_folder_-_Thunderbird

  • HT1923 I have a Vista Operating system with 2 users.  Somehow I got two different play lists each with one user.  One is too big for the storage and has a vast amount of duplicates.  Can I delete the one that is twice as large and then access the other li

    I have a Vista operating system with 2 users.  Somehow I got two diffent libraries for the users.  How can I delete the one and then access the correct library on the other users profile?

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • NAC Guest Server, How to change the password for a single user?

    We have a NAC Guest Server which creates a complex password for all new users created.
    We would like to have normal/simple password for a single user. How can I get this done on a NAC Guest Server.
    Thanks in advance.

    Hi,
    You can setup 3 different flavours of passwords:
    http://www.cisco.com/en/US/docs/security/nac/guestserver/configuration_guide/20/g_guestpol.html#wp1063249.
    a. Username Policy 1 - Email address as username
    Use the guest's email address as the username. If an overlapping account with the same email address exists, a random number is added to the end of the email address to make the username unique. Overlapping accounts are accounts that have the same email address and are valid for an overlapping period of time.
    b. Username Policy 2 - Create username based on first and last names
    Create a username based on combining the first name and last name of the guest. You can set a Minimum username length for this username from 1 to 20 characters (default is 10). User names shorter than the minimum length are padded up to the minimum specified length with a random number.
    c. Username Policy 3 - Create random username
    Create a username based upon a random mixture of Alphabetic, Numeric or Other characters. Type the characters to include to generate the random characters and the number to use from each set of characters.
    Note: The total length of the username is determined by the total number of characters included.
    HTH,
    Tiago
    If  this helps you and/or answers your question please mark the question as  "answered" and/or rate it, so other users can easily find it.

  • Unable to Start CE 7.1 Server on Windows 7 / Vista OS

    Dear All,
    I am trying to install CE 7.1 Server (Java Stack) on my personal laptop ( Windows 7 Home Basic, Intell Core i3 processor, 4GB RAM).
    In the 1st attempt ,the installation failed on Windows 7 OS due to incompatible OS errors.
    So, I installed VMWare 6.5 Workstation, installed Windows Server 2003 OS on it and again tried to install CE 7.1 server on this virtual Windows Server2003 OS.
    Though CE Server got installed properly and the portal was running when I tested the portal just after installing the CE Server for the first time, ( i.e. without the System restart) ,
    But the CE Server is not getting started after restarting the Windows Server 2003 OS ( through VMWare ) or on system restart.
    On Analysis, we observe that jstart.exe  process is stopped while other services ( message service and enqueue service ) are running.
    ( jstart service initially shows Starting... but then goes into a Stopped state ).
    I have even tried to install CE Server on another laptop ( Windows Vista , Core 2 Duo Processor )
    Here, the CE Server got installed ( no need of VMWare )and even the portal was running when I logged in it immediately after installing the CE server for the first time. ( Without System restart )
    But like in previous case ,  when I tried to start the CE server again( After restarting the PC ), I faced the same problem -- CE server did not start reason being jstart service remained in stopped state.
    Is this (jstart service) the main cause for Server not getting started ?
    Can we start this service manually ?
    Is there any system properties or Windows service which is conflicting with the jstart service ?
    Is there any alternative method to install CE Server on Windows 7 / Vista OS ?
    Please help ...
    Thanks and Regards,
    Navin Mittal

    Hi Navin,
      Please verify the DB service is running. The database service is not set to automatically start so it would not be running when you restarted the server. Go to 'Services' windows application and either start the DB service manually or set it to start automatically.
    HTH.
    O.

Maybe you are looking for

  • Very Odd WiFi connection problems - plus crashes

    Since Firefox 2.0.0.9 crashed yesterday, I have had very odd problems with my WiFi (Earthlink through an Apple Airport). Network Diagnostics says everything is okay, but Safari can no longer connect to the internet, and after Firefox crashes I can no

  • Macbook pro "Desktop and screensaver" missing

    I don't know how this actually happened. But one day I was tired of my screensaver and went to go change it. So when I clicked on system preferences I noticed the "Desktop and screensaver" pane missing. I don't even know how long it's been like this.

  • Is it possible to have an applet act as a server?

    Is there a way to make an applet listen on a specific port and act accordingly when contacted?

  • Flash quiz score tracking on LMS?

    I  m creating quiz in flash with socring. i want to upload it on LMS, i want to track my score on LMS. please help me with the same. thanks!

  • [solved] ssh went down after recent binary update

    well i just did a binary update and ran into some problems apparently not knowing what i was doing, see last couple posts here https://bbs.archlinux.org/viewtopic.php - 3#p1300263.  So now i am trying to reinstall some of my apps, but when i go to ss