Cannot Access OpenLDAP Directory Server for Windows

Hi All,
Need urgent help for connecting to LDAP server which I installed on my Win 2000 Professional m/c. The LDAP installation was downloaded from the site www.ilex.fr/openldap. I successfully installed it. In the slapd.conf file, I have set the server suffice as dc=mycompany,dc=com and the rootdn is cn=Manager,dc-mycompany,dc=com. I have the following piece of code which tries to list the Java schema in the LDAP directory. The code was downloaded from sun's JNDI tutorial. The name of the Program is
CreateJavaSchema and it is run by giving the following options:
-l     List the Java schema in the directory
-n<dn>      Use <dn> as the distinguished name for authentication
-p<passwd>     Use <passwd> as the password for authentication
-a<auth>     Use <auth> as the authentication mechanism. Default is "simple".
I tried to run the program as java CreateJavaSchema -ncn=Manager,dc=mycompany,dc=com -psecret99
where secret99 is the root password . However I get the following exception
javax.naming.CommunicationException: localhost:389. Root exception is java.net.ConnectException: Connection refused: connect
Can somone help me with this?
Thanks

The Code ..yes
Here it is: .This code is availbale from JNDI tutorial. I run the program by specifying following command-line arguments.
java ListJavaSchema -ncn=Manager,dc=mycompany,dc=com -psecret99.
However I get the exception "javax.naming.CommunicationException: localhost:389. Root exception is java.net.ConnectException: Connection refused: connect"
import javax.naming.*;
import javax.naming.directory.*;
import java.util.Hashtable;
public class ListJavaSchema {
protected static String dn, passwd, auth;
protected static boolean netscapebug;
// NS 4.1 has problems parsing an object class definition which contains
// a MUST clause without parentheses. The workaround is to add a
// superfluous value (objectClass) to each MUST clause.
// It also doesn't like the Octet String syntax (use Binary instead)
protected static boolean netscape41bug = false;
// AD supports auxiliary classes in a peculiar way.
protected static boolean activeDirectorySchemaBug = false;
protected static boolean traceLdap = false;
protected static final int LIST = 0;
protected static final int UPDATE = 1;
private static String[] allAttrs = {
     "javaSerializedObject",
     "javaFactoryLocation",
     "javaReferenceAddress",
     "javaFactory",
     "javaClassName",
     "javaClassNames",
     "javaDoc",
     "javaSerializedData",
     "javaCodebase",
     "javaFactory",
     "javaReferenceAddress"};
private static String[] allOCs = {
     "javaObject",
     "javaNamingReference",
     "javaSerializedObject",
     "javaRemoteObject",
     "javaMarshalledObject",
     "javaContainer"};
public static void main(String[] args) {
     new ListJavaSchema().run(args, allAttrs, allOCs);
ListJavaSchema() {
protected void run(String[] args, String[] attrIDs, String[] ocIDs) {
     int cmd = processCommandLine(args);
     try {
     DirContext ctx = signOn();
     System.out.println("Context: "+ctx);
     switch (cmd) {
     case UPDATE:
//          updateSchema(ctx, attrIDs, ocIDs);
          break;
     default:
          showSchema(ctx, attrIDs, ocIDs);
     } catch (NamingException e) {
     e.printStackTrace();
* Signs on to directory server using parameters supplied to program.
* @return The initial context to the server.
private DirContext signOn() throws NamingException {
     if (dn != null && auth == null) {
     auth = "simple";      // use simple for Netscape
     Hashtable env = new Hashtable();
     env.put(Context.INITIAL_CONTEXT_FACTORY,
     "com.sun.jndi.ldap.LdapCtxFactory");
     env.put(Context.REFERRAL, "follow");
     if (auth != null) {
     env.put(Context.SECURITY_AUTHENTICATION, auth);
     env.put(Context.SECURITY_PRINCIPAL, dn);
     env.put(Context.SECURITY_CREDENTIALS, passwd);
     // Workaround for Netscape schema bugs
     if (netscapebug) {
     env.put("com.sun.naming.netscape.schemaBugs", "true");
     // LDAP protocol tracing
     if (traceLdap) {
     env.put("com.sun.jndi.ldap.trace.ber", System.err);
System.out.println("HashMap: "+env);
     return new InitialDirContext(env);
void showSchema(DirContext ctx, String[] attrs, String[] ocs)
     throws NamingException {
     DirContext attrRoot =
     (DirContext)ctx.getSchema("").lookup("AttributeDefinition");
     printSchema(attrRoot, attrs);
     DirContext ocRoot =
     (DirContext)ctx.getSchema("").lookup("ClassDefinition");
     printSchema(ocRoot, ocs);
private void printSchema(DirContext ctx, String[] ids) {
     for (int i = 0; i < ids.length; i++) {
     try {
          System.out.print(ids[i] + ": ");
          System.out.print(ctx.getAttributes(ids));
     } catch (NamingException e) {
     } finally {
          System.out.println();
private int processCommandLine(String[] args) {
     String option;
     boolean schema = false;
     boolean list = false;
     for (int i = 0; i < args.length; i++) {
     option = args[i];
     if (option.startsWith("-h")) {
          printUsage(null);
     if (option.startsWith("-s")) {
          schema = true;
          netscapebug = option.equals("-sn");
          netscape41bug = option.equals("-sn41");
          activeDirectorySchemaBug = option.equals("-sad");
     } else if (option.startsWith("-l")) {
          list = true;
     } else if (option.startsWith("-a")) {
          auth = option.substring(2);
     } else if (option.startsWith("-n")) {
          dn = option.substring(2);
     } else if (option.startsWith("-p")) {
          passwd = option.substring(2);
     } else if (option.startsWith("-trace")) {
          traceLdap = true;
     } else {
          // invalid option
          printUsage("Invalid option");
     if (!schema) {
     return LIST;
     } else {
     return UPDATE;
protected void printUsage(String msg) {
     printUsageAux(msg, "Java");
protected void printUsageAux(String msg, String key) {
     if (msg != null) {
     System.out.println(msg);
System.out.print("Usage: ");
System.out.println("java [-Djava.naming.provider.url=<ldap_server_url>] \\");
System.out.println(" Create" + key + "Schema [-h|-l|-s[n|n41|ad]] [-n<dn>] [-p<passwd>] [-a<auth>]");
System.out.println();
System.out.println(" -h\t\tPrint the usage message");
System.out.println(" -l\t\tList the " + key + " schema in the directory");
System.out.println(" -sn\tUpdate schema:");
System.out.println(
"\t\t -sn use workaround for Netscape Directory pre-4.1 schema bug");
System.out.println(
"\t\t -sn41 use workaround for Netscape Directory 4.1 schema bug");
System.out.println(
"\t\t -sad use workaround for Active Directory schema bug");
System.out.println(" -n<dn>\tUse <dn> as the distinguished name for authentication");
System.out.println(" -p<passwd>\tUse <passwd> as the password for authentication");
System.out.println(" -a<auth>\tUse <auth> as the authentication mechanism");
System.out.println("\t\t Default is 'simple' if dn specified; otherwise 'none'");
     System.exit(-1);

Similar Messages

  • HTTP Server for Windows 64 bit not on the companion CD

    Hi,
    I cannot find the HTTP Server for Windows 64 bit on the companion CD. Any idea where I can get it from? For the 32bit version the HTTP Server is on the Companion CD.
    Thanks in advance,
    Florin

    If i am correct reason should be : Oracle Application Server 10g will run as a 32-bit application
    Following platforms have the same media in either case:
    Microsoft Windows 32-bit and EM64T/AMD64
    (Not Itanium-64, which is separate and referred to as "Windows 64-bit")
    Linux x86 and Linux x86-64
    Solaris Sparc 32-bit and Solaris Sparc 64-bit
    As the Oracle Application Server 10g will be run as a 32-bit application. See the Installation Guide or readme files for any specific steps on these 64-bit platforms.
    Refer the Note.433061.1 - How to Obtain Application Server 10g Media, Patchsets, and Patches

  • Cisco Secure Access Control Server for Windows 3.0

    I have to rebuild a server using Cisco Secure Access Control Server for Windows 3.0 ... I cannot locate this software under "download software" in cisco.com ..
    where can I download a copy for Cisco Secure Access Control Server for Windows 3.0 ?

    Hi,
    You can not download the ACS windows Solution engines softwares from the cisco.com > download pages as these s/w are not available there. You can only download patches and remote agent software.
    In order to get any ACS software/ upgrade assistance you need to open up a TAC case.
    Also, ACS 3.0 is not supported by Cisco anymore..getting support for this version or any 3.x is not possible.
    HTH
    Regards,
    JK

  • SL server as standalone server for  Windows(XP,7) network

    We have been using an OS X 10.3.9 Server XServe G5 as a mainly Windows ( all XP clients) PDC file server for 6-7 years. What a great machine and super reliable. But of course it is getting long in the tooth and so I am looking at the Mac Mini SL Server bundle.
    Now along comes Windows 7 which won't authenticate against an old style PDC. I am quite confused about whether a standalone SL server can act as a whatever is the equivalent to a PDC in the Windows 7 world. We simply want all our Windows XP and 7 client machines to authenticate against the SL server for consistent file sharing access.
    Thanks

    See:
    http://support.apple.com/kb/ts3235
    OS X cannot act as a PDC for Windows 7 or 2008 Server R2. So if you want to run a directory system for Windows 7, you can't use OS X at this moment in time.
    However, if you are happy for your Windows machines to be stand alone, not part of any domain and have all the users managed locally on each machine, then you can use OS X as a file server.
    You will need to create users on both the Windows machines and on the OS X box in this case.
    If you just have Windows clients and want a directory system, I would be looking at Active Directory.

  • Error: "Cannot access the web server" with BlazeDS Turnkey

    Help! I'm new to Flex and BlazeDS and Eclipse.  I was trying to setup a Flex Project using a BlazeDS/Tomcat server running from Eclipse on Windows XP per the example in flexbandit.com/archives/55#comment-269 and in (www.infoq.com/articles/blazeds-intro).   I am NOT using the Eclipse Flex plug-in.  I'm using Flex Builder for the Flex code.
    Here's what I've done:
    I installed BlazeDS and tested http://localhost:8400 - That worked.
    I setup Tomcat in Eclipse.  -  That seemed to work.
    I created a Dynamic Web Project in Eclipse - That seemed to work.
    I created the bare-bones BlazeDS Configuration under the Eclipse project and then created a basic HelloWorld java class.
    I added the destination in the “remoting-config.xml” file found in the c:/projects/workspace/ReportGenTool/WebContent/WEB-INF/flex” directory:
    <destination id="HelloWorld">   <properties>  <source>HelloWorld</source> </properties> </destination>
    When I started the application server by clicking on the server's green play button in Eclipse and then tried to open localhost:8400/ReportGenTool, I got the 404 error : The requested source (/ReportGenTool/) is not available which according to the instructions is fine.
    Next I created a Flex Project, but when I try to validate the new Flex project configuration, it gives me an error "Cannot access the web server. The server may not be running, or the web root folder or root URL may be invalid."
    When I validated the server was running after setting up the BlazeDs Turnkey, I saw the BlazeDS page.
    Now when I bring up http://localhost:8400 I get:
          Directory Listing for /
          Apache Tomcat/6.0.14
    My eclipse project is named ReportGenTool and I've overwritten the WebContent directory with the META-INF and WEB-INF directories from the BlazeDS installation (C:\blazeds\tomcat\webapps\blazeds).  According to Eclipse the server is running.
    My Flex project is named ReportGenTool and is located in another directory away from the Eclipse project directory.
         My root folder is: C:\Projects\workspace\ReportGenTool\WebContent
         Root URL: is http://localhost:8400/ReportGenTool/
         Context root is: /ReportGenTool/
    Any idea what might be wrong? What didn't I configure that needs to be configured?
    Thanks in advance.

    This is not working because your router has a direct to your web server that is not through the outside interface which is needed for nat to occur, for this to work you need to setup a loopback interface as nat outside and policy route traffic to there for your server traffic
    Bu if your server is internal why do you need nat at all? Can you not use bind with views that might be simpler
    M
    Sent from Cisco Technical Support iPad App

  • Can't access my Directory Server using the Console installed on a machine

    can't access my Directory Server using the Console installed on a remote server, lookied into knowledge base article 4693, but still same any idea ?

    I too am having problems accessing Directory server from Netscape Console installed on Winxp.
    If I try to open Directory server it doesn't give any error. No windows nothing.
    If I try th same from the machine on which it is installed everything is fine. What is strange is that it did open a couple of times. But at the same time I can open the admin server, Netscape Messaging server from the xp box. Searching all over for a solution. Any help/pointers would be greatly appreciated.
    Config details:
    iDS4.13, iMS 5.0, running on Sol 8 box
    Netscape Console 4.2 on WinXP.
    Thanks

  • Free (java-based) LDAP server for Windows

    Hello,
    I am experimenting with JNDI. Can anyone tell me if there is a free LDAP server for Windows that I could use to run JNDI examples.
    Thanks in advance,
    Balteo.

    Attached is may slapd.conf file I used while I was working through the JNDI tutorial. You can find any comments in the original config file - I deleted them in the attachment.
    Do not forget to create the directory 'openldap-ldbm' manually in the apropriate place as defined in the config file.
    cu, Adrian
    slapd.conf
    # $OpenLDAP: pkg/ldap/servers/slapd/slapd.conf,v 1.8.8.7 2001/09/27 20:00:31 kurt Exp $
    # See slapd.conf(5) for details on configuration options.
    # This file should NOT be world readable.
    #include          %SYSCONFDIR%/schema/core.schema
    include          d:/OpenLDAP/schema/core.schema
    include          d:/OpenLDAP/schema/java.schema
    include          d:/OpenLDAP/schema/krb5-kdc.schema
    pidfile          d:/OpenLDAP/slapd.pid
    argsfile     d:/OpenLDAP/slapd.args
    database     ldbm
    suffix          "o=JNDITutorial"
    rootdn          "cn=Manager,o=JNDITutorial"
    rootpw          changeit
    #directory     %LOCALSTATEDIR%/openldap-ldbm
    directory     d:/OpenLDAP/openldap-ldbm
    index     objectClass     eq

  • Server 2012 R2 SMB - The process cannot access the file '\\server\share\test.txt' because it is being used by another process.

    Hi,
    We are having issues with Server 2012 R2 SMB shares.
    We try to write some changes to a file, but we first create a temporary backup in case the write fails. After the backup is created we write the changes to the file and then we get an error:
    The process cannot access the file '\\server\share\test.txt' because it is being used by another process.
    It looks like the backup process keeps the original file in use.
    The problem doesn't always occur the first time, but almost everytime after 2 or 3 changes. I have provided some code below to reproduce the problem, you can run this in a loop to reproduce.
    The problem is that once the error arises, the file remains 'in use' for a while, so you cannot retry but have to wait at least several minutes. 
    I've already used Process Explorer to analyze, but there are no open file handles. 
    To reproduce the problem: create two Server 2012 R2 machines and run the below code from one server accessing an SMB share on the other server.
    Below is the code I use for testing, if you reproduce the scenario, I'm sure you get the same error.
    We are not looking for an alternative way to solve this, but wonder if this is a bug that needs to be reported?
    Anybody seen this behavior before or know what's causing it?
    The code:
    string file =
    @"\\server\share\test.txt";
    if (File.Exists(file))
    File.Copy(file, file +
    ".bak", true);
    File.WriteAllText(file,
    "Testje",
    Encoding.UTF8);
    The error:
     System.IO.IOException: The process cannot access the file '\\server\share\test.txt' because it is being used by another process.

    Hi,
    There is someone else having the same issue with yours. You could try code in the article below:
    “The process cannot access the file because it is being used by another process”
    http://blogs.msdn.com/b/shawncao/archive/2010/06/04/the-process-cannot-access-the-file-because-it-is-being-used-by-another-process.aspx
    If you wonder the root cause of the issue, the .NET Framework Class Libraries forum can help.
    Best Regards,
    Mandy 
    If you have any feedback on our support, please click
    here .
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Installing Sun Directory Server on Windows Server 2008

    Has anyone tried installing Sun Java System Directory Server in Windows Server 2008? I am trying to do this but get an error stating that nss3.dll is missing at configuration time.

    Windows 2008 is not a supported platform for any DSEE release. Even if you get it working, Sun Support won't be able to help if you have issues.
    This issue seems to have been reported on Windows 2000 with DSEE 6.0 too and one workaround is to remove the nss3.dll from c:\winnt\system32 or equivalent directory. Please note this workaround is not targeted at Windows 2008, so use at your own risk.
    http://sunsolve.sun.com/search/document.do?assetkey=1-1-6680728-1
    Winodws Native DS6.0/ISW6.0 Zip:error could not locate nss3.dll
    Edited by: etst123 on Jan 29, 2009 10:39 AM
    (added link to bug report)

  • I need a request code for offline activation. Because i cannot connect with adobe server for online activation. But I receive "The request code is invalid." by generate answer code.

    I need a request code for offline activation. Because i cannot connect with adobe server for online activation. But I receive "The request code is invalid." by generate answer code.

    Dear Anubha,
    I hope these windows illustrate what I am facing.
    The above window shows the prompt that the software requires activation.
    The version is 8.1.0.
    This next window is the point where I select activation by phone.
    This final window shows that the "response code" is not returned.  I get an
    "Activation Number" instead.
    Steven
    On Tue, Jan 27, 2015 at 10:50 PM, Anubha Goel <[email protected]>

  • The DHCP Service failed to see a directory server for authorization error

    Hi Experts,
    "The DHCP Service failed to see a directory server for authorization error"
    I have DHCP Server installed on the same server where Active directory is installed its a domain controller, when I see the event logs I saw the above error. 
    This alert comes a number of times, just after the error
    "The DHCP/BINL service on the local machine, belonging to the Windows Administrative domain eg.com.pk, has determined that it is authorized to start. It is servicing clients now."
    Please somebody suggest some solution for this.
    TechSpec90

    Two questios:
    Is the server a domain controller?
    And, according to this, "The DHCP/BINL service on the local machine, belonging to the Windows Administrative domain eg.com.pk, has determined that it is authorized to start. It is servicing clients now", the service eventually do start, yes?
    Best Regards,
    Jesper Vindum, Denmark
    Systems Administrator
    Help the forum: Monitor(alert) your threads and vote helpful replies or mark them as answer, if it helps solving your problem.

  • SBS 2008 - Microsoft Azure Active Directory Module for Windows PowerShell - is not supported by your version

    Hi,
    I was following the artigle (http://www.messageops.com/resources/office-365-documentation/ad-fs-with-office-365-step-by-step-guide/) but
    when try to install the 'Office 365 PowerShell Module' shows a msg saying that 'windows azure active directory module for windows powershell is not supported by your version'.
    And according to the blog (http://blogs.office.com/2014/04/15/synchronizing-your-directory-with-office-365-is-easy/) "DirSync can be
    installed on an existing domain controller"
    >>>> Any help is appreciated.
    * Similar issue: http://www.adaxes.com/forum/post7398.html

    Ok Vasil tks for reply, but this server is 64x. I dont get the point.
    Microsoft Windows [Version 6.0.6002]
    C:\Users\Administrator>set
    ALLUSERSPROFILE=C:\ProgramData
    APPDATA=C:\Users\Administrator\AppData\Roaming
    CLIENTNAME=ANJOTEC_NOTE01
    CommonProgramFiles=C:\Program Files\Common Files
    CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files
    COMPUTERNAME=COMPANYBR-SERVER
    ComSpec=C:\Windows\system32\cmd.exe
    FP_NO_HOST_CHECK=NO
    HOMEDRIVE=C:
    HOMEPATH=\Users\Administrator
    lib=C:\Program Files\SQLXML 4.0\bin\
    LOCALAPPDATA=C:\Users\Administrator\AppData\Local
    LOGONSERVER=\\COMPANYBR-SERVER
    NUMBER_OF_PROCESSORS=4
    OS=Windows_NT
    Path=C:\ProgramData\Oracle\Java\javapath;C:\Program Files\HP\NCU;C:\Windows\sys
    em32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\
    1.0\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program File
    (x86)\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files\Microsoft SQL Serve
    \90\DTS\Binn\;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program F
    les (x86)\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files (x86)\Microsoft SQ
    Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft Vis
    al Studio 8\Common7\IDE\PrivateAssemblies\;C:\Program Files (x86)\ExchangeMapi\
    C:\Program Files (x86)\Common Files\Roxio Shared\DLLShared\;C:\Program Files (x
    6)\Common Files\Roxio Shared\DLLShared\;C:\Program Files (x86)\Common Files\Rox
    o Shared\9.0\DLLShared\;C:\Program Files\Microsoft\Exchange Server\bin;C:\Progr
    m Files\Microsoft\Exchange Server\Scripts
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
    PROCESSOR_ARCHITECTURE=AMD64
    PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 30 Stepping 5, GenuineIntel
    PROCESSOR_LEVEL=6
    PROCESSOR_REVISION=1e05
    ProgramData=C:\ProgramData
    ProgramFiles=C:\Program Files
    ProgramFiles(x86)=C:\Program Files (x86)
    PROMPT=$P$G
    PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\
    PUBLIC=C:\Users\Public
    RoxioCentral=C:\Program Files (x86)\Common Files\Roxio Shared\9.0\Roxio Central
    3\
    SESSIONNAME=RDP-Tcp#0
    SystemDrive=C:
    SystemRoot=C:\Windows
    TEMP=C:\Users\Administrator\AppData\Local\Temp\2
    TMP=C:\Users\Administrator\AppData\Local\Temp\2
    USERDNSDOMAIN=COMPANYBR.LOCAL
    USERDOMAIN=COMPANYBR
    USERNAME=administrator
    USERPROFILE=C:\Users\Administrator
    windir=C:\Windows
    C:\Users\Administrator>

  • How do i Install the Software Update Server for Windows 7?

    How do i Install the Software Update Server for Windows 7? I get an error saying: Can't Install the Software because it is not currently available from the Software Update server.
    I downloaded the software so How do I install it?
    Do I install it all over again or when I have windows open?
    I am using Bootcamp.

    Back up your system drive completely. If you have no backup plan in place, now would be a good time to start. You can use CarbonCopyCloner to make a complete, bootable backup of your system on another drive or volume. After you have done this: download the combo update using the link supplied by Niel and run the installer.

  • Mail Server for windows...

    Is there any free mail server for windows that i could use to send emails from my application..
    Its just that I have been trying the JavaMail Api and having no luck, despite help from some of you.
    And my deadline is closing in and I am no closer to the solution...
    There has to be a fast and simple way to send a simple email automatically...anyone know it?
    pleaseeee help........

    I am in college and can use the mail server here no problem...its name is "gabriel.ul.ie", anyone know have any sample code for sending mail, and i could try this with this mailhost...

  • HT4436 cannot access icloud on my microsoft windows 7 computer FAQ's don't help

    I cannot access icloud on my microsoft windows 7 computer FAQ's don't help Keefs coming up with an access error

    Firewall problem.

Maybe you are looking for

  • Can't locate iweb folder in application support

    I cant locate the iweb folder inapplication support, I'm trying to find the domain file but I've haven't succeed.

  • Multi-Camera edits not applied

    Hi and thanx in advance for your help. Premiere Pro CS5. Windows 7 Pro 16 GB RAM lots of disk space.  Premiere It is patched with all patches except the latest Facebook synch patch.  This started a month ago.  It may be related to the number of Timel

  • Merge the Query

    SELECT MAX(fndattdoc.LAST_UPDATE_DATE ) as LAST_UPDATE_DATE, MAX(DECODE(fndcatusg.format,'H', st.short_text,NULL,st.short_text, NULL)) as COMMENTS, MAX(fnddoc.description) as REASON FROM fnd_attachment_functions fndattfn, fnd_doc_category_usages fndc

  • Contacts on Mac and PC do not sync

    Hello, I have been using Skype on my Mac for some time and have a list of Contacts and Favourites. I now want to install it on a PC - downloaded the latest version and signed in but the list of Contacts and Favourites are different to those on my Mac

  • Setting up OS X Server as proxy server

    I remember back in the days one could setup OS X Server as a proxy with web cache. I was wondering is it still possible in OS X 10.10 Server ? It looks like server control are significantly simplified and I can't seem to find relevant feature. I just