Scroll to navigation

ipa-replica-manage(1) FreeIPA Manual Pages ipa-replica-manage(1)

NAME

ipa-replica-manage - Manage an IPA replica

SYNOPSIS

ipa-replica-manage [OPTION]... [connect|disconnect|del|list|re-initialize|force-sync]

DESCRIPTION

Manages the replication agreements of an IPA server.

- Adds a new replication agreement between SERVER_A/localhost and SERVER_B
- Removes a replication agreement between SERVER_A/localhost and SERVER_B
- Removes all replication agreements and data about SERVER
- Lists all the servers or the list of agreements of SERVER
- Forces a full re-initialization of the IPA server retrieving data from the server specified with the --from option
- Immediately flush any data to be replicated from a server specified with the --from option
- List the replication IDs on this server.
- Run the CLEANALLRUV task to remove a replication ID.
- Abort a running CLEANALLRUV task.
- List all running CLEANALLRUV and abort CLEANALLRUV tasks.

OPTIONS

The IPA server to manage. The default is the machine on which the command is run Not honoured by the re-initialize command.
The Directory Manager password to use for authentication
Provide additional information
Ignore some types of errors, don't prompt when deleting a master
When deleting a master with the --force flag, remove leftover references to an already deleted master.
Bind DN to use with remote server (default is cn=Directory Manager) - Be careful to quote this value on the command line
Password for Bind DN to use with remote server (default is the DM_PASSWORD above)
Specifies to create/use a Windows Sync Agreement
Full path and filename of CA certificate to use with TLS/SSL to the remote server - this CA certificate will be installed in the directory server's certificate database
DN of Windows subtree containing the users you want to sync (default cn=Users,<domain suffix> - this is typically what Windows AD uses as the default value) - Be careful to quote this value on the command line
Password for the IPA system user used by the Windows PassSync plugin to synchronize passwords. Required when using --winsync. This does not mean you have to use the PassSync service.
The server to pull the data from, used by the re-initialize and force-sync commands.

EXAMPLES


# ipa-replica-manage list
srv1.example.com
srv2.example.com
srv3.example.com
srv4.example.com

# ipa-replica-manage list srv1.example.com
srv2.example.com
srv3.example.com

# ipa-replica-manage re-initialize --from srv2.example.com

This will re-initialize the data on the server where you execute the command, retrieving the data from the srv2.example.com replica


# ipa-replica-manage connect srv2.example.com srv4.example.com

# ipa-replica-manage disconnect srv1.example.com srv3.example.com

# ipa-replica-manage del srv4.example.com

# ipa-replica-manage list-ruv
srv1.example.com:389: 7
srv2.example.com:389: 4

# ipa-replica-manage del --force --cleanup master.example.com

WINSYNC

Creating a Windows AD Synchronization agreement is similar to creating an IPA replication agreement, there are just a couple of extra steps.

A special user entry is created for the PassSync service. The DN of this entry is uid=passsync,cn=sysaccounts,cn=etc,<basedn>. You are not required to use PassSync to use a Windows synchronization agreement but setting a password for the user is required.

The following examples use the AD administrator account as the synchronization user. This is not mandatory but the user must have read-access to the subtree.

1. Transfer the base64-encoded Windows AD CA Certificate to your IPA Server
2. Remove any existing kerberos credentials

# kdestroy
3) Add the winsync replication agreement

# ipa-replica-manage connect --winsync --passsync=<bindpwd_for_syncuser_that will_be_used_for_agreement> --cacert=/path/to/adscacert/WIN-CA.cer --binddn "cn=administrator,cn=users,dc=ad,dc=example,dc=com" --bindpw <ads_administrator_password> -v <adserver.fqdn>


# ipa-replica-manage connect --winsync --passsync=MySecret --cacert=/root/WIN-CA.cer --binddn "cn=administrator,cn=users,dc=ad,dc=example,dc=com" --bindpw MySecret -v windows.ad.example.com


# ipa-replica-manage disconnect windows.ad.example.com

PASSSYNC

PassSync is a Windows service that runs on AD Domain Controllers to intercept password changes. It sends these password changes to the IPA LDAP server over TLS. These password changes bypass normal IPA password policy settings and the password is not set to immediately expire. This is because by the time IPA receives the password change it has already been accepted by AD so it is too late to reject it.

EXIT STATUS

0 if the command was successful

1 if an error occurred

Mar 14 2008 FreeIPA