Dear Sir,
I am installing the Ser on Redhat 9.0 platform.
I download ser-0.8.12_src.tar.gz, and compile the souce code, and install it. The Ser working fine with out the MySQL enabled.
I download the MySQL packges from www.mysql.com
MySQL-client-4.0.18-0.i386.rpm MySQL-server-4.0.18-0.i386.rpm MySQL-shared-4.0.18-0.i386.rpm
and install them, and Mysql can start up.
After this, I download the ser-0.8.12_src.tar.gz
and try to install it, and it give me out the error messge error: Failed dependencies: ser = 0.8.12 is needed by ser-mysql-0.8.12-0
I don't know what this means.
BTW, when i enable the MySQL in ser.cfg, it give out the following error messages: 0(25007) ERROR: load_module: could not open module </usr/local/lib/ser/modules/mysql.so>: /usr/local/lib/ser/modules/mysql.so: cannot open shared object file: No such file or directory
I wonder how can I get the mysql.so module.
I am the fresh man in using Ser, please give me some instructions.
John
compile ser by calling make: # make
compile ser modules by calling: # make modules
compile mysql ser modules by calling: # make modules modules=modules/mysql
install ser: # make install
install mysql module: # cp modules/mysql/mysql.so /usr/local/lib/ser/modules/
regards, klaus
John LI wrote:
Dear Sir,
I am installing the Ser on Redhat 9.0 platform.
I download ser-0.8.12_src.tar.gz, and compile the souce code, and install it. The Ser working fine with out the MySQL enabled.
I download the MySQL packges from www.mysql.com http://www.mysql.com
MySQL-client-4.0.18-0.i386.rpm MySQL-server-4.0.18-0.i386.rpm MySQL-shared-4.0.18-0.i386.rpm
and install them, and Mysql can start up.
After this, I download the ser-0.8.12_src.tar.gz
and try to install it, and it give me out the error messge error: Failed dependencies: ser = 0.8.12 is needed by ser-mysql-0.8.12-0
I don't know what this means.
BTW, when i enable the MySQL in ser.cfg, it give out the following error messages: 0(25007) ERROR: load_module: could not open module </usr/local/lib/ser/modules/mysql.so>: /usr/local/lib/ser/modules/mysql.so: cannot open shared object file: No such file or directory I wonder how can I get the mysql.so module.
I am the fresh man in using Ser, please give me some instructions.
John
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
On Mar 25, 2004 at 12:07, Klaus Darilion klaus.mailinglists@pernau.at wrote:
compile ser by calling make: # make
compile ser modules by calling: # make modules
compile mysql ser modules by calling: # make modules modules=modules/mysql
or replace all of the above commands by: make all include_modules=mysql
install ser: # make install
install mysql module: # cp modules/mysql/mysql.so /usr/local/lib/ser/modules/
and these by:
make install include_modules=mysql
Andrei