Re: [Sqlrelay-discussion] Listener without using authentication
Brought to you by:
mused
|
From: David M. <dav...@fi...> - 2006-01-03 22:40:06
|
On Tue, 2006-01-03 at 16:36 -0500, Kelly Shum wrote: > Hello All, > > > > Is there a way to configure the listener so that there is no > authentication required? I know that there is the AuthTier setting > for listener, connection, listener and connection and database, but is > there a way to disable authentication to the sqlrelay port all > together? Thanks. > > > > Kelly Shum > > > > There was once a way to do that, and though I don't remember doing it, I appear to have removed that feature :) A quick hack to disable authentication though: edit src/util/authenticator.C and change the second-to-last line from: return false; to: return true; Then set authtier="listener" or authtier="connection" in the config file. David Muse dav...@fi... |