Difference between revisions of "Python Sync AD with MySQL DB"
Jump to navigation
Jump to search
Michael.mast (talk | contribs) (Created page with "==Purpose== To dip my toes into Python.<br><br> My intern is syncing a local MySQL database with an external payroll API. Great, but now I need this information synced with A...") |
Michael.mast (talk | contribs) (→LDAP) |
||
Line 8: | Line 8: | ||
Running this on Amazon Linux 2 | Running this on Amazon Linux 2 | ||
<pre> | <pre> | ||
− | sudo pip3 install ldap3 | + | sudo pip3 install ldap3 ldap-filter |
</pre> | </pre> |
Revision as of 08:21, 30 January 2020
Purpose
To dip my toes into Python.
My intern is syncing a local MySQL database with an external payroll API. Great, but now I need this information synced with AD.
LDAP
[1] Running this on Amazon Linux 2
sudo pip3 install ldap3 ldap-filter
MySQL
sudo pip3 install mysql-connector-python