Creating OD Replica: Unable to locate kerberos services for localhost

Hello,
I'm trying to setup a new OS X Server to become an OD Replica for my other OS X Server that is acting as an OD Master in an Active Directory Magic Triangle configuration. Both Macs are running the same build of 10.8.2 (12C3104). Here is the log from slapconfig from the Mac I'm trying to set as the replica:
2012-12-17 00:41:11 +0000 slapconfig -createreplica
2012-12-17 00:41:18 +0000 command: /usr/sbin/sso_util info -r /LDAPv3/ldap://172.20.9.40 -p
2012-12-17 00:41:19 +0000 int _populateLDAPService(): Unable to locate kerberos services for localhost: 0 (null)
2012-12-17 00:41:19 +0000 Populating LDAP kerberos service in local node's localhost computer record failed.  Replication and rootDSE may not behave as expected.
2012-12-17 00:41:19 +0000 Error retrieving kerberos realm
2012-12-17 00:41:19 +0000 CopyReplicaArray: ldap_search_ext_s failed
2012-12-17 00:41:19 +0000 Error retrieving replica array
2012-12-17 00:41:19 +0000 Deleting Cert Authority related data
2012-12-17 00:41:19 +0000 No intCAIdentity, not removing int CA from keychain
2012-12-17 00:41:19 +0000 command: /bin/launchctl unload -w /System/Library/LaunchDaemons/com.apple.xscertd.plist
2012-12-17 00:41:19 +0000 command: /bin/launchctl unload -w /System/Library/LaunchDaemons/com.apple.xscertd-helper.plist
2012-12-17 00:41:19 +0000 command: /bin/launchctl unload -w /System/Library/LaunchDaemons/com.apple.xscertadmin.plist
2012-12-17 00:41:19 +0000 void _destroyLDAPServer(const char *): Failed to find computer record named usvtamtln103.lostarrow.com$: 0 (null)
2012-12-17 00:41:19 +0000 Updating ldapreplicas on primary master
2012-12-17 00:41:19 +0000 CopyPrimaryMaster: CopyLdapReplicas failed
2012-12-17 00:41:19 +0000 Unable to locate primary master
2012-12-17 00:41:19 +0000 Primary master node is nil!
2012-12-17 00:41:19 +0000 Unable to locate ldapreplicas record: 0 (null)
2012-12-17 00:41:19 +0000 Error setting read ldap replicas array: 0 (null)
2012-12-17 00:41:19 +0000 Error setting write ldap replicas array: 0 (null)
2012-12-17 00:41:19 +0000 ODRecord *_getODRecord(ODNode *, NSString *, NSString *, NSArray *): ODNodeRef parameter error
2012-12-17 00:41:19 +0000 int _removeReplicaFromConfigRecord(ODNode *, NSString *): ODRecord not found
2012-12-17 00:41:19 +0000 Error synchronizing ldapreplicas: 0 (null)
2012-12-17 00:41:19 +0000 Removing self from the database
2012-12-17 00:41:19 +0000 Stopping LDAP server (slapd)
2012-12-17 00:41:19 +0000 Stopping password server
2012-12-17 00:41:19 +0000 cleanKeytab: unable to retrieve default realm
2012-12-17 00:41:19 +0000 Stopping password server
2012-12-17 00:41:19 +0000 Removed file at path /Library/Preferences/com.apple.openldap.plist.
The only thing I can derive from this is that the issue is related to kerberos. Any suggestions?

SSH is enabled for all users on both Macs. Manually added diradmin aswell just to make me feel better.
Additionally, here's what I get when I try running preflight on either Mac:
usvtamtln101:~ sadmin$ sudo /usr/sbin/slapconfig -preflightreplica 172.20.9.40 diradmin
Password:
172.20.9.40's Password:
2012-12-17 19:34:33 +0000 NSMutableDictionary *_getRootDSE(const char *): rootDSE not found
2012-12-17 19:34:33 +0000 Error: Unable to determine the master's software version.
After seeing this, I tried unbinding both Macs from Active Directory, restarting and then trying again. Same thing...

Similar Messages

  • Unable to locate Spring NamespaceHandler for XML schema namespace

    I am not sure if this is the best practice approach but this is the problem I am ruining into. Below, I explain what I am doing:
    1) What I am doing:
    =============
    Based on the oracle incubator example (http://coherence.oracle.com/display/INCUBATOR/Processing+Pattern+Examples); I am running a server and submitting tasks through a proxy application that submits them to ProcessingPatternConfigurator; let's call my task processReport.
    a) my processReport is using spring and ibatis together, I created a utility static class to obtain a spring context and retrieves beans using the following lines ( see exhibit "A1 and A2" below).
    b) when my task calls the context and that spring loads, it is failing with the error show in exhibit "B".
    I suspect I am missing a lib? I googled the error and searched you site but could find a meaningful discussion on it. I guess my question is if this is not the best approach, how do I integrated with spring initializing beans and setting up ibatis framwork, providing beans and database access through Ibatis for each task ruining on the grid (processReport).
    thanks
    A1) processReport (submitted in the grid) uses this line
    AbstractXmlApplicationContext ctx = (AbstractXmlApplicationContext) AmrContextUtil.getInstance();
              System.out.println("Classpath loaded. Executing Report...");
              ReportProcessor repProcessor = (ReportProcessor) ctx.getBean("reportProcessor");
    A2) Here is the AmrContextUtil:
    import org.springframework.context.support.AbstractApplicationContext;
    import org.springframework.context.support.ClassPathXmlApplicationContext;
    public final class AmrContextUtil {
         private static AbstractApplicationContext ctx = null;
         public AmrContextUtil() {
              super();
         public final static synchronized AbstractApplicationContext getInstance(){
              if (ctx == null){
                   ctx = new ClassPathXmlApplicationContext("classpath:config/applicationContext.xml");
                   setCtx(ctx);
              return ctx;
         public final static synchronized AbstractApplicationContext getCtx() {
              return ctx;
         public final static synchronized void setCtx(AbstractApplicationContext ctx) {
              AmrContextUtil.ctx = ctx;
    B) Here is the error reported by the server:
    2010-02-10 15:42:28.312/57.986 Oracle Coherence GE 3.5.2/463 <Warning> (thread=GridExecutor:Thread-2
    , member=1): TaskRunner - Failed to process 0x00000126B99E5524AC1F007AAB1587BBCFEC5E6637E1DED6CCB984
    03D6AADF4D due to:org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Failed to import bean definitions from URL location [classpath:config/reports-application.xml] Offending resource: class path resource [config/applicationContext.xml]; nested exception is org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Unexpected failure during bean definition parsing
    Offending resource: class path resource [config/reports-application.xml] Bean 'reportSqlMapConfig'; nested exception is org.springframework.beans.factory.parsing.BeanDefinitionParsingException: *Configuration problem: Unable to locate Spring NamespaceHandler for XML schema namespace [http://www.springframework.org/schema/util]*
    *Offending resource: class path resource [config/reports-application.xml] Bean 'reportSqlMapConfig'*
    -> Property 'resourceMap'
    c)Here is my application-context.xml offending line:
    <bean id="reportSqlMapConfig"
    class="com.xx.report.generator.ReportSqlMapConfig">
    <property name="resourceMap">
    <map>
    <entry>
    <key>
    <util:constant static-field="com.xx.report.domain.ReportType.FPA"/>
    </key>
    <value>classpath:config/diehardReportSqlMapConfig.xml</value>
    </entry>
    <entry>
    <key>
    <util:constant static-field="com.xx.report.domain.ReportType.FCN"/>
    </key>
    <value>classpath:config/falconReportSqlMapConfig.xml</value>
    </entry>
    <entry>
    <key>
    <util:constant static-field="com.xx.report.domain.ReportType.ODS"/>
    </key>
    <value>classpath:config/odsReportSqlMapConfig.xml</value>
    </entry>
    </map>
    </property>
    </bean>

    My guess is that something is broken in the configuration of the cacheServer and its not finding
    all of the dependencies that your process pattern application needs. Probably the best way
    to debug this stuff is to define a static main in your runnable task which will make the call
    to the run() method and invoke it as the main class using the identical settings (classpath,
    run directory) that you are using to launch the Coherence cache server.
    Regards,
    Bob

  • Unable to locate Co data for co account assignment in EK02

    Hi,
    While creating entries in EK02 we are getting below error:-
    "The system was unable to locate CO data for CO account assignment key XXXX". We are using profit center and segment reporting " and have maintained the necessary settings in "Define CO Account Assignment Keys" against company code , segment and profit center and also maintained cost element settings.
    Any solution to resolve this error.
    Thanks and Regards
    Kumar

    Hi Kumar,
    Below are the configurations required in this regard.
    1. maintain GL account and const element - FS00. You can check whether the GL maintained as P/L GL.
    2. maintain the cost centre - KS01/02/03. Please verify all the details whether or not have been maintained correctly.
    3. maintain EK01 (if required).
    4. maintain EK02 - please double check whetheryou have CO account assignment 'X' in there.
    5. maintain CO account assignemnt key in SPRO - Check whether correct cost centre is maintained against correct CoCd.
    This would suffice.
    Please let me know if you're stil facing the issue.
    Thanks
    Bodhisattwa

  • JAXB: Unable to locate jaxb.properties for package com.globalrefund.jaxb

    When I package my classes into a jar and try to run my app with
    java -jar myapp.jar
    I get "Unable to locate jaxb.properties for package com.globalrefund.jaxb"
    Everything works fine when I run my app by setting the classpath followed by "java com.globalrefund.MainClass".
    "jaxb.properties" is in the jar in the directory "com.globalrefund.jaxb". I use JRE 1.4.1.
    What's wrong?
    Regards,
    Bernhard

    a little additional info:
    It works when I put jaxb.properties in the directory com.globalrefund.jaxb and let classpath point to the root of the directory structure.
    If I create a jar containing exactly the same directory structure and add the jar to the classpath it does not work.
    Looks like JAXB cannot read jaxb.properties from a jar?!
    Any ideas?
    Thanks
    Bernhard

  • Javax.xml.bind.JAXBException: Unable to locate jaxb.properties for package ...

    I want to marshall a java content tree (generated with jaxb api) in xml stream
    in an EJB.
    Generated classes are archived in a jar file containing its jaxb.properties, when
    I test it
    in a classic java process it runs well.
    When I try to do it in an EJB with weblogic 8.1 I get the following error:
    javax.xml.bind.JAXBException: Unable to locate jaxb.properties for package
    I've checked:
    - jaxb.properties is in the archive file
    I've tried to put the jar file in the classpath of the server in the starter script.
    I've tried to put reference classpath in the manifest of the ejb jar and of application
    ear.
    I've tried to put both reference in server classpath and ear/jar manifest.
    I still doesn't run.
    Any idea?
    Thanks a lot
    Franck

    Add the directory of the generated classes in the classpath.
    "franck" <[email protected]> wrote:
    >
    I want to marshall a java content tree (generated with jaxb api) in xml
    stream
    in an EJB.
    Generated classes are archived in a jar file containing its jaxb.properties,
    when
    I test it
    in a classic java process it runs well.
    When I try to do it in an EJB with weblogic 8.1 I get the following error:
    javax.xml.bind.JAXBException: Unable to locate jaxb.properties for package
    I've checked:
    - jaxb.properties is in the archive file
    I've tried to put the jar file in the classpath of the server in the
    starter script.
    I've tried to put reference classpath in the manifest of the ejb jar
    and of application
    ear.
    I've tried to put both reference in server classpath and ear/jar manifest.
    I still doesn't run.
    Any idea?
    Thanks a lot
    Franck

  • Location network services for 7921

    Dear Friends,
    I do have 7921[CP-7921-E-K9] ,which needs to connect to 1252 AP [1252LAP-E-K9] .controllers used is WiSM [5.0]
    Initially country code configured was AE and later was added US .
    When I try to connect to the AP , it displays on the phone , locating network services and after that configuration failed. The ssid i created is just open .
    Did I miss anything ? Please advise.
    Regards,
    SID

    Hi Gamccall,
    Thanks for the response .
    Apparently I have checked by connecting laptop with this particular SSID to be connected to the wireless ip phone.
    Also I have connected the same vlan to the ip phone and it works .
    The SSID is created is so simple . It is open and not broadcasted .
    Setting are made by typing SSID as it is , followed by Security Mode which is open , 802.11 which is confusing and I have selected Auto -RSSI to automate the channels and finally single access point which is disabled and power mode which is none.
    When I switch on the phone, I get locating network services and followed by connection failed .
    Regulatory domains selected is AE and US and channels selected are 1,6,11,13 .
    Is there anything I missed ? Please advise .
    Regards,
    SID

  • Unable to start subscription service for Adobe Photoshop CS5

    Hi there.
    I'm trying to install Adobe Photoshop CS5 on my laptop and every time, after installing the product and entering the serial number, the process fails and tells me 'We are unable to start your subscription for Adobe Photoshop CS5 Subscription Edition.'
    It then asks me to relaunch the product and do the installation process again. I have tried this numerous times and it keeps saying the same thing.
    Please help!

    Best contact Adobe Customer Support; start from http://helpx.adobe.com/contact.html
    [topic moved to Downloading, Installing, Setting Up forum]

  • HT204266 Unable to locate the app for AppStore

    I need help to locate the app for AppStore on my mini

    Check your restrictions
    Settings>General>Restrictions>Installing Apps?

  • Unable to install OEDQ "Unable to locate legacy service"

    Hi there
    I had a working version of OEDQ. There were problems with my laptop so the IT technician uninstalled it (probably not correctly as the program was still listed in my add/remove programs.
    So anyway i made sure this was uninstalled from there, but I also had to manually removed anything from the C:/Program files (that sent alarm bells)
    I downloaded OEDQ, run the setup.exe. It starts by saying its still there!! Then I run it as an upgrade and it gives me this. Help!

    Also I am trying to deinstall using cmd and tomcat isn't there:
    C:\Program Files\Oracle\Enterprise Data
    Quality\director\12.1.3.0.0.(727)>dnconfig
    C:\Program Files\Oracle\Enterprise Data
    Quality\director\12.1.3.0.0.(727)>dninstaller uninstall
    Using default properties file C:\Program
    Files\Oracle\Enterprise Data Quality\director\12.1.3.0.0.(727)\install.properties
    Unregistering EDQ server components
    Stopping legacy Store
    stoplegacydb
    Removing EDQ application server
    removetomcat
    Saving configuration directory
    saveconfig
    Stopping Configuration Store
    stopdb
    Removing the EDQ Store service
    removedb
    Tidying up legacy EDQ Store
    legacyuninstall
    Removing Alternative dnResults Store
    removealtdb
    Removing the EDQ start menu shortcuts
    removeshortcuts
    Removing the file associations.
    removefileassoc
    Removing the uninstaller from system
    removeuninstaller
    Removing the EDQ registry entry
    removeregistryentry
    Removing the EDQ Data Files
    deleteprogramdata
    Done
    C:\Program Files\Oracle\Enterprise Data
    Quality\director\12.1.3.0.0.(727)>dninst
    aller removelegacydb
    Using default properties file C:\Program
    Files\Oracle\Enterprise Data Quality\di
    rector\12.1.3.0.0.(727)\install.properties
    Removing the legacy EDQ Store service
    About to run command: [C:\Program
    Files\Oracle\Enterprise Data Quality\postgresq
    l\9.1\bin/pg_ctl.exe, --pgdata,
    C:\ProgramData\Oracle\Enterprise Data Quality\da
    ta\9.1\results, -N, Oracle EDQ Results
    Store, unregister] in directory C:\Progra
    m Files\Oracle\Enterprise Data
    Quality\postgresql\9.1\bin
    Unregistering instance Oracle EDQ Results
    Store failed
    About to run command: [C:\Program
    Files\Oracle\Enterprise Data Quality\postgresq
    l\9.1\bin/pg_ctl.exe, --pgdata,
    C:\ProgramData\Oracle\Enterprise Data Quality\da
    ta\9.1\director, -N, Oracle EDQ Config
    Store, unregister] in directory C:\Progra
    m Files\Oracle\Enterprise Data
    Quality\postgresql\9.1\bin
    Unregistering instance Oracle EDQ Config
    Store failed
    Command removelegacydb failed.
    Unregistering instance Oracle EDQ Config
    Store failed
    C:\Program Files\Oracle\Enterprise Data
    Quality\director\12.1.3.0.0.(727)>dninst
    aller removelegacytomcat
    Using default properties file C:\Program
    Files\Oracle\Enterprise Data Quality\di
    rector\12.1.3.0.0.(727)\install.properties
    Removing pre-upgrade EDQ application server
    Exception in thread "main"
    java.lang.NullPointerException
    at com.datanomic.director.install.cmds.RemoveLegacyTomcatCmd.exe(RemoveL
    egacyTomcatCmd.java:44)
    at com.datanomic.director.install.Install.exeCmd(Install.java:138)
    at com.datanomic.director.install.Install.run(Install.java:298)
    at com.datanomic.director.install.Install.main(Install.java:324)
    Error in Java launcher. Error occured while
    calling main method in Java class co
    m/datanomic/director/install/Install
    C:\Program Files\Oracle\Enterprise Data
    Quality\director\12.1.3.0.0.(727)>dninst
    aller removetomcat
    Using default properties file C:\Program
    Files\Oracle\Enterprise Data Quality\di
    rector\12.1.3.0.0.(727)\install.properties
    Removing EDQ application server
    About to run command: [C:\Program
    Files\Oracle\Enterprise Data Quality\tomcat\6.
    0\bin\x86\tomcat6.exe,
    //DS//OracleEDQTomcat] in directory C:\Program Files\Orac
    le\Enterprise Data Quality/tomcat/6.0
    Cannot run program "C:\Program
    Files\Oracle\Enterprise Data Quality\tomcat\6.0\b
    in\x86\tomcat6.exe" (in directory
    "C:\Program Files\Oracle\Enterprise Data Quali
    ty\tomcat\6.0"): CreateProcess
    error=267, The directory name is invalid
    Command removetomcat failed.
    Unable to unregister tomcat

  • Unable to convert sender service for IDoc to SOAP Scenario

    Hi,
    I tried to find the solution my way and by using the search function but without any success. I have the folowing scenario:
    SYS(my sap system) => IDoc => PI (Process Integration) => SOAP => XML
    When i send the IDoc to the PI System and open SXI_Moni the folowing error is shown:
    "Unable to convert the sender service receiver_service to an ALE logical system"
    I read about Adapter Specific Identifies so i go to ID->Service without partner->Business System->MyBusinessSystem(SYS) then in Menü on Services and checked Adapter Specific Identifies. They are like maintained in SLD.
    Next is a Cache refresh i tried a full one but no impact
    Then i tried a header mapping in receiver agreement. I mapped there the receiver party to the definied receiver party and the receiver_service to the service.
    I have no idea
    Thanks for help, be sure that helpful answers will be awarded
    regards
    Matthias
    P.S. What causes this error ? For my opinion ALE has already done all neccesary things (The Idoc is in PI System and the data is available in mesaage payload) so why didn't the pi map it and send it via Soap?

    Hi Matthias
    >>I dont know if its helpful but in SLD are only the system of our landscape so i have no entry for the external Party.
    Party information is generally not required to be maintained in SLD
    >>Adapter Specific Identifies
    What is the value you have given for sender Business system->adapter specific identifier. Is it the same as the partner profile name in sender SAPECC. if not try making them same.
    Regards
    Suraj

  • Unable to install Integration Services for SQL Server 2005

    I'm not able to select "Integration Services Project" in Business Intelligence Development Studio (it is not in the templates below):
    When installing, it says that it is already installed. Why can't I see it in the project templates?

    Microsoft Visual Studio 2005
    Version 8.0.50727.867  (vsvista.050727-8600)
    Microsoft .NET Framework
    Version 2.0.50727 SP2
    Installed Edition: Professional
    Microsoft Visual Basic 2005   77626-009-0000007-41773
    Microsoft Visual Basic 2005
    Microsoft Visual C# 2005   77626-009-0000007-41773
    Microsoft Visual C# 2005
    Microsoft Visual C++ 2005   77626-009-0000007-41773
    Microsoft Visual C++ 2005
    Microsoft Visual J# 2005   77626-009-0000007-41773
    Microsoft Visual J# 2005
    Microsoft Visual Studio 2005 Tools for Applications   77626-009-0000007-41773
    Microsoft Visual Studio 2005 Tools for Applications
    Microsoft Visual Web Developer 2005   77626-009-0000007-41773
    Microsoft Visual Web Developer 2005
    Microsoft Web Application Projects 2005   77626-009-0000007-41773
    Microsoft Web Application Projects 2005
    Version 8.0.50727.867
    AnkhSVN - Subversion Support for Visual Studio   2.5.12440.9
    AnkhSVN - Subversion Support for Visual Studio 2.5.12440.9 
     * Ankh.Package 2.5.12440.9
     * Subversion 1.8.8 via SharpSvn 1.8008.3178.19
    SharpSvn is linked to: Apr 1.5.0, Apr-util 1.5.3, Cyrus Sasl 2.1.25, eXpat 2.0.1, OpenSSL 1.0.1g 7 Apr 2014, serf 1.3.4, SQLite 3.7.17, Subversion 1.8.8-SharpSvn-1.8.8, ZLib 1.2.8
    SharpSvn is optionally linked to: Berkeley DB 4.4.20, SharpPlink 1.8008.3178.19
    Hotfix for Microsoft Visual Studio 2005 Professional Edition - ENU (KB2938803)   
    Microsoft Visual Studio 2005 Professional Edition - ENU Service Pack 1 (KB926601)   
    Security Update for Microsoft Visual Studio 2005 Professional Edition - ENU (KB2251481)   
    Security Update for Microsoft Visual Studio 2005 Professional Edition - ENU (KB2538218)   
    Security Update for Microsoft Visual Studio 2005 Professional Edition - ENU (KB2548826)   
    Security Update for Microsoft Visual Studio 2005 Professional Edition - ENU (KB971090)   
    Security Update for Microsoft Visual Studio 2005 Professional Edition - ENU (KB973673)   
    SQL Server Reporting Services   
    Microsoft SQL Server Reporting Services Designers 
    Version 9.00.2047.00
    Update for Microsoft Visual Studio 2005 Professional Edition - ENU (KB932232)   

  • I have a group and it works, but unable to locate the group for edits.

    The addresses that I originally set up in the group are saved in the group since by entering the group name in the address field all the addresses are entered into the mail. Problem is that I cannot find the group for editing purposes. I thought the way was to go to contacts on the left and find the group there....no such group listed.
    Thanks,
    Ken

    Since there is no such thing as Groups in Thunderbird I will assume you are looking for a Mailing List that you created in one of your Address Books.
    When you open the Address Book window do you have the Directory Pane showing?
    If not turn it on by going to the menu bar and selecting View-Layout-Directory Pane
    Any address book that has a Mailing List in it will either be showing the list as a sub-folder or have a small pointer beside the address book folder. If the sub-folder tree is not showing click the pointer to expand the view.
    Then again since you are using terms like Contacts and Groups are you even talking about Thunderbird email client?

  • Itunes unable to locate original file for music after update. How can I find it

    I am not able to play any of my music since the last update to itnes.It gives me a message that the original file canot be located but when I say locate it comes back with nothing. Any suggestions?

    This happens if the file is no longer where iTunes expects to find it. Possible causes are that you or some third party tool has moved, renamed or deleted the file, or that the drive it lives on has had a change of drive letter. It is also possible that iTunes has changed from expecting the files to be in the pre-iTunes 9 layout to post-iTunes 9 layout,or vice-versa, and so is looking in slightly the wrong place.
    Select a track with an exclamation mark, use Ctrl-I to get info, then cancel when asked to try to locate the track. Look on the summary tab for the location that iTunes thinks the file should be. Now take a look around your hard drive(s). Hopefully you can locate the track in question. If a section of your library has simply been moved, or a drive letter has changed, it should be possible to reverse the actions.
    Alternatively, as long as you can find a location holding the missing files, then you should be able to use my FindTracks script to reconnect them to iTunes .
    tt2

  • Unable to reach Customer service for billing question

    I have trie serveral times to call verizon customer service to ask about a billing question.  Either I'm disconnected or I receive a recording say the office is closed.  I tried Verizon's Live chat, explained my question and was told to call a 800 number  and the same thing happened again.  Why can't I reach a live person  regarding a billing question???????     What is going on with Verizon???? 

    I'm sorry you are having difficulty. An agent with access to your account will reach out to you directly by email, private message in the Forums and/or the billing telephone number on your Verizon account for more information or to help you resolve your issue.

  • Unable to Locate Bridge CS6 for Download.  All I See Is the CC Version, which  Never Works Well With My School Assignments.  Please Tell Me Where I Go to Find this Cuz the PullDown Arrow Is No Longer Available.  BTW - I Didn't See It Listed Under Previous

    All I See Is the CC Version, which  Never Works Well With My School Assignments.  Please Tell Me Where I Go to Find this Cuz the PullDown Arrow Is No Longer Available.  BTW - I Didn't See It Listed Under Previous Versions Either.
    thanks!

    Lyleb64687719 have you utilized the steps listed in CC desktop lists applications as "Up to Date" when not installed - http://helpx.adobe.com/creative-cloud/kb/aam-lists-removed-apps-date.html to verify the Creative Suite 6 version was not available?  What type of a Creative Cloud membership do you have?
    You can also download the Creative Suite 6 installation files from Download CS6 products.  Installing any of the applications or suites which include Bridge CS6 should allow Bridge CS6 to install.

Maybe you are looking for

  • Screen turns to black, red green ect.

    Ok so I have been having this problem with my G4 ibook. It will be fine and working ok. Then it will suddenly turn to a black screen, then red, then green, then gray, white and back to black. There are no lines on the screen just a solid color. When

  • DBIF_RSQL_SQL_ERROR: SQL error in the database when accessing a table

    Hi Gurus, Im getting DBIF_RSQL_SQL_ERROR: SQL error in the database when accessing a table error while I was importing support pack in the system. This is ERP 6.0 with EHP4 with MS SQL in back ground and I was applying the BASIS SP 04. It was in the

  • RFC metadata & model instance

    Hi, Could you explain why do we require RFC metadata & model instance in WD adaptive RFC model? What is purpose of these? Krishna.

  • EPCM.getSAPTop().LSAPI.AFPPlugin is null or not an object

    Hello Guys, I am doing customization of AJAX Framework Page in Portal 7.3. I have created a copy of default ajax framework modify it and and my custom page and desktop, and add a new entry in the master rule to use the custom ajax framework page but

  • Use of Resume not accepted as a apple document

    How do I change a apple document(resume) to an acceptable form such as pdf or txt to use on most internet applications