[midPoint] MySql connector

Rohit Patil rohitpatil32 at gmail.com
Wed May 10 12:22:51 CEST 2017


Dear Sir,
I am not talking about MySql driver connector. I am talking about the MySql
connector using which I can create a resource to sync MySql users in
midpoint. Like the oracle connector jar provided in wiki for download. So
that I can deploy it in icf-connector folder of midpoint home.

Thank you


On May 10, 2017 3:30 PM, <midpoint-request at lists.evolveum.com> wrote:

> Send midPoint mailing list submissions to
>         midpoint at lists.evolveum.com
>
> To subscribe or unsubscribe via the World Wide Web, visit
>         http://lists.evolveum.com/mailman/listinfo/midpoint
> or, via email, send a message with subject or body 'help' to
>         midpoint-request at lists.evolveum.com
>
> You can reach the person managing the list at
>         midpoint-owner at lists.evolveum.com
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of midPoint digest..."
>
>
> Today's Topics:
>
>    1. SELF-REGISTRATION / PASSWORD RESET ON MIDPOINT V. 3.5.1
>       (Carlos Ferreira)
>    2.  MySqlUserConnector (Prabhakara Rao Doddapaneni)
>    3.  - Error in DB table connector in account discovery
>       (Prabhakara Rao Doddapaneni)
>    4. Sync only AD accounts which are members of one AD group
>       (Brad Firestone)
>    5. Bulk import from midpoint to AD (Dilek Gider)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Tue, 9 May 2017 12:55:06 -0300
> From: Carlos Ferreira <carlos18619 at gmail.com>
> To: midPoint General Discussion <midPoint at lists.evolveum.com>
> Subject: [midPoint] SELF-REGISTRATION / PASSWORD RESET ON MIDPOINT V.
>         3.5.1
> Message-ID:
>         <CAJHEg65Eqs+M7=aO+zwNJUibjwhjvWxC=b9Pmes9qaanzuQd1g at mail.
> gmail.com>
> Content-Type: text/plain; charset="utf-8"
>
> Hi,
>
>
> Following instructions do configure self-registration presented in
>
>
> https://wiki.evolveum.com/display/midPoint/Self+Registration+Configuration
>
> or those used to reset password shown in
>
>     https://wiki.evolveum.com/display/midPoint/Reset+Password+
> Configuration
>
> Midpoint sends the confirmation link to the e-mail registered for the user.
>
>
> Nevertheless, when I click it, system returns the following message:
> "404 - Not Found
>
> Unexpected error occurred, if necessary please contact system
> administrator."
>
>
> *PS: IN MIDPOINT 3.5 EVERYTHING WORKS FINE.*
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <http://lists.evolveum.com/pipermail/midpoint/attachments/
> 20170509/9517b70f/attachment-0001.html>
>
> ------------------------------
>
> Message: 2
> Date: Tue, 9 May 2017 18:11:24 +0000 (UTC)
> From: Prabhakara Rao Doddapaneni <dp_rao at yahoo.com>
> To: "midpoint at lists.evolveum.com" <midpoint at lists.evolveum.com>
> Subject: [midPoint]  MySqlUserConnector
> Message-ID: <227723775.7169122.1494353484218 at mail.yahoo.com>
> Content-Type: text/plain; charset="utf-8"
>
> Rohit, if you are looking for mysql driver connector, you have to provide
> it yourself.  midPoint does not come with it.  Download the driver jar and
> deploy to tomcat's 'lib' folder.
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <http://lists.evolveum.com/pipermail/midpoint/attachments/
> 20170509/8d4c4ae5/attachment-0001.html>
>
> ------------------------------
>
> Message: 3
> Date: Tue, 9 May 2017 18:14:13 +0000 (UTC)
> From: Prabhakara Rao Doddapaneni <dp_rao at yahoo.com>
> To: "midpoint at lists.evolveum.com" <midpoint at lists.evolveum.com>
> Subject: [midPoint]  - Error in DB table connector in account
>         discovery
> Message-ID: <238940493.7180502.1494353653795 at mail.yahoo.com>
> Content-Type: text/plain; charset="utf-8"
>
> one possibility I see is that your target resource may be having duplicate
> rows with the key-column value; or the key column you provided is not
> unique on the target resource.  Did you verify?
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <http://lists.evolveum.com/pipermail/midpoint/attachments/
> 20170509/f88a4a05/attachment-0001.html>
>
> ------------------------------
>
> Message: 4
> Date: Tue, 09 May 2017 14:13:33 -0500
> From: Brad Firestone <bhotrock at gmail.com>
> To: midPoint General Discussion <midpoint at lists.evolveum.com>
> Subject: [midPoint] Sync only AD accounts which are members of one AD
>         group
> Message-ID: <591214DD.3020706 at gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"; Format="flowed"
>
> I changed the subject line since I THINK I've learned more about how to
> do this.  I don't need to sync the actual "groups", but want to sync
> only the accounts that are members of a certain group.  After lots of
> reading and searching, I realized that I probably need to do this using
> a condition script in the <synchronization> section.
>
> I have it working correctly if I'm looking for an single-valued
> attribute value using the following code:
>
> <condition>
> <script>
> <code>
>                  surname = basic.getAttributeValue(shadow, 'sn');
>                  return (surname == 'Testuser')
> </code>
> </script>
> </condition>
>
> The problem is trying to get this to work for all members of a
> Distribution Group.  Many of the things I've tried to do give an error of:
> com.evolveum.midpoint.util.exception.ExpressionEvaluationException:
> com.evolveum.midpoint.util.exception.SchemaException: Attempt to get
> single value from multi-valued attribute
> {http://midpoint.evolveum.com/xml/ns/public/resource/instance-3}memberOf
> (new) condition in object synchronization Account sync
>
> Does anyone have any ideas of how to sync only accounts that are members
> of a Distribution Group?
> Thanks!
>
> Brad Firestone wrote:
> > Hi All,
> >
> > I am setting up Active Directory as an authoritative source resource.
> > But I only want to sync in users who are members of a certain
> > Distribution Group:
> > CN=Primary Users,OU=Distribution Groups,OU=Groups,DC=example,DC=com
> >
> > I'm guessing that I can put this filter into the resource, probably in
> > the resultsHandlerConfiguration section, using the
> > enableFilteredResultsHandler.  I found this page in the Wiki, but it's
> > still a work To Do:
> > https://wiki.evolveum.com/display/midPoint/ICF+Configuration
> +Tips+and+Tricks
> >
> > Does anyone have any examples of how I might filter my results to just
> > include users in this Distribution Group?
> >
> > Thanks!
> > Brad
>
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <http://lists.evolveum.com/pipermail/midpoint/attachments/
> 20170509/f52a2177/attachment-0001.html>
>
> ------------------------------
>
> Message: 5
> Date: Wed, 10 May 2017 12:52:43 +0300
> From: Dilek Gider <dilek.gider at basistek.com>
> To: midPoint General Discussion <midpoint at lists.evolveum.com>
> Subject: [midPoint] Bulk import from midpoint to AD
> Message-ID:
>         <CAL797Gn7JyYdB_yQANQmH7QsomNjHzeq+1gKo_UH3ac97gcOxQ at mail.
> gmail.com>
> Content-Type: text/plain; charset="utf-8"
>
> Hi All,
>
> I have a resource with ADLDAPConnector. I want to add  all of midpoint
> users to AD.
> I have a resource xml, it works by manually adding user to AD account. But
> when I run recon job task or live synch task, it only evaluates AD users,
> doesn't evaluate midpoint users. Is there any other method to create
> midpoint users in any resource?
>
> Thank you very much.
>
> Dilek
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <http://lists.evolveum.com/pipermail/midpoint/attachments/
> 20170510/3ee5947b/attachment-0001.html>
>
> ------------------------------
>
> Subject: Digest Footer
>
> _______________________________________________
> midPoint mailing list
> midPoint at lists.evolveum.com
> http://lists.evolveum.com/mailman/listinfo/midpoint
>
>
> ------------------------------
>
> End of midPoint Digest, Vol 61, Issue 12
> ****************************************
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.evolveum.com/pipermail/midpoint/attachments/20170510/e43ba997/attachment.htm>


More information about the midPoint mailing list