How can we change the database, database user name and database password that the openserctl utility tries to connect with? You can set these in openser.cfg with modparam, but if you can't also set them for openserctl, what's the point?
Thanks. Douglas Garstang
Local settings for openserctl can be specified by the following file:
/usr/local/etc/openser/.openserrcmysql
Example contents of the file:
DIR=/usr/local/sbin PW=openser RO_PW=openserro RW_PW=openserrw ACL_GROUPS="my_custom_group local ld int voicemail free-pstn prepaid"
Regards, Norm
Douglas Garstang wrote:
How can we change the database, database user name and database password that the openserctl utility tries to connect with? You can set these in openser.cfg with modparam, but if you can't also set them for openserctl, what's the point?
Thanks. Douglas Garstang
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
The correct file is:
/usr/local/etc/openser/.openserctlrc
The file I mentioned below can be used for local settings in the openser_mysql.sh script
Regards, Norm
Norman Brandinger wrote:
Local settings for openserctl can be specified by the following file:
/usr/local/etc/openser/.openserrcmysql
Example contents of the file:
DIR=/usr/local/sbin PW=openser RO_PW=openserro RW_PW=openserrw ACL_GROUPS="my_custom_group local ld int voicemail free-pstn prepaid"
Regards, Norm
Douglas Garstang wrote:
How can we change the database, database user name and database password that the openserctl utility tries to connect with? You can set these in openser.cfg with modparam, but if you can't also set them for openserctl, what's the point?
Thanks. Douglas Garstang
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
Actually, the code from openserctl shows that you can have custom settings in any of three different locations:
/etc/openser/.openserctlrc /usr/local/etc/openser/.openserctlrc ~/.openserctlrc
<snip> ### include resource files, if any if [ -f /etc/openser/.openserctlrc ]; then
fi if [ -f /usr/local/etc/openser/.openserctlrc ]; then . /usr/local/etc/openser/.openserctlrc fi if [ -f ~/.openserctlrc ]; then . ~/.openserctlrc fi </snip>
Norman Brandinger wrote:
The correct file is:
/usr/local/etc/openser/.openserctlrc
The file I mentioned below can be used for local settings in the openser_mysql.sh script
Regards, Norm
Norman Brandinger wrote:
Local settings for openserctl can be specified by the following file:
/usr/local/etc/openser/.openserrcmysql
Example contents of the file:
DIR=/usr/local/sbin PW=openser RO_PW=openserro RW_PW=openserrw ACL_GROUPS="my_custom_group local ld int voicemail free-pstn prepaid"
Regards, Norm
Douglas Garstang wrote:
How can we change the database, database user name and database password that the openserctl utility tries to connect with? You can set these in openser.cfg with modparam, but if you can't also set them for openserctl, what's the point?
Thanks. Douglas Garstang
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users