Ty Manthey | 1 Jun 2006 01:46

RE: /etc/init.d doesn't work

I've tried it, but it doesn't seem to work. I get this error message:
Starting openser: openser/etc/init.d/openser: line 63: start-stop-daemon:
command not found
My scripting sucks, because I can't see what's wrong with it...

Ty Manthey
-----Original Message-----
From: Daniel-Constantin Mierla [mailto:daniel@...] 
Sent: Friday, May 19, 2006 9:37
To: Ty Manthey
Cc: users@...
Subject: Re: [Users] /etc/init.d doesn't work

Hello,

On 05/19/06 01:32, Ty Manthey wrote:
> I just did a removal of 0.9.5 and installed 1.0.1 for RH from RPM. My
> problem is that the /etc/init.d doesn't work.
> I get errors for lines 63, 69, 105 : -start-stop-daemon command not found.
> This is a debian command? Should this also work for RH?
> Docs also say sample /etc/init.d config file should be at
> /usr/local/src/openser-1.0.1/sip-server/etc/openser.init ,but
/usr/local/src
> is empty. whereis openser only returns a config file and a folder with
> modules. 
> I searched the internet but can't find a posting of a working script, just
> references to the script.
>   
that is an issue in the rpm package. Somehow I used the wrong init.d 
script when building it. Please use the following script to replace the 
(Continue reading)

Sam Lee | 1 Jun 2006 06:03
Picon

Access Denied error

Can anyone tell me why i have this problem when typing in the following command ?
 
root <at> ccm9:/home/test# openserctl avp list
Dumping AVPs
 
ERROR 1045 (28000): Access denied for user 'openserro' <at> 'localhost' (using password: YES)
root <at> ccm9:/home/test#
 
Its obviously a userid / password error. But how do i specify what password to use for this user openserro ?
I've changed the default password.
 
Can someone assist ?
 
Regards
Sam
<div>
<div><span class="883510004-01062006">Can anyone tell me 
why i have this problem when typing in the following command 
?</span></div>
<div>
<span class="883510004-01062006"></span>&nbsp;</div>
<div>
<a href="mailto:root <at> ccm9:/home/test">root <at> ccm9:/home/test</a><span class="883510004-01062006"></span>#<span class="883510004-01062006"> ope</span>nserctl avp list<br>Dumping 
AVPs</div>
<div>&nbsp;</div>
<div>ERROR 1045 (28000): Access denied for user 
<a href="mailto:'openserro' <at> 'localhost'">'openserro' <at> 'localhost'</a> (using 
password: YES)<br><a href="mailto:root <at> ccm9:/home/test">root <at> ccm9:/home/test</a>#<span class="883510004-01062006"></span>
</div>
<div>
<span class="883510004-01062006"></span>&nbsp;</div>
<div><span class="883510004-01062006">Its obviously a 
userid / password error. But how do i specify what password to use for this user 
openserro ?</span></div>
<div><span class="883510004-01062006">I've changed the 
default password.</span></div>
<div>
<span class="883510004-01062006"></span>&nbsp;</div>
<div><span class="883510004-01062006">Can someone assist 
?</span></div>
<div>
<span class="883510004-01062006"></span>&nbsp;</div>
<div><span class="883510004-01062006">Regards</span></div>
<div><span class="883510004-01062006">Sam</span></div>
</div>
Mahesh Paolini-Subramanya | 1 Jun 2006 07:33

Mediaproxy and psyco

Anyone out there used/using psyco (JIT like entity for Python) with mediaproxy?
Opinions?

cheers

--
*******************************************
Mahesh Paolini-Subramanya      (703) 386-1500 x9102
CTO                                         mahesh-IDpmHXQyurnQT0dZR+AlfA@public.gmane.org
Aptela, Inc.                               http://www.aptela.com
"Aptela: How Business Answers The Call"
*******************************************
<div><div><div>Anyone out there used/using psyco (JIT like entity for Python) with mediaproxy?<br>Opinions?<br><br>cheers<br><br>-- <br>*******************************************<br>Mahesh&nbsp;Paolini-Subramanya&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(703)&nbsp;386-1500&nbsp;x9102<br>CTO&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mahesh@...<br>Aptela,&nbsp;Inc.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;http://www.aptela.com<br>"Aptela:&nbsp;How&nbsp;Business&nbsp;Answers&nbsp;The&nbsp;Call"<br>*******************************************<br>
</div></div></div>
Franz Edler | 1 Jun 2006 08:10

AVPops: inconsistent usage of DB scheme

Hi,
again I need some help from AVPops-experts.

I have created a table for P-Associated-URI - parameter (addressed via
uuid).
	CREATE TABLE associated_uris (
	  auth_user varchar(64) NOT NULL default '',
	  id varchar(32) NOT NULL default '',
	  uri varchar(128) NOT NULL default '',
	  type integer NOT NULL default '0',
	  modified timestamp(14) NOT NULL,
	  PRIMARY KEY (auth_user, id)
	) TYPE=MyISAM;

I also have created the following db-scheme:
	
modparam("avpops","db_scheme","P-assoc:uuid_col=auth_user;value_col=id;value
_type=string;table=associated_uris")

When I access the table with 
	avp_db_load("$auth-user","i:/$P-assoc"); 

I get the error:
	0(0) ERROR:avpops:parse_avp_db: inconsistent usage of DB scheme
without complet specification of AVP name
 	0(0) ERROR:avpops:fixup_db_avp: parse failed

Any help appreciated.
Franz

Franz | 1 Jun 2006 10:11

AVPops: inconsistent usage of DB scheme

Hi,

regarding my previous E-mail I suppose that it might be an indexes problem in
the table structure.

I have defined both columns "auth_user" and "id" as primary keys because I want
to associate up to 4 AVPs to an "auth_user" with different "id"s. But when I
insert a second (different) "id" to the same "auth-user" into the table I get a
mysql-error #1062 - Duplicate entry for key 1.

Therefore I will now clarify the right way of defining primary keys :-) .

regards
Franz

Bogdan-Andrei Iancu | 1 Jun 2006 10:15
Picon
Favicon

Re: AVPops: inconsistent usage of DB scheme

Hi Franz,

the problem is you do not have a complete avp specification. You have 
just "i:" instead of "i:id". When you use a schema, there is no column 
with the avp name/id (as it is in the user_preferences table), so you 
have to define from scrip the avp name/id to load the info into.

Doing:
    avp_db_load("$auth-user","i:13/$P-assoc");

will fix the problem. The info will be available in i:13 AVP.

regards,
bogdan

Franz Edler wrote:

>Hi,
>again I need some help from AVPops-experts.
>
>I have created a table for P-Associated-URI - parameter (addressed via
>uuid).
>	CREATE TABLE associated_uris (
>	  auth_user varchar(64) NOT NULL default '',
>	  id varchar(32) NOT NULL default '',
>	  uri varchar(128) NOT NULL default '',
>	  type integer NOT NULL default '0',
>	  modified timestamp(14) NOT NULL,
>	  PRIMARY KEY (auth_user, id)
>	) TYPE=MyISAM;
>
>I also have created the following db-scheme:
>	
>modparam("avpops","db_scheme","P-assoc:uuid_col=auth_user;value_col=id;value
>_type=string;table=associated_uris")
>
>When I access the table with 
>	avp_db_load("$auth-user","i:/$P-assoc"); 
>
>I get the error:
>	0(0) ERROR:avpops:parse_avp_db: inconsistent usage of DB scheme
>without complet specification of AVP name
> 	0(0) ERROR:avpops:fixup_db_avp: parse failed
>
>Any help appreciated.
>Franz
>
>
>_______________________________________________
>Users mailing list
>Users@...
>http://openser.org/cgi-bin/mailman/listinfo/users
>
>  
>

Bogdan-Andrei Iancu | 1 Jun 2006 10:20
Picon
Favicon

Re: Access Denied error

Hi Sam,

default are openserro/openserro for DB access. If you configured (at 
install time) different user or password, you may use the environment 
variables RO_USER/RO_PW to set different values.

regards,
bogdan

Sam Lee wrote:

> Can anyone tell me why i have this problem when typing in the 
> following command ?
>  
> root <at> ccm9:/home/test <mailto:root <at> ccm9:/home/test># openserctl avp list
> Dumping AVPs
>  
> ERROR 1045 (28000): Access denied for user 'openserro' <at> 'localhost' 
> <mailto:%27openserro%27 <at> %27localhost%27> (using password: YES)
> root <at> ccm9:/home/test <mailto:root <at> ccm9:/home/test>#
>  
> Its obviously a userid / password error. But how do i specify what 
> password to use for this user openserro ?
> I've changed the default password.
>  
> Can someone assist ?
>  
> Regards
> Sam
>
>------------------------------------------------------------------------
>
>_______________________________________________
>Users mailing list
>Users@...
>http://openser.org/cgi-bin/mailman/listinfo/users
>  
>

Sam Lee | 1 Jun 2006 10:20
Picon

RE: Access Denied error

Anyone to help in this case ? I've changed the readonly user for openser and i'm not sure how to point openser to use the different password instead of the default one.
 
Please help !

From: users-bounces-WLQjAxnOB31AfugRpC6u6w@public.gmane.org [mailto:users-bounces-WLQjAxnOB31AfugRpC6u6w@public.gmane.org] On Behalf Of Sam Lee
Sent: Thursday, June 01, 2006 12:04 PM
To: users-WLQjAxnOB31AfugRpC6u6w@public.gmane.org
Subject: [Users] Access Denied error

Can anyone tell me why i have this problem when typing in the following command ?
 
root <at> ccm9:/home/test# openserctl avp list
Dumping AVPs
 
ERROR 1045 (28000): Access denied for user 'openserro' <at> 'localhost' (using password: YES)
root <at> ccm9:/home/test#
 
Its obviously a userid / password error. But how do i specify what password to use for this user openserro ?
I've changed the default password.
 
Can someone assist ?
 
Regards
Sam
<div>
<div dir="ltr" align="left"><span class="066121908-01062006">Anyone to help in this case ? I've changed the readonly 
user for openser and i'm not sure how to point openser to use the different 
password instead of the default one.</span></div>
<div dir="ltr" align="left">
<span class="066121908-01062006"></span>&nbsp;</div>
<div dir="ltr" align="left"><span class="066121908-01062006">Please help !</span></div>
<br><div class="OutlookMessageHeader" lang="en-us" dir="ltr" align="left">
From: users-bounces@... 
[mailto:users-bounces@...] On Behalf Of Sam Lee<br>Sent: 
Thursday, June 01, 2006 12:04 PM<br>To: 
users@...<br>Subject: [Users] Access Denied 
error<br><br>
</div>
<div></div>
<div><span class="883510004-01062006">Can anyone tell me 
why i have this problem when typing in the following command 
?</span></div>
<div>
<span class="883510004-01062006"></span>&nbsp;</div>
<div>
<a href="mailto:root <at> ccm9:/home/test">root <at> ccm9:/home/test</a><span class="883510004-01062006"></span>#<span class="883510004-01062006"> ope</span>nserctl avp list<br>Dumping 
AVPs</div>
<div>&nbsp;</div>
<div>ERROR 1045 (28000): Access denied for user 
<a href="mailto:'openserro' <at> 'localhost'">'openserro' <at> 'localhost'</a> (using 
password: YES)<br><a href="mailto:root <at> ccm9:/home/test">root <at> ccm9:/home/test</a>#<span class="883510004-01062006"></span>
</div>
<div>
<span class="883510004-01062006"></span>&nbsp;</div>
<div><span class="883510004-01062006">Its obviously a 
userid / password error. But how do i specify what password to use for this user 
openserro ?</span></div>
<div><span class="883510004-01062006">I've changed the 
default password.</span></div>
<div>
<span class="883510004-01062006"></span>&nbsp;</div>
<div><span class="883510004-01062006">Can someone assist 
?</span></div>
<div>
<span class="883510004-01062006"></span>&nbsp;</div>
<div><span class="883510004-01062006">Regards</span></div>
<div><span class="883510004-01062006">Sam</span></div>
</div>
Sam Lee | 1 Jun 2006 10:22
Picon

RE: Access Denied error

Thank you so much ! Just one last question. How do I fixed the
environment variables by default ? Why can't I just declare it in
openser.cfg instead of environment variable ?

Thanks again!

Regards,
Sam

-----Original Message-----
From: Bogdan-Andrei Iancu [mailto:bogdan@...] 
Sent: Thursday, June 01, 2006 4:20 PM
To: Sam Lee
Cc: users@...
Subject: Re: [Users] Access Denied error

Hi Sam,

default are openserro/openserro for DB access. If you configured (at
install time) different user or password, you may use the environment
variables RO_USER/RO_PW to set different values.

regards,
bogdan

Sam Lee wrote:

> Can anyone tell me why i have this problem when typing in the 
> following command ?
>  
> root <at> ccm9:/home/test <mailto:root <at> ccm9:/home/test># openserctl avp 
> list Dumping AVPs
>  
> ERROR 1045 (28000): Access denied for user 'openserro' <at> 'localhost' 
> <mailto:%27openserro%27 <at> %27localhost%27> (using password: YES) 
> root <at> ccm9:/home/test <mailto:root <at> ccm9:/home/test>#
>  
> Its obviously a userid / password error. But how do i specify what 
> password to use for this user openserro ?
> I've changed the default password.
>  
> Can someone assist ?
>  
> Regards
> Sam
>
>-----------------------------------------------------------------------
>-
>
>_______________________________________________
>Users mailing list
>Users@...
>http://openser.org/cgi-bin/mailman/listinfo/users
>  
>

Bogdan-Andrei Iancu | 1 Jun 2006 10:23
Picon
Favicon

Re: sending mail in SER

hmmm... by mail you mean SIP messages - like messages in Yahoo, ICQ, MSN ?

regards,
bogdan

rekik refka wrote:

> Hello,
> I'm asking how to configure a server mail with SER.
> I would test sending mail over SER between two MSN clients but this 
> doesn't wok!
> Thanks in advance!
> Cheers,
> Rekik Refka
>
>------------------------------------------------------------------------
>
>_______________________________________________
>Users mailing list
>Users@...
>http://openser.org/cgi-bin/mailman/listinfo/users
>  
>


Gmane