Hi there
I have installed SER 9.4 with MYSQL 4.0.25. I am having trouble with mysql.so. As soon as I activate it in the ser.cfg ser will not start. I have noted that it is not instaledl in the modules directory. I have also run the following to try and include it in making them:
make modules include_modules="mysql"
make install include_modules="mysql"
As per the documentation I need to get ser-mysql but the rpm versions do not find the ser module.
What can I do to get mysql.so on the server?
Please help,
Colin Jordan DISCLAIMER: The information in this message is confidential and is legally privileged. It is intended solely for the addressee. Access to this message by anyone else is unauthorized.If receiving in error please accept our apologies and notify the sender immediately. You must also delete the original message from your machine. If you are not the intended recipient, any use, disclosure, copying, distribution or action taken in reliance of it, is prohibited and maybe unlawful.
I've never actually had any luck with the include_modules="blah" syntax in the make. Just doesn't work for me and seems to ignore my includes. Follow the instructions on how to make an individual module, but be sure to do a make clean in the mysql module dir first.
make modules=modules/mysql modules
Then manually copy the resulting mysql.so into /usr/local/lib/ser/modules
N.
On Fri, 18 Nov 2005 14:33:39 +0200, Colin Jordan wrote
Hi there I have installed SER 9.4 with MYSQL 4.0.25. I am havingtrouble with mysql.so. As soon as I activate it in the ser.cfg ser will notstart. I have noted that it is not instaledl in the modules directory. I havealso run the following to try and include it in making them: make modulesinclude_modules="mysql" make installinclude_modules="mysql" As per the documentation I need to get ser-mysql but the rpmversions do not find the ser module. What can I do to get mysql.so on the server? Please help, Colin JordanDISCLAIMER: The information in this message is confidential and is legally privileged. It is intended solely for the addressee. Access to this message by anyone else is unauthorized.If receiving in error please accept our apologies and notify the sender immediately. You must also delete the original message from your machine. If you are not the intended recipient, any use, disclosure, copying, distribution or action taken in reliance of it, is prohibited and maybe unlawful.
On 18-11-2005 07:48, sip wrote:
I've never actually had any luck with the include_modules="blah" syntax in the make. Just doesn't work for me and seems to ignore my includes. Follow the instructions on how to make an individual module, but be sure to do a make clean in the mysql module dir first.
The problem here is that you have to use include_module parameter with all make commands, even make clean include_modules=...
Otherwise the module object files will not be removed and the make system will not rebuild the module next time.
It is better, in my opinion, to edit Makefile and remove modules that you need from exclude_modules directive.
Jan.
make modules=modules/mysql modules
Then manually copy the resulting mysql.so into /usr/local/lib/ser/modules
N.
On Fri, 18 Nov 2005 14:33:39 +0200, Colin Jordan wrote
Hi there I have installed SER 9.4 with MYSQL 4.0.25. I am havingtrouble with mysql.so. As soon as I activate it in the ser.cfg ser will notstart. I have noted that it is not instaledl in the modules directory. I havealso run the following to try and include it in making them: make modulesinclude_modules="mysql" make installinclude_modules="mysql" As per the documentation I need to get ser-mysql but the rpmversions do not find the ser module. What can I do to get mysql.so on the server? Please help, Colin JordanDISCLAIMER: The information in this message is confidential and is legally privileged. It is intended solely for the addressee. Access to this message by anyone else is unauthorized.If receiving in error please accept our apologies and notify the sender immediately. You must also delete the original message from your machine. If you are not the intended recipient, any use, disclosure, copying, distribution or action taken in reliance of it, is prohibited and maybe unlawful.
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
Hi there
Thanks for your response. Will you please give me to full commands to do this?
I have tried the following with no luck: -------------------------------------------------- make clean include_modules="mysql" make modules include_modules="mysql" make install include_modules="mysql" --------------------------------------------------
Kind regards,
Colin
-----Original Message----- From: Jan Janak [mailto:jan@iptel.org] Sent: Friday, November 18, 2005 2:59 PM To: sip Cc: Colin Jordan; serusers@lists.iptel.org Subject: Re: [Serusers] mysql.so not found
On 18-11-2005 07:48, sip wrote:
I've never actually had any luck with the include_modules="blah" syntax in
the make. Just doesn't work for me and seems to ignore my includes. Follow the instructions on how to make an individual module, but be sure to do a make clean in the mysql module dir first.
The problem here is that you have to use include_module parameter with all make commands, even make clean include_modules=...
Otherwise the module object files will not be removed and the make system will not rebuild the module next time.
It is better, in my opinion, to edit Makefile and remove modules that you need from exclude_modules directive.
Jan.
make modules=modules/mysql modules
Then manually copy the resulting mysql.so into /usr/local/lib/ser/modules
N.
On Fri, 18 Nov 2005 14:33:39 +0200, Colin Jordan wrote
Hi there I have installed SER 9.4 with MYSQL 4.0.25. I am havingtrouble with
mysql.so. As soon as I activate it in the ser.cfg ser will notstart. I have noted that it is not instaledl in the modules directory. I havealso run the following to try and include it in making them:
make modulesinclude_modules="mysql" make installinclude_modules="mysql" As per the documentation I need to get ser-mysql but the rpmversions do
not find the ser module.
What can I do to get mysql.so on the server? Please help, Colin JordanDISCLAIMER: The information in this message is confidential
and is legally
privileged. It is intended solely for the addressee. Access to this
message by
anyone else is unauthorized.If receiving in error please accept our
apologies
and notify the sender immediately. You must also delete the original message from your machine. If you are not the intended recipient, any
use,
disclosure, copying, distribution or action taken in reliance of it, is
prohibited
and maybe unlawful.
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
DISCLAIMER: The information in this message is confidential and is legally privileged. It is intended solely for the addressee. Access to this message by anyone else is unauthorized.If receiving in error please accept our apologies and notify the sender immediately. You must also delete the original message from your machine. If you are not the intended recipient, any use, disclosure, copying, distribution or action taken in reliance of it, is prohibited and maybe unlawful.
You could also try the Getting Started SER source package found at http://onsip.org/. The package includes make_and_install, a script that simplifies compilation and installation. g-) ----- Original Message ----- From: "Colin Jordan" cjordan@econetwireless.com To: "'Jan Janak'" jan@iptel.org; "'sip'" sip@arcdiv.com Cc: serusers@lists.iptel.org Sent: Friday, November 18, 2005 2:10 PM Subject: RE: [Serusers] mysql.so not found
Hi there
Thanks for your response. Will you please give me to full commands to do this?
I have tried the following with no luck:
make clean include_modules="mysql" make modules include_modules="mysql" make install include_modules="mysql"
Kind regards,
Colin
-----Original Message----- From: Jan Janak [mailto:jan@iptel.org] Sent: Friday, November 18, 2005 2:59 PM To: sip Cc: Colin Jordan; serusers@lists.iptel.org Subject: Re: [Serusers] mysql.so not found
On 18-11-2005 07:48, sip wrote:
I've never actually had any luck with the include_modules="blah" syntax in
the make. Just doesn't work for me and seems to ignore my includes. Follow the instructions on how to make an individual module, but be sure to do a make clean in the mysql module dir first.
The problem here is that you have to use include_module parameter with all make commands, even make clean include_modules=...
Otherwise the module object files will not be removed and the make system will not rebuild the module next time.
It is better, in my opinion, to edit Makefile and remove modules that you need from exclude_modules directive.
Jan.
make modules=modules/mysql modules
Then manually copy the resulting mysql.so into /usr/local/lib/ser/modules
N.
On Fri, 18 Nov 2005 14:33:39 +0200, Colin Jordan wrote
Hi there
I have installed SER 9.4 with MYSQL 4.0.25. I am havingtrouble with
mysql.so. As soon as I activate it in the ser.cfg ser will notstart. I have noted that it is not instaledl in the modules directory. I havealso run the following to try and include it in making them:
make modulesinclude_modules="mysql" make installinclude_modules="mysql"
As per the documentation I need to get ser-mysql but the rpmversions do
not find the ser module.
What can I do to get mysql.so on the server?
Please help,
Colin JordanDISCLAIMER: The information in this message is confidential
and is legally
privileged. It is intended solely for the addressee. Access to this
message by
anyone else is unauthorized.If receiving in error please accept our
apologies
and notify the sender immediately. You must also delete the original message from your machine. If you are not the intended recipient, any
use,
disclosure, copying, distribution or action taken in reliance of it, is
prohibited
and maybe unlawful.
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
DISCLAIMER: The information in this message is confidential and is legally privileged. It is intended solely for the addressee. Access to this message by anyone else is unauthorized.If receiving in error please accept our apologies and notify the sender immediately. You must also delete the original message from your machine. If you are not the intended recipient, any use, disclosure, copying, distribution or action taken in reliance of it, is prohibited and maybe unlawful.
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers