It looks like you helped me get beyond that script problem. However the error seems to still exist. Now when I look in the logs I find the following:
Aug 28 11:59:36 imsip01 ser: 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
Aug 28 11:59:36 imsip01 ser: parse error (29,13-49): failed to load module
Sure enough, when I go to that directory mysql.so does not exist! I followed the instructions from Jiri below.
You need to rebuild with mysql support (make include_modules=mysql all,
make include_modules=mysql install)
I reran the above just to be sure. The mysql.so is still not found in the /usr/local/lib/ser/mocules/ directory.
Any idea why? I think this is the solution to my problems.
Thanks,
Chad
________________________________
From: Bogdan-Andrei IANCU [mailto:iancu@fokus.fraunhofer.de] Sent: Thursday, August 28, 2003 2:29 AM To: Chad Brown Cc: serusers@lists.iptel.org Subject: Re: [Serusers] ERROR: bad config file - Additional Informaton
The error lays in line 17 where the comment ends. The marker for ending a comment is not the same like the one for opening it /*, but */. SER config script supports two kinds of commenting: 1. per line comment - starts with # and ends automatically at the end of line 2. chunk comment - place your comment between /* and */ (like in C).
Bogdan
Chad Brown wrote:
See attached...
Thanks,
Chad
________________________________
From: Bogdan-Andrei IANCU [mailto:iancu@fokus.fraunhofer.de] Sent: Wednesday, August 27, 2003 3:23 AM To: Chad Brown Cc: serusers@lists.iptel.org Subject: Re: [Serusers] ERROR: bad config file - Additional Informaton
please send us your config file - seams you have a syntax error in it
Bogdan
Chad Brown wrote:
Additional log information that sync with previous logs sent:
Aug 26 23:26:03 imsip01 ser: ERROR: cfg. parser: unexpected EOF: 2 comments open
Aug 26 23:26:03 imsip01 ser: parse error (126,1-1): parse error
Thanks,
Chad
________________________________
_______________________________________________ Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
On Aug 28, 2003 at 12:21, Chad Brown chad.brown@identitymine.com wrote:
It looks like you helped me get beyond that script problem. However the error seems to still exist. Now when I look in the logs I find the following:
[...]
Sure enough, when I go to that directory mysql.so does not exist! I followed the instructions from Jiri below.
You need to rebuild with mysql support (make include_modules=mysql all,
make include_modules=mysql install)
You probably get a compilation error when building the mysql module (missing libmysqlclient?).
Try: make modules modules=modules/mysql This should build only the mysql modules. If everything is ok you should have it in modules/mysql/mysql.so. If not send the compilation output (but again most probably you don't have libmysqlclient or mysql-dev installed).
Andrei