Integration of client machines into Win2003 DC

Hi everyone,
we have a eDirectory and ZW 7 environment with server based profiles and Windows XP client machines. Everythings just fine at the moment but now we want to integrate the client machines with a newly set up Windows 2003 SP 2 Domain Controller.
It is possible to register the clients with the domain and users that have previously worked on a specific machine are able to login as usual. But if a user that has not worked on this machine before, tries to log on he is forced to provide credentials for the local machine.
What could be the problem? What would you do?
Here are some facts that describe the setting further:
Active Directory support is enabled on the Windows 2003 server
We have a DNS set up on the Domain Controller
DHCP is provided by the Novell Server
We do not plan to switch the user accounts to the Windows Domain Controller
Your support is highly appreciated.
Best regards, Philipp.

I don't see how adding the devices to the domain changes anything?
User's can still logon the the PC using a Local Account instead of a Domain
Account.
I presume you were using DLU in the past to create the local accounts, you
can still do that.
"cpburkert" <[email protected]> wrote in message
news:[email protected]..
>
> Hi everyone,
>
> we have a eDirectory and ZW 7 environment with server based profiles
> and Windows XP client machines. Everything's just fine at the moment -
> but now we want to integrate the client machines with a newly set up
> Windows 2003 SP 2 Domain Controller.
>
> It is possible to register the clients with the domain and users that
> have previously worked on a specific machine are able to login as usual.
> But if a user that has not worked on this machine before, tries to log
> on he is forced to provide credentials for the local machine.
>
> What could be the problem? What would you do?
>
> Here are some facts that describe the setting further:
>
>
> - Active Directory support is enabled on the Windows 2003 server
> - We have a DNS set up on the Domain Controller
> - DHCP is provided by the Novell Server
> - We do not plan to switch the user accounts to the Windows Domain
> Controller
>
>
> Your support is highly appreciated.
>
> Best regards, Philipp.
>
>
> --
> cpburkert
> ------------------------------------------------------------------------
> cpburkert's Profile: http://forums.novell.com/member.php?userid=41596
> View this thread: http://forums.novell.com/showthread.php?t=357572
>

Similar Messages

  • Unable to join the client machine into domain in low banswidth 16kbps

    Hi,<o:p></o:p>
    I'm unable to join the client machine into domain which is in low bandwidth 16 kbps.but i can able join other machine into domain which is having
    more bandwidth,please help me on this issue<o:p></o:p>

    Depending on the version of your domain, you could try an offline join.
    http://technet.microsoft.com/en-us/library/offline-domain-join-djoin-step-by-step(v=WS.10).aspx
    Paul Bergson
    MVP - Directory Services
    MCITP: Enterprise Administrator
    MCTS, MCT, MCSE, MCSA, Security, BS CSci
    2012, 2008, Vista, 2003, 2000 (Early Achiever), NT4
    Twitter @pbbergs http://blogs.dirteam.com/blogs/paulbergson
    Please no e-mails, any questions should be posted in the NewsGroup.
    This posting is provided AS IS with no warranties, and confers no rights.
    I would say that it depends on the client OS (Windows 7 or Windows 8) if offline domain join could be used or not, not that much regarding the level of the domain, you can always use the
    /downlevel switch to target a DC running Windows Server 2003 for example.
    Enfo Zipper
    Christoffer Andersson – Principal Advisor
    http://blogs.chrisse.se - Directory Services Blog

  • Integrating a fax machine into CUCM 9

    Dear All,
    We've having a new request concerning Fax Machines integration.
    Kindly confirm the possibility of integrating an existing fax machine into CUCM 9
    we have a CUCM 9 cluster with Voice gateway  includng E1 ISDN PRI.
    If possible kindly provide details about protocols and feasibikity.
    Awaiting your feedback,

    Hi.
    If faxes flow is not so high, you can consider ONRAMP and OFFRAMP VG application.
    Here is a doc.
    http://www.cisco.com/c/en/us/support/docs/voice/fax-modem-over-ip/47763-onramp-faxing.html
    http://www.cisco.com/c/en/us/support/docs/voice/fax-modem-over-ip/47764-offramp-faxing.html
    HTH
    Regards
    Carlo

  • Writing into a file in clients' machine from a jsp application

    is it possible to write some data fetched from database into a .CSV file on the clients machine from an JSP application?
    signed applets is one possibility , any other possibilities are there?
    thanks
    Mohammed Rafeeq([email protected])

    * @(#)ExcelServlet.java
    import javax.servlet.http.*;
    import javax.servlet.*;
    import java.io.*;
    import java.util.*;
    import java.sql.*;
    * @author M.Rajendra
    public class ExcelServlet extends HttpServlet {
         public void init(ServletConfig config)throws ServletException{
              super.init(config);
         } // end of init method
         public void doGet(HttpServletRequest req, HttpServletResponse res)
                                                 throws ServletException,IOException     {
              doPost(req,res);
         } // end of doGet method
         public void doPost(HttpServletRequest req,HttpServletResponse res)
                                                 throws ServletException,IOException     {
              HttpSession session = req.getSession(true); // session is already created at loginscreen
              OutputStream oout = res.getOutputStream();
              res.setHeader("Content-disposition","filename=excel.csv");
                   //res.setContentType("application/octet-stream");
                   FileInputStream fis = new FileInputStream("D:\\JRun3.1\\servers\\default\\default-app\\WEB-INF\\classes\\test.csv");
                   //here i am reading a csv file, we can output whatever format and set filename of ours
                   byte[] buf = new byte[1024];     //get from statics
                   int bytesRead = 0;
                   while((bytesRead = fis.read(buf)) != -1){
                        oout.write(buf,0,bytesRead);
                   oout.close();
                   fis.close();
         }//end of doPost method
         public void destroy()     {
         }// end of destroy
    } //end of ExcelServlet class

  • Copying client machine files into the Server BY Using APPLET

    Hi there,
    I created an applet which is DRAG and DROP enabled. In this applet content page i am dropping some file and trying to copy the same files in to the server. But when i am trying to save the files my code is saving the files in clients machine.
    I thought we are embedding the applet in a browser and the applet is running in clients machine, so for the applet SERVER is the local machine and if we create any files then they will be created in SERVER machine.
    But here the files are going to be saved in clients machine.
    I SIGNED THE APPLET TO ACCESS THE CLIENT MACHINE FILES TO DRAG AND DROP INTO MY APPLET. THAT IS NOT A PROBLEM , BUT COPYING THE FILES FROM CLIENT MACHINE TO SERVER HAS BECOME A BIG PROBLEM
    please any body can help in this regards?
    THANKS IN ADVANCE.
    batta

    I cannot see how you will copy files From the Applet to the Server.
    The only method I know to transfer data from a Java-Applet-Client to a Server and back is with the named method "HTTP-Tunneling".
    This means your, your applet made a connection e.q with a Java-Servlet wich resides on a Web-Server.
    This Servlet than can write to the Server-Filesystem and respond to the Applet.
    May be you can reach a Server with PHP, but I have not yet experience with this (I did not found anything about Servlet-Response to the Applet).
    Regards Dieter

  • Project goes into a setup launch when first run on client machine

    I have sequenced Project STD 2013 on Win 7.  During sequencing, it ran fine.
    When I install on client machine and launch shortcut, the setup window opens but than comes up with error window that says the installer path can only contain 115 characters..choose shorter path.
    I am at a loss as to what to do.

    Are you using AUOrganizer?
    If so, this issue has been reported a couple of time before.... and that will be the cause of your issues. It is not correctly configured.....
    Example thread...
    http://www.logicprohelp.com/forum/viewtopic.php?f=1&t=104191

  • Unable to connect report to database on client machine

    I am using C# and Visual Studio 2010 with several Crystal Reports embedded into my application as resources.  This is a Windows application running on Vista.  I am trying to connect to a SQL Server database.  I created the reports using the design wizard in VS.  I am allowing for the server and database name to be changed at runtime through values stored in the project manifest.
    As experienced by hundreds of other frustrated developers, my reports run fine on my development machine but fail on my client machine.  On the client machine I am prompted with a database login window.  The server name is properly populated with the server name pulled from the ...exe.config file.  The database name is blank and the field is disabled.  The integrated security checkbox is not checked.  I am programatically providing the server name, the database name and specifying integrated security to be true using sample code I found on this forum.  See below. 
    I reviewed the Troubleshooting Guide to Database Connectivity Issue with Crystal Reports in Visual Studio .NET Applications.  Accordingly, I am running the SP1 for Visual Studio 2010 on my development machine and the most recent runtime module on the client machine.
    Here is my application code.
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using CrystalDecisions.CrystalReports.Engine; //jp
    using CrystalDecisions.Shared; //jp
    namespace WindowsFormsApplication1
        public partial class FormRptArtist : Form
            private CrystalReport1 crReportDocument = new CrystalReport1();
            public FormRptArtist()
                InitializeComponent();
            private void FormRptArtist_Load(object sender, EventArgs e)
                try
                    ConnectionInfo connectionInfo = new ConnectionInfo();
                    connectionInfo.IntegratedSecurity = true;
                    connectionInfo.ServerName = Properties.Settings.Default.CrystalServer;   // SQLExpress
                    connectionInfo.DatabaseName = Properties.Settings.Default.CrystalDatabase;   // TriviaProd
                    SetDBLogonForReport(connectionInfo, crReportDocument);
                    SetDBLogonForSubreports(connectionInfo, crReportDocument);
                    crystalReportViewer1.ReportSource = crReportDocument;
                catch (Exception exp)
                    MessageBox.Show(exp.Message);
            private void SetDBLogonForSubreports(ConnectionInfo connectionInfo, ReportDocument reportDocument)
                Sections sections = reportDocument.ReportDefinition.Sections;
                foreach (Section section in sections)
                    ReportObjects reportObjects = section.ReportObjects;
                    foreach (ReportObject reportObject in reportObjects)
                        if (reportObject.Kind == ReportObjectKind.SubreportObject)
                            SubreportObject subreportObject = (SubreportObject)reportObject;
                            ReportDocument subReportDocument =
                                subreportObject.OpenSubreport(subreportObject.SubreportName);
                            SetDBLogonForReport(connectionInfo, subReportDocument);
            private void SetDBLogonForReport(ConnectionInfo connectionInfo, ReportDocument reportDocument)
                Tables tables = reportDocument.Database.Tables;
                foreach (CrystalDecisions.CrystalReports.Engine.Table table in tables)
                    TableLogOnInfo tableLogonInfo = table.LogOnInfo;
                    tableLogonInfo.ConnectionInfo = connectionInfo;
                    table.ApplyLogOnInfo(tableLogonInfo);

    Hello,
    Install the MS SQL Server Client tools on your PC and when setting location use the MS SQL Native 10 client as your database driver.
    Only one MS supports for Server 2008, there is a MS Kbase on this, you can't use MDAC version of the SQL Client engine.
    Then update your app to use RAS and search in this forum on ReplaceConnection_click and you'll find my sample code on how to set location to use the new DB server and connection properties.
    If that doesn't work then try hard coding the log on info rather than using variables. At the same time, unfortunately SQL Express doesn't have the Management Console, you want to watch the server using Profiler to see what your app is actually sending to the Server. If you have a full version of SQL 2008 then you can monitor what is going on. If not then you'll ahve to find some other tool you can use.
    Try ODBC, you can enable ODBC Trace to see is all other options are not available.
    If that doesn't work post to MS's forum and ask them why you connection info isn't working.
    Thank you
    Don

  • What needs to be installed on a client machine?

    Downloads Documentation Discussion Forums Articles Sample Code Training RSS Resources For
    Oracle Data Provider for .NET FAQ
    About ODP.NET
    I am familiar with SQL Server's .NET data provider, but am new to Oracle. Is it easy to learn to use ODP.NET? (Last Updated: 12/27/04)
    What are the different ways Oracle integrates with Microsoft .NET? (7/22/05)
    Where can I find ODP.NET help and sample code? (12/12/03)
    I have ODP.NET installed, but I can't find the ODP.NET Dynamic Help. Where is it? (4/11/05)
    What are the new features in this version of ODP.NET? (7/22/05)
    How do I make a feature enhancement request for ODP.NET? (12/04/02)
    What features will ODP.NET support in future releases? (12/04/02)
    Configuration and Certification
    Do I need to install ODP.NET on my Oracle database server? (7/22/05)
    Can ODP.NET work with Oracle8, Oracle8i, Oracle9i, and Oracle10g database (DB) servers? Can these DB servers be on Linux or Unix? (7/22/05)
    Can ODP.NET be used with an Oracle8, Oracle8i, or Oracle9i Release 1 client? (11/02/04)
    What do I need to have installed on my client machine to have ODP.NET work? (11/02/04)
    Does ODP.NET support Windows Server 2003, .NET Framework 1.1, and Visual Studio .NET 2003? (11/02/04)
    Common Runtime Issues
    How do I use distributed transactions with ODP.NET? (3/20/03)
    What if I have some applications that require an earlier Oracle client (e.g. using the Microsoft OLE DB Provider for Oracle with Server Explorer)? I want to be able to run both ODP.NET and these other applications from the same machine. (12/12/03)
    I get an error: "Unable to load DLL (OraOps.dll)". How do I fix this? (4/23/04)
    I want to use the Oracle9i Release 2 version of OraMTS with an Oracle8i database. I get a "No error information available: XACT_E_NOENLIST(0x8004D00A)" error when running an application using OraMTS. (12/04/02)
    ODP.NET and Other Oracle Providers for .NET
    Are ODP.NET and Microsoft .NET Framework Data Provider for Oracle the same product? (12/12/03)
    Which .NET data access driver should I use among ODP.NET, Microsoft .NET Framework Data Provider for Oracle, OLE DB .NET, and ODBC .NET? (12/04/02)
    I bundle ODP.NET with an application I've built, which I want to distribute or sell. Does Oracle charge licensing fees for this? (7/16/03)
    Q: I am familiar with SQL Server's .NET data provider, but am new to Oracle. Is it easy to learn to use ODP.NET?
    A: Yes. ODP.NET inherits from all the ADO.NET base classes, which is what SQL Server's .NET data provider, SqlClient, is based upon. The ADO.NET constructors, methods, and properties that you use with SQL Server will be the same with Oracle. For many applications, the only notable differences will be having all objects that were preceded with "Sql", such as SqlConnection, be preceded by "Oracle", such as OracleConnection, and accounting for differences between Oracle and SQL Server database data types, SQL, and stored procedure calls.
    Q: What are the different ways Oracle integrates with Microsoft .NET?
    A: Oracle integrates with .NET in a number of ways. For optimized .NET data access, ODP.NET enables access to all of the Oracle database's advanced features, such as RAC and XML DB, while ensuring the fastest performance from the .NET Framework.
    For .NET development tools that make Oracle easier to use, the Oracle Developer Tools for Visual Studio .NET provide wizards and designers that auto-generate ODP.NET code and can browse and edit schemas and stored procedures. Additionally, it includes a Data Window to modify and view data and context-sensitive help.
    Beginning with Oracle Database 10g Release 2, developers can build and deploy .NET stored procedures for their Oracle database.
    For application integration, web services can facilitate integration between your existing Oracle and .NET applications.
    Q: Where can I find ODP.NET help and sample code?
    A: ODP.NET documentation is available from within Visual Studio .NET using Dynamic Help. Just hit the F1 key when your cursor is on an ODP.NET API and a help page for that API will appear right within Visual Studio .NET.
    Additional ODP.NET documentation is available both locally installed and from the ODP.NET documentation page.
    Sample code can be found both locally as part of the ODP.NET installation (e.g. c:\oracle\<Oracle Home Name>\ODP.NET\samples) and on ODP.NET samples page.
    ODP.NET users can ask questions on the ODP.NET discussion forum.
    Q: I have ODP.NET installed, but I can't find the ODP.NET Dynamic Help. Where is it?
    A: This behavior sometimes occurs when installing new Visual Studio .NET versions over an ODP.NET installation. To enable ODP.NET Dynamic Help, go to Visual Studio .NET Combined Help Collection Manager located in Visual Studio .NET 2002 or Visual Studio .NET 2003. Make sure the box next to the Oracle Data Provider for .NET Help is checked and click on the Update VSCC button. Close Visual Studio .NET and re-open it to enable ODP.NET Dynamic Help.
    Note: Because of security restrictions, you may need to copy and paste the links above to a browser, rather than clicking on them. Once copied to a local browser, if you have a Windows service pack that prevents active content (e.g. Windows XP service pack 2), you will need to allow active content to view the complete page. To do this, click on the yellow bar at the top of the Visual Studio .NET Combined Help Collection Manager page, which indicates active content has been blocked. Select "Allow Blocked Content". A security warning will show up. Click "Yes" and you will be able to view the page in its entirety, including having the option to incorporate the Oracle Data Provider for .NET Help into Visual Studio .NET.
    Q: What are the new features in this version of ODP.NET?
    A:
    ODP.NET 10.2.0.1.0
    Server-side ODP.NET for .NET stored procedures
    RAC client-side connection load balancing and automatic connection cleanup
    Database Change Notification
    LOB and LONG retrieval - faster data retrieval, InitialLOBFetchSize can be up to 2GB, and full LOB functionality when InitialLOBFetchSize > 0 (i.e. GetOracleClob and GetOracleBlob methods are enabled). These same features are now enabled with LONGs with its respective APIs.
    Connection Pool Management - explicitly clear connection pool(s)
    Client Identifier property for supporting application context security, such as with VPD
    Input REF Cursor parameters
    ODP.NET 10.1.0.3.0
    Statement caching
    DeriveParameters - automatic population of stored procedure parameters
    Cancel long running queries
    ADO.Net 1.1 interfaces - HasRows and EnlistDistributedTransaction properties
    LOB and LONG retrieval - Entire LOB and LONG column data can be retrieved even if the select list does not contain a primary key, ROWID, or unique key.
    ODP.NET 10.1.0.2.0
    Grid support
    Schema-based XMLType
    BINARY_FLOAT and BINARY_DOUBLE datatypes
    Multiple Oracle Homes
    ODP.NET 9.2.0.4.01
    Improved XML DB and XMLType support
    PL/SQL associative arrays
    connection pool validation
    InitialLOBFetchSize property to improve LOB retrieval performance
    Q: How do I make a feature enhancement request for ODP.NET?
    A: You can contact Oracle Support or use the ODP.NET discussion forum to make an enhancement request.
    Q: What features will ODP.NET support in future releases?
    A: In general, Oracle does not discuss features in future product releases until the release date nears. We are well aware of enhancement requests made through the ODP.NET discussion forum and Oracle support. We encourage Oracle users to continue to make their requests known. Oracle will do its best to fulfill these requests in future releases.
    Q: Do I need to install ODP.NET on my Oracle database server?
    A: No. You only need to install ODP.NET for running client or middle-tier .NET applications. The exception is if you are using .NET stored procedures in the database server. The server-side ODP.NET provider will automatically be installed with the Oracle Database Extensions for .NET.
    Q: Can ODP.NET work with Oracle8, Oracle8i, Oracle9i, and Oracle10g database (DB) servers? Can these DB servers be on Linux or Unix?
    A: Yes and yes. Oracle clients can support older and newer versions of the Oracle database. Consult the Oracle on Windows FAQ for more information.
    Oracle clients on Windows can work with Oracle database servers on any platform.
    Q: Can ODP.NET be used with an Oracle8, Oracle8i, or Oracle9i Release 1 client?
    A: No. You need to use the Oracle9i Release 2 or higher client.
    Q: What do I need to have installed on my client machine to have ODP.NET work?
    What needs to be on a client machine when running an application compiled with the 10g ODP.NET?
    The FAQ states the following :-
    A: You will require the following:
    Windows 2000, Windows XP Professional, or Windows Server 2003
    Microsoft .NET Framework 1.0 or higher
    Oracle9i Client Release 2 (9.2) or higher
    Oracle Net Services (included with the client)
    Oracle Services for Microsoft Transaction Server, Release 2 (9.2) or higher. This is required for applications using distributed transacations.
    This implies that ODP.NET does NOT need to be installed on a client. However, I cannot find OraOPs9.dll on a machine with Client Release 9.2 installed. Should OraOps?.dll automatically come with a Client installation of 9.2 or higher?
    Also, if an application is built with the 10g ODP.NET, can it be run from a machine with OraOps9.dll?
    I'd be very grateful for anyone who can clear up my confusion.
    Mick

    This implies that ODP.NET does NOT need to be installed on a client. However, I cannot find OraOPs9.dll on a machine with Client Release 9.2 installed. Should OraOps?.dll automatically come with a Client installation of 9.2 or higher?
    ODP.NET needs to be installed on the client. OraOps9.dll is part of ODP.NET, not the Oracle Client.
    Also, if an application is built with the 10g ODP.NET, can it be run from a machine with OraOps9.dll?
    If an application is built with 10g ODP.NET, it can be run with 9.2 ODP.NET as long as you do not use any 10g APIs. The new features in 10g ODP.NET are included in the doc and the ODP.NET FAQ for your reference.

  • Running Reports from Client Machines in which the reports are residing on t

    Hi Folks,
    I'm using Developer 6i with Oracle 9i. I can run forms from the clients so that the FMX file is residing on a shared drive on the server, but when I try to run reports which also reside on the shared drive of server, I get error that unable to find the report. Do I need to install report server on the client machine/server or am I missing some basic step here?
    TIA
    Hassan

    Hi,
    There's a whitepaper on the topic of Forms/Reports integration for the web called "Oracle9iAS Forms Services and Reports Services Integration". This should give you the information you are seeking.
    regards,
    Stewart

  • Accessing print services in the client machine(browser)

    Query: We had migrated a forms-3 form to forms-6i. The forms-3 form used a userexit to call a related Pro*C functionality that helped finally to print the report file generated during the process into the client machine's printer.
    How do we take care of this functionality in forms-6i? That is, the user should be able to do the printing from the forms screen in the browser..
    Please help..

    Thank you for replying..
    We have earlier tried the web.show_document procedure to call the .html or .txt file....But in forms-3(back-end on a UNIX server with the Pro*Cs), an ascii file was created at the server side in the client's home directory, and this file was accessed and used from the front-end machine(a UNIX terminal or a QVTTerm like application on Windows), to be printed out onto the printer device configured on the client machine...As in your reply, through web.show_document also the printing can be finally done..But the user has to wait for the new browser window to get opened and show the content and then print it...These steps were not needed in forms-3, that is, on a click of the print-related-button, it did the job...So, in the same way, can something be done on the forms-6i form(use a printer-javabean or something else), to get the functionality???
    Please help..

  • How to refresh XML file  from my client machine

    Hai All
    I have temp.XML and temp.XSL template in our server machine.
    when i give a print from client machine first time it gives the record,and next time it did not get refresh.Always it shows the previous records in the browser.But when i go into the server machine and click on temp.xml,it shows the current record(correct records)
    How to refresh XML file  from my client machine?
    Regards
    Dhina

    You never delete a Time Machine backup by dragging it to the Trash. You are supposed to use the TM application to manage the backups. What you will need to do now is to simply erase the drive using Disk Utility.

  • Contacts on client machine suffer from disk I/O errors

    Contacts are running slow if not at all on my client machines.  I check the logs and it is having trouble with accessing the files and or writing the files.  all other programs seem to work fine.  Mail hangs but I think it is because of the contacts issue.  It seems to have trouble reading the contacts list and dumps the list and attempts to rebuild from iCloud and the server.  there are many .unknown files in the library.  The logs state that there is a disk I/O error while accessing /Network/myserver/Volumes/MyBook/Users/username/Library/Address Book (this is from memory but it is close).  The contacts work perfectly (as expected) if the user is logged into the server.
    I am running 10.8 server and clients with shared home folders.  the user folders are on an external drive.  the drive does have permissions turned on.  I have wiped out the contacts directory in the  Library folder and it proceeds to rebuild but the problem is still there.
    would rebuilding the clients from scratch help?
    David Urban

    Hello
    I have exactly the same problem (its taken me ages to figure where the issue is).
    Currently running 10.8 Server on Mac Mini Server
    10.8 Clients include another Mac Mini, 2x MBAs
    31/07/2012 21:47:45.068 Contacts[340]: Unknown error reading database file, will attempt reimporting: Error Domain=NSCocoaErrorDomain Code=256 "The file couldn’t be opened." UserInfo=0x7f8e7da52520 {NSSQLiteErrorDomain=2058, NSUnderlyingException=I/O error for database at /Network/Servers/mountainserver/Users/test123/Library/Application Support/AddressBook/Sources/804A0C27-5BDC-42ED-B64B-0B4A48BB0C72/AddressBook-v2 2.abcddb.  SQLite error code:2058, 'disk I/O error'} {
        NSSQLiteErrorDomain = 2058;
        NSUnderlyingException = "I/O error for database at /Network/Servers/mountainserver/Users/test123/Library/Application Support/AddressBook/Sources/804A0C27-5BDC-42ED-B64B-0B4A48BB0C72/AddressBook-v2 2.abcddb.  SQLite error code:2058, 'disk I/O error'";
    And so on:
    31/07/2012 21:47:45.069 Contacts[340]: Move Address Book store at /Network/Servers/mountainserver/Users/test123/Library/Application Support/AddressBook/Sources/804A0C27-5BDC-42ED-B64B-0B4A48BB0C72/AddressBook-v2 2.abcddb to /Network/Servers/mountainserver/Users/test123/Library/Application Support/AddressBook/Sources/804A0C27-5BDC-42ED-B64B-0B4A48BB0C72/AddressBook-v2 2.abcddb.3DE2BE43-E068-4AED-A635-AE1988E6118F.unknown
    31/07/2012 21:47:58.145 Contacts[340]: CoreData: error: (2058) I/O error for database at /Network/Servers/mountainserver/Users/test123/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:2058, 'disk I/O error'
    31/07/2012 21:47:58.146 Contacts[340]: Unknown error reading database file, will attempt reimporting: Error Domain=NSCocoaErrorDomain Code=256 "The file couldn’t be opened." UserInfo=0x7f8e7bcb5b40 {NSSQLiteErrorDomain=2058, NSUnderlyingException=I/O error for database at /Network/Servers/mountainserver/Users/test123/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:2058, 'disk I/O error'} {
        NSSQLiteErrorDomain = 2058;
        NSUnderlyingException = "I/O error for database at /Network/Servers/mountainserver/Users/test123/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:2058, 'disk I/O error'";
    31/07/2012 21:47:58.147 Contacts[340]: Move Address Book store at /Network/Servers/mountainserver/Users/test123/Library/Application Support/AddressBook/AddressBook-v22.abcddb to /Network/Servers/mountainserver/Users/test123/Library/Application Support/AddressBook/AddressBook-v22.abcddb.F13475A4-E1FC-4427-91FF-7FE935E2F40C .unknown
    31/07/2012 21:47:58.890 Mail[333]: CoreData: error: (522) I/O error for database at /Network/Servers/mountainserver/Users/test123/Library/Containers/com.apple.mail /Data/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:522, 'disk I/O error'
    31/07/2012 21:47:58.891 Mail[333]: Core Data: annotation: -executeRequest: encountered exception = I/O error for database at /Network/Servers/mountainserver/Users/test123/Library/Containers/com.apple.mail /Data/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:522, 'disk I/O error' with userInfo = {
        NSFilePath = "/Network/Servers/mountainserver/Users/test123/Library/Containers/com.apple.mai l/Data/Library/Application Support/AddressBook/AddressBook-v22.abcddb";
        NSSQLiteErrorDomain = 522;
    At first I thought it may be related to upgraded 10.8 clients and server i.e. went throught the normal install option without re-installing OSX.
    So I completely rebuild (i.e. erased and then installed Mountain Lion from USB stick) the server and the client machines...but I still get the same issue, so clearly this is NOT the solution.
    I have also observed (upon reading others' issues with Contacts/mail) apple forums - so I followed the the same action (trashed the Address Book folder in ~Library/Application Support/ ) after unchecking everything in iCloud in system prefs/restarting etc.) but this doesn't so solve the problem either
    I also observed teh following behaviours:
    Login into iCloud for the first time - appears to be ok
    Run Contacts - appears to be ok
    Wait the addresses to sync from iCloud - appears to be ok
    Quit
    Run Contacts - still appears to be ok
    (i.e. the errors above are not displayed in log)
    Run Mail (which takes a long time)
    Contacts sudden looses all address and effectively both Mail and Contacts freeeze. It is at this point I start seeing the above errors
    I get a further odd error in Contacts (in a triange with '!' warning)
    Basically Contacts and mail don't seem to want to work together - they appear ok in isolation - obviously this isn't acceptable.
    I've noted that if I create a local logon on any one of the client macs, the issue with contacts/mail does not occur and runs perfectly smoothly. So in my eyes it appears to be a problem in Mountain Lion Server/Client Combo Only (I did not have this issue under Lion Server/Client Combo)
    H - E - L - P !!

  • (Cisco Historical Reporting / HRC ) All available connections to database server are in use by other client machines. Please try again later and check the log file for error 5054

    Hi All,
    I am getting an error message "All available connections to database server are in use by other client machines. Please try again later and check the log file for error 5054"  when trying to log into HRC (This user has the reporting capabilities) . I checked the log files this is what i found out 
    The log file stated that there were ongoing connections of HRC with the CCX  (I am sure there isn't any active login to HRC)
    || When you tried to login the following error was being displayed because the maximum number of connections were reached for the server .  We can see that a total number of 5 connections have been configured . ||
    1: 6/20/2014 9:13:49 AM %CHC-LOG_SUBFAC-3-UNK:Current number of connections (5) from historical Clients/Scheduler to 'CRA_DATABASE' database exceeded the maximum number of possible connections (5).Check with your administrator about changing this limit on server (wfengine.properties), however this might impact server performance.
    || Below we can see all 5 connections being used up . ||
    2: 6/20/2014 9:13:49 AM %CHC-LOG_SUBFAC-3-UNK:[DB Connections From Clients (count=5)]|[(#1) 'username'='uccxhrc','hostname'='3SK5FS1.ucsfmedicalcenter.org']|[(#2) 'username'='uccxhrc','hostname'='PFS-HHXDGX1.ucsfmedicalcenter.org']|[(#3) 'username'='uccxhrc','hostname'='PFS-HHXDGX1.ucsfmedicalcenter.org']|[(#4) 'username'='uccxhrc','hostname'='PFS-HHXDGX1.ucsfmedicalcenter.org']|[(#5) 'username'='uccxhrc','hostname'='47BMMM1.ucsfmedicalcenter.org']
    || Once the maximum number of connection was reached it threw an error . ||
    3: 6/20/2014 9:13:49 AM %CHC-LOG_SUBFAC-3-UNK:Number of max connection to 'CRA_DATABASE' database was reached! Connection could not be established.
    4: 6/20/2014 9:13:49 AM %CHC-LOG_SUBFAC-3-UNK:Database connection to 'CRA_DATABASE' failed due to (All available connections to database server are in use by other client machines. Please try again later and check the log file for error 5054.)
    Current exact UCCX Version 9.0.2.11001-24
    Current CUCM Version 8.6.2.23900-10
    Business impact  Not Critical
    Exact error message  All available connections to database server are in use by other client machines. Please try again later and check the log file for error 5054
    What is the OS version of the PC you are running  and is it physical machine or virtual machine that is running the HRC client ..
    OS Version Windows 7 Home Premium  64 bit and it’s a physical machine.
    . The Max DB Connections for Report Client Sessions is set to 5 for each servers (There are two servers). The no of HR Sessions is set to 10.
    I wanted to know if there is a way to find the HRC sessions active now and terminate the one or more or all of that sessions from the server end ? 

    We have had this "PRX5" problem with Exchange 2013 since the RTM version.  We recently applied CU3, and it did not correct the problem.  We have seen this problem on every Exchange 2013 we manage.  They are all installations where all roles
    are installed on the same Windows server, and in our case, they are all Windows virtual machines using Windows 2012 Hyper-V.
    We have tried all the "this fixed it for me" solutions regarding DNS, network cards, host file entries and so forth.  None of those "solutions" made any difference whatsoever.  The occurrence of the temporary error PRX5 seems totally random. 
    About 2 out of 20 incoming mail test by Microsoft Connectivity Analyzer fail with this PRX5 error.
    Most people don't ever notice the issue because remote mail servers retry the connection later.  However, telephone voice mail systems that forward voice message files to email, or other such applications such as your scanner, often don't retry and
    simply fail.  Our phone system actually disables all further attempts to send voice mail to a particular user if the PRX5 error is returned when the email is sent by the phone system.
    Is Microsoft totally oblivious to this problem?
    PRX5 is a serious issue that needs an Exchange team resolution, or at least an acknowledgement that the problem actually does exist and has negative consequences for proper mail flow.
    JSB

  • Multiple OD users simultaneously logged in to one client machine?

    I'd like to be able to have multiple OD network home folder users logged into a single client machine at a time. They would switch between themselves using Fast User Switching. I can't figure out how to make this work. Is this simply not possible or am I missing a configuration setting somewhere that allows this to happen?

    The first thing that comes to mind is that the share point hosting the user's network home directory is already mounted as another user which would cause it to fail. When I try this the Login Window says the user is unable to log in- makes sense.
    Next I tried creating another automount share point on the server (/Shared Items/More Users) and assigning the 2nd user to use that share point (so the homes are on different share points) and that appears to work. Not sure exactly how 'supported' this configuration is but it appears to work (in other words, your mileage may vary). Here are the mount command results from the client:
    mount
    /dev/disk0s3 on / (hfs, local, journaled)
    devfs on /dev (devfs, local, nobrowse)
    /dev/disk0s2 on /Volumes/Loki (hfs, local, journaled)
    map -hosts on /net (autofs, nosuid, automounted, nobrowse)
    map auto_home on /home (autofs, automounted, nobrowse)
    map -fstab on /Network/Servers (autofs, automounted, nobrowse)
    trigger on /Network/Servers/server.domain.com/Users (autofs, automounted, nobrowse)
    trigger on /Network/Servers/server.domain.com/Shared Items (autofs, automounted, nobrowse)
    trigger on /Network/Servers/server.domain.com/Shared Items/More Users (autofs, automounted, nobrowse)
    afp_3a2gxv44sbgc0lNAhO1lX1fO-1.2d000007 on /Network/Servers/server.domain.com/Shared Items/More Users (afpfs, nodev, nosuid, automounted, nobrowse, mounted by jupeman)
    afp_3a2gxv44sbgc0lNAhO1lX1fO-1.2d000008 on /Volumes/Public (afpfs, nodev, nosuid, nobrowse, mounted by jupeman)
    afp_3a2gxv44sbgc0lNAhO1lX1fO-1.2d000009 on /Network/Servers/server.domain.com/Users (afpfs, nodev, nosuid, automounted, nobrowse, mounted by rick)
    afp_3a2gxv44sbgc0lNAhO1lX1fO-1.2d00000a on /Volumes/Public-1 (afpfs, nodev, nosuid, nobrowse, mounted by rick)
    As you can see, jupeman has mounted /Network/Servers/server.domain.com/Shared Items/More Users and rick has mounted /Network/Servers/server.domain.com/Users
    Best of luck!

  • Group calendars on 10.6.4 client machines no longer work with iCal Server

    After updating 2 client machines to 10.6.4 I realized my group calendars no longer work in iCal.
    I get "Server Responded With an Error" on all my group calendars, on both machines.
    Preferences>Accounts>Server Path reveles the server path has reverted back to a GUID "/principals/_uids_/GUID string/" .
    I change it back to "/principals/_uids_/wiki-GroupName/" and get it working again, but if I quit iCal and restart it again reverts back to the GUID.
    I've trashed all calendars in ~/Library/Calendars, and the Prefs. I also tried "/principals/wikis/GroupName/", but again it reverts.
    I booted to my 10.6.3 clone and have no problems with the group calendars there.
    (I'm running 10.6.4 Server)
    Is anyone else having this issue?
    Any ideas?

    Are you asking for an example of how to use calendarservermanageprincipals? While the tool is designed to help you configure privileges on resources and locations, it works fine for users. So I created a new user in Workgroup Manager to represent my Marketing department's calendars. I named this user "sharedmarketing".
    Then, I wanted to give staff read-only access to the calendar and give Marketing write access, so I executed these two commands:
    sudo calendarservermanageprincipals --add-write-proxy groups:marketing users:sharedmarketing
    sudo calendarservermanageprincipals --add-read-proxy groups:staff users:sharedmarketing
    I then imported the content from the Marketing Wiki calendar into this calendar and that was it!
    If I logged in directly to the sharedmarketing account (not necessary), and looked how the account was set to be delegated, it properly showed group names:
    There is no way to configure it like this using the iCal GUI, and this was I always felt that the management of privileges was the biggest obstacle in setting up iCal Server in this proper, supported fashion.
    Then, from the client, I can naturally access those group calendars:
    This is SO much easier to setup and maintain as each user only needs to have their ONE iCal account configured and they can just add the necessary groups, which is WAY easier than supplying users with crazy wiki-calendar URLs.

Maybe you are looking for

  • Error VTDecoderXPXService Quit Unexpectedly

    It's a brand new iMac 27". Following this procedure as stated in the MacPro area: Launch the Terminal application in any of the following ways: ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be

  • How do I rename a group of photos ?

    I can t find a way to rename a group of photos at the same time as I did in Aperture. Has anyone a solution ?

  • Time Capsule and Final Cut Studio

    Is there a way to have Time machine and Time Capsule halt operations while Final Cut Studio components are in use? I've had a couple of annoying hangs.

  • Regular hang-ups both online and off

    HPE-570f AMD Phenom (tm) II Processor Windows 7 64-but Have recently reformatted out of desperation! This machine continues to regularly hang up despite the best efforts of HP's online help and a complete reformat.  Is this processor just a dog?  I'v

  • Adobe Captivate 5.5 file could not open project

    After copying/pasting a few Captivate slides from one project to another, we received the following message and can not open the file any more. Any advice would be appreciated.  Should we insert slides from one Captivate to another someway differentl