Directory server 6.3 client and using useradd

Is it possible to add a user locally via the useradd command when the client is bound to a directory server in which the userid already exists?
Here is my pam.conf:
#ident "@(#)pam.conf 1.28 04/04/21 SMI"
# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
# PAM configuration
# Unless explicitly defined, all services use the modules
# defined in the "other" section.
# Modules are defined with relative pathnames, i.e., they are
# relative to /usr/lib/security/$ISA. Absolute path names, as
# present in this file in previous releases are still acceptable.
# Authentication management
# login service (explicit because of pam_dial_auth)
login auth requisite pam_authtok_get.so.1
login auth required pam_dhkeys.so.1
login auth required pam_unix_cred.so.1
login auth required pam_unix_auth.so.1
login auth required pam_dial_auth.so.1
# rlogin service (explicit because of pam_rhost_auth)
rlogin auth sufficient pam_rhosts_auth.so.1
rlogin auth requisite pam_authtok_get.so.1
rlogin auth required pam_dhkeys.so.1
rlogin auth required pam_unix_cred.so.1
rlogin auth required pam_unix_auth.so.1
# Kerberized rlogin service
krlogin auth required pam_unix_cred.so.1
krlogin auth binding pam_krb5.so.1
krlogin auth required pam_unix_auth.so.1
# rsh service (explicit because of pam_rhost_auth,
# and pam_unix_auth for meaningful pam_setcred)
rsh auth sufficient pam_rhosts_auth.so.1
rsh auth required pam_unix_cred.so.1
# Kerberized rsh service
krsh auth required pam_unix_cred.so.1
krsh auth binding pam_krb5.so.1
krsh auth required pam_unix_auth.so.1
# Kerberized telnet service
ktelnet auth required pam_unix_cred.so.1
ktelnet auth binding pam_krb5.so.1
ktelnet auth required pam_unix_auth.so.1
# PPP service (explicit because of pam_dial_auth)
ppp auth requisite pam_authtok_get.so.1
ppp auth required pam_dhkeys.so.1
ppp auth required pam_unix_cred.so.1
ppp auth required pam_unix_auth.so.1
ppp auth required pam_dial_auth.so.1
# Default definitions for Authentication management
# Used when service name is not explicitly mentioned for authentication
other auth requisite pam_authtok_get.so.1
other auth required pam_dhkeys.so.1
other auth required pam_unix_cred.so.1
other auth required pam_unix_auth.so.1
# passwd command (explicit because of a different authentication module)
passwd auth required pam_passwd_auth.so.1
# cron service (explicit because of non-usage of pam_roles.so.1)
cron account required pam_unix_account.so.1
# Default definition for Account management
# Used when service name is not explicitly mentioned for account management
other account requisite pam_roles.so.1
other account required pam_unix_account.so.1
# Default definition for Session management
# Used when service name is not explicitly mentioned for session management
other session required pam_unix_session.so.1
# Default definition for Password management
# Used when service name is not explicitly mentioned for password management
other password required pam_dhkeys.so.1
other password requisite pam_authtok_get.so.1
other password requisite pam_authtok_check.so.1
other password required pam_authtok_store.so.1
# Support for Kerberos V5 authentication and example configurations can
# be found in the pam_krb5(5) man page under the "EXAMPLES" section.
Thanks,
Anderson

This depends on nsswitch.conf settings, not on your PAM settings.
Your PAM settings will determine what happens at login time.
nsswitch.conf will determine which naming service is used to retrieve
(or store) naming information.
You might want to set "files" rather than "ldap" first for the "users" map.
/DP

Similar Messages

  • File Transfer From Unix server to Windows Client System Using WebUtil

    Hi all,
    I want to Transfer a File from Unix Server to Window Client System using Webutil. But below mention code is not working.
    DECLARE
         V_Server_Path VARCHAR2(500) := Null;
         V_Client_Path VARCHAR2(500) := Null;
    BEGIN
         V_Server_Path := '/proj/oraapps/viper/dev/reports/cache/Saveauftr.txt';
         V_Client_Path := 'C:\Migration\EU_Applications\Lima\OAS_WorkArea\Client\Saveauftr.txt';
         IF WebUtil_File_Transfer.Is_AS_Readable(V_Server_Path) THEN
         IF WebUtil_File_Transfer.AS_To_Client(V_Client_Path,V_Server_Path) THEN
              Message('Downloading the File ..... .... ... .. .');
              Message('Downloading Was Successfull ...');
              Message('File Transfer from Server Was Successfull ...');
         END IF;
    END IF;
    END;
    Can anyone suggest me,Why the above code is not working and what to do for solve the Problem.
    Regards
    Gany

    Hello,
    You have more chances to get an answer in the Oracle Forms OTN Forum :
    Forms
    Regards

  • Install Sun ONE Directory Server 5,2 & how to use it for authenticate user

    Good afternoon, Excuse, are newbie in the scope I am learning and putting desire to him, this in my situation I am trying to install Sun ONE Directory Server 5,2 since I understand that this it is application LDAP for Solaris, ok I want to install it to authenticate user against the system, that is to say, to be able to acces the server entering with a created user from the data base of LDAP and make think user that his created in the system. But the documentation that I finds indicates the installation of Sun ONE Directory Server 5,2 but it not clearly about how to use it for authentication. Some one have any manual step by step of Sun ONE Directory Server 5,2 installation and how to make it for authentication systems users.
    I read the forum seeking for anwser and i get confuse
    Thanks for the help and sorry for any inconvenient
    Message was edited by:
    Aku_28
    Message was edited by:
    Aku_28

    I think that I found the Sun endorsed book locations for using LDAP accounts that don't use authentication besides "crypt". I now can use an account with a "ssha" password. It can be more than 8 characters long.
    Chapter 14 System Administration Guide: Naming and Directory Services
    Read page 201 which is the pam.conf file pam_ldap setups. I edited my "/etc/pam.conf" file to reflect this
    Chapter 7 Directory Server 5.2 2005Q4 - Administration Guide
    Read page 316-318 which has a graphical technique to specify password syntax. I set it up and then tried the password by running "su - brahms". It now requires a longer password than 8 characters and it is set up to use "ssha" for that UID entry "brahms".

  • Sun Directory Server 6.0 doesn't use client certificate

    Hi All,
    From a program, if I try to connect twice to a directory server 6.0 over SSL, first with simple anonymous bind and 2nd with client certificate, both the time it goes through, but 2nd time it doesn't use the client certificate. From the access log we get to know that it's not using the client certificate as it is expected for the 2nd attempt.
    Here is the sample code that I have -
    int main()
        int ret;
        char host[] = "xxx";
        int port = 1234;
        char path[] ="/home/xxx/certs";
        int version = LDAP_VERSION3;
        ret = ldapssl_client_init(path, NULL);
        if(ret) printf("ldapssl_client_init failed"), exit(1);
        LDAP *handle = ldapssl_init(host, port, 1);
        if(!handle) printf("ldapssl_init failed"), exit(1);
        ret = ldap_set_option( handle, LDAP_OPT_PROTOCOL_VERSION, &version);
        if(ret) printf("ldap_set_option failed"), exit(1);
        ret = ldap_simple_bind_s(handle, NULL, NULL);
        if(ret) printf("ldap_simple_bind_s failed"), exit(1);
        ret = ldap_unbind_s(handle);
        if(ret) printf("ldap_unbind_s failed"), exit(1);
        printf("1. Successfully connected and disconnected\n");
        ret = ldapssl_clientauth_init(path, NULL, 1, path, NULL);
        if(ret) printf("ldapssl_clientauth_init failed"), exit(1);
        LDAP *ldaph = NULL;
        ldaph = ldapssl_init(host, port, 1);
        if(!ldaph) printf("ldapssl_init failed"), exit(1);
        ret = ldap_set_option( ldaph, LDAP_OPT_PROTOCOL_VERSION, &version);
        if(ret) printf("ldap_set_option failed"), exit(1);
        ret = ldapssl_enable_clientauth(ldaph, (char*) "", (char*) "password", (char*) "nickname");
        if(ret) printf("ldapssl_enable_clientauth failed"), exit(1);
        struct berval* sc = NULL;
        ret = ldap_sasl_bind_s(ldaph, NULL, LDAP_SASL_EXTERNAL, NULL, NULL, NULL, &sc);
        if(ret) printf("ldap_sasl_bind_s failed"), exit(1);
        ret = ldap_unbind_s(ldaph);
        if(ret) printf("ldap_unbind_s failed"), exit(1);
        printf("2. Successfully connected and disconnected\n");
        return 0;
    }Any help/pointers in this regard will be highly appreciated.
    Thanks in advance.
    Regards,
    // Rahul

    The program works absolutely fine. Both the times it binds to the directory server. But the 2nd time it doesn't use the client certificate as we expect.
    Here is the output -
    1. Successfully connected and disconnected
    2. Successfully connected and disconnected
    and here is the access log contents -
    [13/Jul/2010:17:31:45 +0530] conn=1074 op=-1 msgId=-1 - fd=39 slot=39 LDAPS connection from 1.2.3.4:1234 to 1.2.3.4
    [13/Jul/2010:17:31:45 +0530] conn=1074 op=-1 msgId=-1 - SSL 128-bit RC4
    [13/Jul/2010:17:31:45 +0530] conn=1074 op=0 msgId=1 - BIND dn="" method=128 version=3
    [13/Jul/2010:17:31:45 +0530] conn=1074 op=0 msgId=1 - RESULT err=0 tag=97 nentries=0 etime=0 dn=""
    [13/Jul/2010:17:31:45 +0530] conn=1074 op=1 msgId=2 - UNBIND
    [13/Jul/2010:17:31:45 +0530] conn=1074 op=1 msgId=-1 - closing from 1.2.3.4:1234 - U1 - Connection closed by unbind client -
    [13/Jul/2010:17:31:45 +0530] conn=1075 op=-1 msgId=-1 - fd=40 slot=40 LDAPS connection from 1.2.3.4:1234 to 1.2.3.4
    [13/Jul/2010:17:31:45 +0530] conn=1074 op=-1 msgId=-1 - closed.
    [13/Jul/2010:17:31:46 +0530] conn=1075 op=-1 msgId=-1 - SSL 128-bit RC4
    [13/Jul/2010:17:31:46 +0530] conn=1075 op=0 msgId=1 - BIND dn="" method=sasl version=3 mech=EXTERNAL
    [13/Jul/2010:17:31:46 +0530] conn=1075 op=0 msgId=1 - RESULT err=0 tag=97 nentries=0 etime=0 dn=""
    [13/Jul/2010:17:31:46 +0530] conn=1075 op=1 msgId=2 - UNBIND
    [13/Jul/2010:17:31:46 +0530] conn=1075 op=1 msgId=-1 - closing from 1.2.3.4:1234 - U1 - Connection closed by unbind client -
    [13/Jul/2010:17:31:46 +0530] conn=1075 op=-1 msgId=-1 - closed.
    Thanks and Regards,
    // Rahul

  • DNS setup on server bound to AD and using domain controllers for DNS

    My server is bound to our AD network and in the network pref I have entered the two IPs for the domain controllers on our network that serve DNS.
    My question is, am I right not to enable/configure and start the DNS service on the Mac server since it is getting DNS already?
    If yes, how do I confirm that my Mac server is correctly listed in our domain controllers DNS? Should I be concerned that I get the following?
    knws3135:~ mactech$ sudo changeip -checkhostname
    Password:
    Primary address = 10.31.3.135
    Current HostName = knws3135.ad.ewsad.net
    The DNS hostname is not available, please repair DNS and re-run this tool.

    Hi
    It looks all OK to me? As for the hostname having capitals could pose a problem but only if the Mac Server was its own KDC. Which it is not. If the hostname is defined as you have it now in the AD's DNS Service then leave it alone.
    Sometimes even when DNS checks out OK you can still have fundamental errors that only demotion to Standalone will cure. I think this is the point that you are at now. To be honest I would do this. Judging from what you've said there would be very little to lose when you do this apart from managed preferences. These can easily be re-applyed on successful promotion.
    needs to be changed so it is configured in Open Directory as connected to a Directory Server
    Not sure what you mean by this?
    If you have or are about to update your Server to 10.5.4 - which I recommend you do. Then you could follow this procedure:
    Demote to Standalone
    Stop all Services
    Restart the Server
    Update to 10.5.4. Restart the Server (this happens anyway)
    Make sure your Server resolves on the forward and reverse pointers (again)
    If you want run changeip again (you may be surprised)
    Use the Active Directory plug in in Directory Utility to bind the Server to the AD. Make sure you use an AD admin account that has authority to do this. De-select 'force home directory creation on startup disk' I have a feeling this will be de-selected anyway.
    After successful binding quit out of Directory Utility and launch Server Admin
    Select the Open Directory Service
    Change the role from Standalone to Open Directory Master
    Create the Directory Administrator account's username and password. Don't be tempted to change the UID or use the system admin account's user name. You can use the same password if you wish. What I've done before in the past is to create the diradmin account on the AD first with full authority for the domain.
    On successful promotion you should now see in the Overview Pane everything running apart from Kerberos which should be Stopped. This is how it should be. Apple's 10.5.4 Update has took a lot of the donkey work out of this whole process. No need for the command line. Simply click.
    If you launch Directory Utility you should now see the server's loopback address has been added in the LDAPv3 Plugin. Also the Server should be topmost in the Search Order under the Authentication and Contacts field. Bind your clients first to the AD and then the OD (make sure use for authentication and contacts are unchecked).
    Browse the two nodes, add your groups and apply MCX in the usual way.
    Does this help?
    Tony

  • Server 4.0: Client and Computer Authentication

    Hello.  In Active Directory we have Domain Controllers.  Is there any way I can make the Mac OS Server the authentication and authorization server for all Macs on a remote LAN.  -Rather than installing another DC.  At this time they're authenticating via WAN VLAN tunnel to one of our DCs.
    Thanks in advance!

    If you're using only OD you can set up a master OD and have other MOSX servers bound to that master OD (or it's replicas). The same thing should be possible to do by binding your MOSX server(s) to AD and then having clients authenticating towards the server(s) with AD accounts. It is really pesky to have to sets of users. We are at a transfer state from OD to AD and, well, it's a little messy so I definitely prefer having one user directory.
    If you have the possibility to set up a test server (virtualised is wonderful with snapshots and everything, could be possible to do on your own desktop/laptop even, VMWare/ESXi only) I would definitely try to bind the server(s) to AD if that's already existing and see if it works as expected before setting up another user directory.

  • How to download a file from server machine to client machine using jsp

    Hi,
    In my application, I have an excel file stored on my server machine. How can I download that excel file on to my client machine using jsp. Is there any other way I can open that file from my machine and save it in my machine using jsp/java?
    Its an emergency for me to do this.
    Can anyone provide me the full code to download a file from server machine as I don't have
    time to browse through various sites.
    thanks in advance,
    Tiijnar

    Please post your code using code tags (click on CODE above the text area, when posting)
    response.setContentType("application/octet-stream");Why octet-stream? Set the correct mime-type.
    String disHeader = "Attachment; Filename=\"filename\"";The filename should just be the file's name. Not the complete path to the file! This will tell anyone where the file is located on the server. It's also inconvenient because by default,the browser will suggest it as the name for the download.
    Your way of writing to the output stream is just plain wrong. See this snippet (picked from [http://balusc.blogspot.com/2007/07/fileservlet.html])
            BufferedInputStream input = null;
            BufferedOutputStream output = null;
            try {
                // Open streams.
                input = new BufferedInputStream(new FileInputStream(file), DEFAULT_BUFFER_SIZE);
                output = new BufferedOutputStream(response.getOutputStream(), DEFAULT_BUFFER_SIZE);
                // Write file contents to response.
                byte[] buffer = new byte[DEFAULT_BUFFER_SIZE];
                int length;
                while ((length = input.read(buffer)) > 0) {
                    output.write(buffer, 0, length);
                // Finalize task.
                output.flush();
            } finally {
                // Gently close streams.
                close(output);
                close(input);
            }

  • Configuring a Directory Server for Digital IDs and Certificates

    My company is moving toward using electronic signatures for internal documents. All of the users are on XP machines and have Acrobat Professional 8.0 installed. So far, I've been manually adding trusted IDs for each person who will be receiving signed documents that need to be validated. I'd like to make this a little easier by storing everyone's certificates on a server (Windows 2003) so that people can just go out there and add them all as one .fdf file. What I'm wondering is, what is the difference between doing it this way versus going through Acrobat and configuring a directory server? Will it work either way?
    Thanks!
    Anita

    Hi,
    Sorry for the late reply, regarding the error message: The DHCP services could not Contact Active Directory,
    please check the below KB article to see if it could help here:
    You are unable to authorize DHCP Server in Active Directory
    http://support.microsoft.com/kb/303317/en-us
    Reference for error ID 1059, and
    error ID 10020.
    For The specified server are already present in the directory services,
    please take a look into the below Blog:
    Active Directory DHCP authorisation issues
    The method mentioned in the blog above is trying to move the old information that stored in AD, and then take an action of re-authorisation of the DHCP server.
    Hope this may help
    Best regards
    Michael
    If you have any feedback on our support, please click
    here.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • I need code example for server act as client and vice versa

    Hi all,
    I want code example for performing both server and clients using RMI. I mean Server will act as client and client will act as server. So a single program will act as both client and server .
    Please give example, it will helpful to complete my project. I am struggling in this stage. Its like peer to peer action.
    Thanks & Regards
    R.Ragupathi

    1. The tutorial shows you how to do cleint/server.
    2. Search on the topic "callback" to see how cleint and server roles can be reversed.

  • Installation Error with iPlanet Directory Server 5.1 SP1 and Windows 2000

    Hello,
    I'm having real trouble getting iPlanet Directory Server installed on a Windows 200 Server machine. Every time I install it, no matter what options I choose, I get this series of popup boxes at the end:
    - Setup is unable to store configuration data in the LDAP directory
    - Unable to create Administration Server configuration
    - Could not authenticate ldap connection, "Unknown error"
    - Unable to set ACI in Configuration Directory Server
    But searching on this forum, I have found a lot of post. I have tested the different solution proposed :
    * Add on the host file the short name and the long name of my machine with it's IP adress
    * When the installation process crash, uninstall the software, reboot the machine and then restart the installation
    With all this solution, the problem is always here.
    Could you help me ?
    Boris MANCHETTE

    Are you using Terminal Services. iPlanet DS will not install properly over Terminal Services. You have to install from the direct attached console.
    Ted

  • Exchange Server 2013: Outook Clients and OWA keeps on disconnecting/connecting every 5-10 mins

    We have a new exchange server 2013 installed but also has exchange 2007 up.
    MX records are now pointing to the new exchange server, all were working ok after DNS records were changed but after the weekend it Outlook clients and OWA keeps on disconnecting and reconnecting from exchange.
    Exchange 2013 CU6
    Anybody else experienced the same?

    hi Jheycie,
    can you please check if you have .local and .com (different internal and external domain)
    almost similar thread.. it worked for me
    http://social.technet.microsoft.com/Forums/office/en-US/cc7d2300-0e1f-499f-a8f1-97f84687b6cc/emails-stuck-in-outlook-have-to-restart-transport-service?forum=exchangesvrgeneral
    http://social.technet.microsoft.com/Forums/office/en-US/9b9bf607-f882-4f73-a7b2-611ace3f3115/users-unable-to-connect-to-exchange-unless-they-close-and-reopen-outlook?forum=exchangesvrgeneral
    MARK AS USEFUL/ANSWER IF IT DID
    Thanks
    Happiness Always
    Jatin

  • Directory Server 6.3.1 and Directory Server 7.0 agent module

    Hello Folks-
    I am having a strange issue with my directory servers. I had three directory server replicas and they were all on 6.3.1 installed with the zip distribution. One of the directory server was a vmware virtual machine running on Solaris Update 8 and after a power failure I could not start or recover the Virtual Machine itself. Long story short, I ended up installing a new DS with 7.0 version (with zip distribution). The installation went very smoothly, had no problems starting the server and creating an initial instance, top level baseDN, etc.
    I somehow unregistered the older non-working Directory Server from first server's DSCC and wanted to include this new one. So in my Directory Servers tab in DSCC, I have all three listed like this: notice the third one
    Server
    ldap1:389
    ldap2:389
    ldap3:389 (server not registered)
    So having the same host name and same instance, when I try to register an "existing server", I get the following error:
    " The DSCC agent module is not registered on host ldap3. Verify that the agent module is installed using the command dsccsetup status on host ldap3. If the agent module is installed register it using the command dsccsetup cacao-reg"
    So I went to the third host and did the following:
    # dsccsetup status
    DSCC Agent is registered in Cacao
    Cacao uses a custom port number 21162
    DSCC Registry has been created
    Path of DSCC registry is /jes/ds/dsee7/var/dscc/ads
    Port of DSCC registry is 3998
    # dsccsetup cacao-reg
    DSCC Agent is already registered.
    So what is the problem? Why cant I register my new server and create replication agreements with the others?
    Please let me know if you have more information
    Thanks.
    Deniz.

    Anybody??? I really need help with this....

  • Open email client and use HTML link

    How does one open an email client and embed a body with HTML, so links will work.
    I have tried:
    var request:URLRequest = new URLRequest("mailto:[email protected]?subject=some subject Results"+"&body="+"<A=href=3Dhttp://www.somelink.com</A>"
    navigateToURL(request, "_self");
    This is not to be sent to a php page, but load the user's Email Client.

    Using URL notation to specify an emails contents you can't force a user to use rich text. Some have their clients to default to plain text. Therefore it will just show the HTML. There is no guaranteed way to achieve this.
    If the user has rich text set as default a link being injected typically auto-links anyhow. You may not SEE it as a hyperlink but send the email and the receiving users computer should see it as a hyperlink.
    So try:
    var request:URLRequest = new URLRequest("mailto:[email protected]?subject=some subject Results&body=http://www.somelink.com");
    Then send that email to yourself. You should see it appear as a hyperlink automatically, as long as you have rich text mode enabled. Otherwise no matter what you send a plain text user will never see your hyperlink anyhow as it strips HTML out.

  • Chat between j2me clients and using a Servlet server

    Java gurus, please help me..
    I'm wondering if I could set up a sort of chat functionality between two j2me clients. I wish to use Java servlets as my server and Tomcat to deploy it. Is this possible? Can i do these by using http connection only or do i have to use sockets? If i use sockets, how will i configure Tomcat, or do i still need Tomcat?
    Hope someone could help! Thanks in advance! =)

    Basically it means you should have a Thread that loops and make an http request every x seconds. Before sending the request it should check if the user has typed anything, and send that with the request. The server should keep track of all the chat messages sent, and forward to all the other clients when they request an update. To keep track of what clients have received what messages, you could have a time stamp for each message, and a "last update" field for each client.
    The client should run something like this in a thread:
    while (iAmRunning) {
      url = "......." // address of your server
      if (the user typed anything since the last time we sent a request) {
        url = url + "?msg=" + whatTheUserTyped; // maybe another parameter for private messages?
        reset what the user typed (so it won't be sent next time);
      send the request;
      get the response containing what the rest of the users have
        typed since my last update;
      update the display with the latest messages;
    }And the server would handle a request like:
    if (the request contains a message) {
      save the message with the current time;
    check when was the previous update for this user;
    get all messages where the timestamp is later than the last update;
    set the last update field for the user with to the current time;
    respond with all the messages;

  • Tiger server, Snow Leopard Client and Illustrator CS4

    We have a strange problem happening with the one Snow Leopard client we have accessing our Tiger server. In certain directories (not in all) if the user opens an Illustrator CS4 file, makes changes and goes to save the file they get the message that the file is either locked or in use by another user (it is not). This does not happen with any other kind of file in that same directory. The server is connect to AD so the user accounts come from the AD but on this machine we have the same problem regardless of the user account used to mount the server volume. It also doesn't matter if I use a local account on the server to mount instead of AD. I have the same problem if I connect via SMB instead of AFP. Other machines (Leopard) can work on these files with no problems.
    A couple of other bits of information which might be useful. If the user opens the file, does a save as to the same name and same folder and replaces the original they can work on the file and save it with no problems. As soon as they close the file and reopen it they have the problem again. Also, if they run into the problem, close all programs on the computer and try to unmount the server volume they get the message that the volume is in use and cannot be ejected. I have checked and there are no invisible files being created in the directory where this file resides.
    What is strange is that the problem does not happen in all directories although when it happens it is repeatable in that directory. Happens every time. I have tried changing the name of the folder to something simple and it still happens.
    Any suggestions on where to go with this problem??

    No progress yet. Have tried a lot of things with preferences on the server. I have confirmed with another snow leopard machine that this is not related to the machine in any way. I have not yet had a chance to test it on another Tiger server but given the fact that you are seeing it as well I would say there is a problem with the two operating systems cooperating.
    As I said, I do have a temporary workaround. If you do a save as with the document, choose to overrite the original it works and then lets you continue to work on that file and save for that session. After you close the file and reopen the problem returns but at least for that session you are fine.

Maybe you are looking for

  • Safe to delete content from the Temp folder under AppData?

    Hi everyone, Is it safe to delete the contents from the Temp folder (C:\Windows\ServiceProfiles\LocalService\AppData\Local\Temp) in the SharePoint 2013 web front end servers? For some reason I see around 30 GB of temp files. Came across this blog pos

  • Attachment Problem in OTM

    Is there any way in OTM , so that we can upload world document file also?

  • File wont open

    I downloaded pictures from an apple iPhone and cant get then to open

  • Extract Usage Report for audit purpose

    Hi All, I want to extract system usage report for SAP eSourcing system .. for example: names of all of the individuals who have logged into the system within a particular timeframe... thanks in advance...

  • Why can't I view my videos on icloud?

    Hi. I've been having a hard time finding my pics/videos on my PC. I recently downloaded the iCloud b/c I thought I lost all my pics/videos after I did the iPhone upgrade. Now I see my pics on my files from iCloud,but no videos. Where could they be? T