Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re^2: DBD::Sybase with Repserver and password encryption

by Anonymous Monk
on May 21, 2020 at 07:55 UTC ( [id://11117014]=note: print w/replies, xml ) Need Help??


in reply to Re: DBD::Sybase with Repserver and password encryption
in thread DBD::Sybase with Repserver and password encryption

Yes I can connect to the RSSD server which is an ASE using the encryptPassword=1 if my example is changed to point at the RSSD instead

If I am using isql then using the isql equivalent (isql -X) of the DBD::Sybase encryptPassword=1 works fine. It also works if I use sqsh -X. The only thing that does not work is the perl code version

Is there any extra tracing I can add to the dbi call to see if that shows anymore diagnstic information that might be of assistance ?

  • Comment on Re^2: DBD::Sybase with Repserver and password encryption

Replies are listed 'Best First'.
Re^3: DBD::Sybase with Repserver and password encryption
by parv (Parson) on May 21, 2020 at 11:31 UTC

    Per Jan 2005 thread, you may need to turn off transaction and/or assign error handler callback sub when connecting to replication server. OTOH if you can connect to replication server without encryptPassword and can execute a command successfully, then I don't see how that advice would help.

    (Some of the bug reports are available on Michael P's (maintainer's) website, e.g. 441: amdmin who,sqm fails while in a transaction, 2002.)

      Everything works fine without password encryption set on in the DBI call. I had seen that previous thread but it's a different problem I have and was hoping somebdoy else may have ht a similar issue with security being a buzzword these days

Re^3: DBD::Sybase with Repserver and password encryption
by parv (Parson) on May 22, 2020 at 03:35 UTC

    Could you list the versions of ...

    • perl & DBD::Sybase;
    • the external libraries (e.g. freetds or ones from AES) that DBD::Sybase uses;
    • isql;
    • Replication Server
    ... for possibly others to help?

    You could do DBI->trace(4); before connect() to see where the issue is at more granular level.

    At this point all I can say is to check that encrypted passwords match as sent by isql & DBD::Sybase (say, via tcpdump or some other network packet analyzer) to the replication server.

      Setting the trace has helped I believe

      I see this which only appears when the encryptPassword is set on

      -> DBI->connect(dbi:Sybase:server=MY_REPSERVER;encryptPassword=1, rep +serv_user, ****) !! ERROR: 2056 CLEARED by call to connect method -> connect for DBD::Sybase::dr (DBI::dr=HASH(0x1a723a8)~0x1a72420 +'server=MY_REPSERVER;encryptPassword=1' 'repserv_user' **** HASH(0x1d +1d640)) syb_db_login() -> using global CS_LOCALE data servermsg_cb -> number=14021 severity=12 state=0 line=0 server=MY_ +REPSERVER text=Invalid login attempted by user 'repserv_user' clientmsg_cb -> ct_connect(): protocol specific layer: external er +ror: The attempt to connect to the server failed.

      That 2056 error (which is a Sybase syntax error) does not appear when encryptPassword is not set.

      So it looks like a possible bug in DBD::Sybase ?

      I'm not sure if that module is maintained anymore

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11117014]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (5)
As of 2024-04-19 06:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found