RNUG Lotus User Group (www.vlaad.lv)

    Error processing certificate request: Certificate configuration set in ICL has been corrupted. Only 1 CaConfiguration document should exist.

    Vladislav Tatarincev  17 October 2016 15:29:28
    Faced one issue during one Domino implementation, by some reason Certificate Authority was used and CA document got duplicated somehow.
    I used ScanEZ from YTRIA to get UNID of old(unneeded) CA document, made backup and was able to solve problem with this script placed in script.

    Since it was not described anywhere, hope google will index it, and will avoid you opening PMR :)

    vlad



    11.10.2016 12:46:33   Admin Process: Checking for all requests to perform
    11.10.2016 12:46:39   CA Process (O¬ME): Error processing certificate request: Certificate configuration set in ICL has been corrupted.  Only 1 CaConfiguration document should exist.
    11.10.2016 12:46:40   CA Process (O¬ME): Error processing certificate request: Certificate configuration set in ICL has been corrupted.  Only 1 CaConfiguration document should exist.




            Dim session As New NotesSession
            Dim db As NotesDatabase
            Dim doc As NotesDocument
            Set db = session.GetDatabase(session.CurrentDatabase.Server,"icl\icl_5753.nsf")
            Set doc = db.GetDocumentByUNID("59CEC1D74D3CC364C22580170046C197")
            If doc Is Nothing Then
                    Print "Unable to find document"
            Else
                    doc.Remove(True)
                   
                   
            End If
           

    Archives