Este documento describe cómo sincronizar el repositorio de control de subversión (SVN) entre PCRFClient01 y PCRFClient02.
Todas las configuraciones de políticas en el generador de políticas (PB) se almacenan como un repositorio SVN. Por lo tanto, para tener alta disponibilidad (HA), necesita tener el mismo identificador único universal SVN (UUID) en las dos máquinas virtuales PCRFClient (VM). Sin embargo, Cisco Policy Suite (CPS) versión 7.X no tiene el mismo UUID en las VM PCRFClient. Es decir, las versiones de CPS más altas tienen el mismo UUID. Se ha ingresado un bug de mejora, Cisco bug ID CSCuu85319. Podría lograr HA si tiene el mismo número de revisión en ambas VM PCRFClient0X.
Dado que el UUID no es el mismo en ambas VM PCRFClient, ingrese estos comandos:
svn info http://pcrfclient01/repos/configuration
svn info http://pcrfclient02/repos/configuration
Es posible que observe estos registros de errores de la suite de red Quantum (QNS). Estos mensajes de error se pueden verificar con el script svn_uuid_mismatch.sh. Esta secuencia de comandos se proporciona al final de este artículo.
==qns-1.log==
2015-06-10 00:51:15,058 [pool-4-thread-1] WARN
c.b.r.impl.ReferenceDataManager - SVN directory failed in updating
2015-06-10 01:51:44,050 [pool-4-thread-1] WARN
c.b.r.impl.ReferenceDataManager - SVN directory failed in updating
2015-06-10 03:52:41,061 [pool-4-thread-1] WARN
c.b.r.impl.ReferenceDataManager - SVN directory failed in updating
==Service-qns-1.log==
svn: Repository UUID '70e98d90-b9c7-4c5b-a3db-681dd68c62a6'
doesn't match expected UUID 'ed2f2f76-f588-443e-9bb8-3fb05abd903b'
svn: Repository UUID '70e98d90-b9c7-4c5b-a3db-681dd68c62a6'
doesn't match expected UUID 'ed2f2f76-f588-443e-9bb8-3fb05abd903b'
svn: Repository UUID '70e98d90-b9c7-4c5b-a3db-681dd68c62a6'
doesn't match expected UUID 'ed2f2f76-f588-443e-9bb8-3fb05abd903b'
Como se muestra a continuación, puede observar que el UUID es diferente en todas las VM, pero las versiones deben permanecer iguales. Si la versión SVN en ambas VM PCRFClient es la misma, entonces la sincronización del repositorio SVN está ahí y posteriormente usted tiene alta disponibilidad.
===PCRFClient01===
[root@pcrfclient01 ~]# svn info http://pcrfclient01/repos/configuration
Path: configuration
URL: http://pcrfclient01/repos/configuration
Repository Root: http://pcrfclient01/repos
Repository UUID: ed2f2f76-f588-443e-9bb8-3fb05abd903b
Revision: 392 <<<< revision number
Node Kind: directory
Last Changed Author: broadhop
Last Changed Rev: 392
Last Changed Date: 2015-06-01 15:52:12 -0600 (Mon, 01 Jun 2015)
===PCRFClient02===
[root@pcrfclient01 ~]# svn info http://pcrfclient02/repos/configuration
Path: configuration
URL: http://pcrfclient02/repos/configuration
Repository Root: http://pcrfclient02/repos
Repository UUID: 70e98d90-b9c7-4c5b-a3db-681dd68c62a6
Revision: 392 <<<< revision number
Node Kind: directory
Last Changed Author: broadhop
Last Changed Rev: 392
Last Changed Date: 2015-06-01 15:52:12 -0600 (Mon, 01 Jun 2015)
La sección anterior explica cómo verificar la sincronización del repositorio SVN. Esta sección trata sobre cómo reparar la sincronización SVN. Suponga que PCRFClient01 es primario y que PCRFClient02 es secundario y que el repositorio PCRFClient02 SVN no está sincronizado.
Complete estos pasos para hacer que el repositorio SVN PCRFClient02 se sincronice con PCRFClient01:
crontab -e
Comment this cron job entry:
/usr/bin/svnsync sync http:// pcrfclient02/repos-proxy-sync
<Location /repos-proxy-sync>
DAV svn
SVNPath /var/www/svn/repos
Order deny,allow
Deny from all
Allow from pcrfclient01 <<< # customer host name of PCRFClient01 VM
</Location>
service httpd restart
/usr/bin/svnsync sync http://pcrfclient02/repos-proxy-sync
Si se informa de errores de bloqueo, ingrese este comando y vuelva a intentar el comando svnsync:
/usr/bin/svn propdel svn:sync-lock --revprop -r 0 http:// pcrfclient02/repos-proxy-sync
Si todavía se ven los errores, continúe con Reinicializar la sincronización SVN.
crontab -e
/usr/bin/svnsync sync http://pcrfclient02/repos-proxy-sync
Realice estos pasos solamente si encuentra un error en el paso 4 en la sección Arreglar la Sincronización del Repositorio SVN. Si no encuentra ningún error en la sección anterior, puede ignorar estos pasos.
listen svn_proxy lbvip02:80
mode http
balance roundrobin
option httpchk
option httpclose
option abortonclose
server pcrfclient01 pcrfclient01:80 check
#server pcrfclient02 pcrfclient02:80 check backup
/etc/init.d/heartbeat restart
listen svn_proxy lbvip02:80
mode http
balance roundrobin
option httpchk
option httpclose
option abortonclose
server pcrfclient01 pcrfclient01:80 check
#server pcrfclient02 pcrfclient02:80 check backup
/etc/init.d/heartbeat restart
tar -czf /var/tmp/repos.tar.gz /var/www/svn/repos
mkdir -p /var/www/svn/repos
rmdir /var/www/svn/repos
/usr/bin/svnadmin create /var/www/svn/repos
chown -R apache:apache /var/www/svn/repos
#!/bin/sh
#/var/www/svn/repos/hooks/pre-revprop-change
exit 0
chmod 700 /var/www/svn/repos/hooks/pre-revprop-change
chown apache:apache /var/www/svn/repos/hooks/pre-revprop-change
service httpd restart
/usr/bin/svnsync init http://pcrfclient02/repos-proxy-sync
http:// pcrfclient01/repos-proxy-sync
/usr/bin/svnsync sync http:// pcrfclient02/repos-proxy-sync
listen svn_proxy lbvip02:80
mode http
balance roundrobin
option httpchk
option httpclose
option abortonclose
server pcrfclient01 pcrfclient01:80 check
server pcrfclient02 pcrfclient02:80 check backup
/etc/init.d/heartbeat restart
listen svn_proxy lbvip02:80
mode http
balance roundrobin
option httpchk
option httpclose
option abortonclose
server pcrfclient01 pcrfclient01:80 check
server pcrfclient02 pcrfclient02:80 check backup
/etc/init.d/heartbeat restart
crontab -e/usr/bin/svnsync sync http://pcrfclient02/repos-proxy-sync
Por favor, ponga este script en su sistema CPS para verificar la sincronización SVN en las VM PCRFClient.
#!/bin/bash
a=$(svn info http://pcrfclient01/repos/configuration | grep -i Revision | grep -o '[0-9]*')
b=$(svn info http://pcrfclient02/repos/configuration | grep -i Revision | grep -o '[0-9]*')
if [ "$a" == "$b" ]; then
echo -e "SVN repository Synchronization:\e[0;32m PASS \e[0m"
echo -e "PCRFClient01 SVN repository revision number is : \e[1;33m $a \e[0m"
echo -e "PCRFClient02 SVN repository revision number is : \e[1;33m $b \e[0m"
else
echo -e "SVN repository Synchronization :\e[0:31m FAIL \e[0m"
echo -e "PCRFClient01 SVN repository revision number is : \e[1;33m $a \e[0m"
echo -e "PCRFClient02 SVN repository revision number is : \e[1;33m $b \e[0m"
fi
Coloque este script en su sistema CPS para monitorear los mensajes de error de UUID SVN de las VM QNS individuales.
#!/bin/bash
for HN in `hosts.sh |grep qns`;
do echo -e "\e[1;32m $HN\e[0m";
echo -e "\e[1;33m===qns-1.log===\e[0m"
ssh $HN grep -wh "SVN directory failed" 2>/dev/null /var/log/broadhop/qns-1.log | tail -10;
echo -e "\e[1;33m===service-qns-1.log===\e[0m"
ssh $HN grep -wh "match expected UUID" 2>/dev/null /var/log/broadhop/service-qns-1.log | tail -10;
done
Revisión | Fecha de publicación | Comentarios |
---|---|---|
1.0 |
31-Aug-2015 |
Versión inicial |