Hello,
you need a tool called md5sum. On Linux/Debian it comes with coreutils package. It computes the md5 of a string and it used mainly to check the files if they were corrupted after a download. Maybe it exists under other name in solaris, although nobody reported so far.
For solaris 8 I found the following: http://www.sun.com/software/solaris/freeware/pkgs_download.xml#md5sum
Hope it helps.
Cheers, Daniel
On 08/14/06 18:46, peter.3.edwards@bt.com wrote:
Hi,
I'm trying to install OpenSER 1.1.0 (rel_1_1_0 checked out from CVS) on SPARC/Solaris 9.
I'm dutifully following a combination of the wiki instructions:
Install And Maintain OpenSER From CVS http://www.openser.org/dokuwiki/doku.php?id=install_and_maintain_openser _from_cvs
and section D) OpenSER with Persistent Data Storage from the Install page of the main site.
I've installed OpenSER with MySQL / Auth support correctly at each stage, as far as I can tell, and it is now running (can be seen with "ps -ef | grep openser").
My first attempt at running "openserctl moni" failed because of line 119 in /usr/local/lib64/openser/openserctl/openserctl.fifo:
attempt=$(($attempt + 1))
So I changed this to to the more Solaris-friendly:
attempt=`expr $attempt + 1`
which seems to work.
However, I'm unable to REGISTER the admin:openserrw user with my eyeBeam SIP user agent (#401 Unauthorised), and when I try to add a new user I get the following error:
# openserctl add testuser 1234 test@mydomain.org awk: syntax error near line 1 awk: bailing out near line 1 awk: syntax error near line 1 awk: bailing out near line 1 /usr/local/sbin/openserctl: md5sum: not found /usr/local/sbin/openserctl: md5sum: not found awk: syntax error near line 1 awk: bailing out near line 1 awk: syntax error near line 1 awk: bailing out near line 1 awk: syntax error near line 1 awk: bailing out near line 1 awk: syntax error near line 1 awk: bailing out near line 1 /usr/local/sbin/openserctl: md5sum: not found MySql password for user 'openser@localhost': ERROR 1062 (23000) at line 1: Duplicate entry '' for key 2 -e \E[37;31mERROR: introducing the new user 'testuser' to the database failed
I'm running out of ideas, now. Can anyone give me some pointers? Has anyone compiled from src with Solaris and got this working?
I think this looks like there maybe a MySQL interop issue in openserctl?
Any help appreciated,
Peter.