Hello:
I'm just getting started with my implementation of SER on FreeBSD 4.7-RELEASE. I've read the documentation, installed Apache and mySQL and would like to add users for my domain.
I've tried adding an administrative user using serctl however this script fails for reason I cannot explain. Here is what I did:
serctl add user1 password1 email1@mydomain.com read: Illegal option -s
read: Illegal option -s
Enter password: < I entered the default admin account password>
ERROR 1045: Access denied for user: 'ser@localhost' (Using password: YES) introducing a new user to the database failed
Thanks,Steve
That's a porting problem in serctl utility (it uses a specific non-portable version of echo). Please try the following version of the serctl tool instead and let me know if the problem persists.
Thanks,
-Jiri
http://cvs.berlios.de/cgi-bin/viewcvs.cgi/*checkout*/ser/sip_router/scripts/...
On Wed, 2 Apr 2003, Steve Blair wrote:
Hello:
I'm just getting started with my implementation of SER on FreeBSD 4.7-RELEASE. I've read the documentation, installed Apache and mySQL and would like to add users for my domain.
I've tried adding an administrative user using serctl however this script fails for reason I cannot explain. Here is what I did:
serctl add user1 password1 email1@mydomain.com read: Illegal option -s
read: Illegal option -s
Enter password: < I entered the default admin account password>
ERROR 1045: Access denied for user: 'ser@localhost' (Using password: YES) introducing a new user to the database failed
Thanks,Steve
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
On Apr 02, 2003 at 08:26, Steve Blair blairs@isc.upenn.edu wrote:
Hello:
I'm just getting started with my implementation of SER on FreeBSD 4.7-RELEASE. I've read the documentation, installed Apache and mySQL and would like to add users for my domain.
I've tried adding an administrative user using serctl however this script fails for reason I cannot explain. Here is what I did:
serctl add user1 password1 email1@mydomain.com read: Illegal option -s
read: Illegal option -s
Try changing the first line of the script form #!/bin/sh to #!/bin/bash (the read in sh does not support the -s option). BTW: this is fixed on CVS for the new version (but don't try the CVS code until next week, we're commiting a lot of changes right now).
Andrei