Julio Cesar Sánchez González <[EMAIL PROTECTED]> writes: > Hi for all, > > I have the following problem with slony1 and ubuntu feisty fawn: > > <stdin>:21: PGRES_FATAL_ERROR load '$libdir/slony1_funcs'; - ERROR: no > se pudo acceder al archivo �$libdir/slony1_funcs�: No existe el fichero > � directorio > <stdin>:21: Error: the extension for the Slony-I C functions cannot be > loaded in database 'dbname=sicodelico host=192.168.1.5 user=postgres' > <stdin>:21: ERROR: no admin conninfo for node 134598936 > > > this error what can be? > > My postgresql version is in the slave server 8.2.3 and the master server > 8.2.4. > > I install the slony from apt-get install in my ubuntu. > > The next list its the apt-cache search slony output: > > postgresql-8.1-slony1 - replication system for PostgreSQL > slony1-bin - replication system for PostgreSQL > slony1-doc - Slony-I documentation > > What is bad?
Well, it's pretty likely that the Slony-I installation in the Ubuntu "slony1-bin" package was built to add onto the postgresql-8.1-slony1 package. That is, the various files that slony1-bin puts into the PostgreSQL installation are probably being installed in the share and lib directories for postgresql-8.1-slony1. You can verify that by running: # dpkg -L slony1-bin You need to have various Slony-I components, including C functions (in an .so file), installed in the PostgreSQL 8.2.3 and 8.2.4 instances. If you built those from sources, you'll need to correspondingly build Slony-I from sources. -- (format nil "[EMAIL PROTECTED]" "cbbrowne" "ca.afilias.info") <http://dba2.int.libertyrms.com/> Christopher Browne (416) 673-4124 (land) _______________________________________________ Slony1-general mailing list [email protected] http://gborg.postgresql.org/mailman/listinfo/slony1-general
