Sorry, I didn't see it connects to ASE but the problem occurs after Try a more recent ODBC Sybase driver (SDK 16.0 SP04 PL08 available)
Hi Nicola seems your ODBC connection on RedHat 9 is not correctly configured Did it work before (with ODBC) ? or this pb came with 3.2.6 ? There is little doc for ODBC install on https://sourceforge.net/p/asemon/wiki/install%20asemon_report%20on%20Linux%20with%20PHP8/ Cannot help you more Best regards JP
Salut Catherine, I changed a lot of things in this collector since V3.2.5 It seems the SQL you are retreiving is NULL It seems also you activated debug trace 104 (the line 1214 in this asemon version is a debug line) Test with a more recent version (last one in V3.2.6b) Sorry, cannot help more Regards Jean Paul
Ok good, I changed the sampleConfig.xml file to include this SSL option Best regards JP
you should have : <useSSL> YES </useSSL> in this section (the SampleConfig.xml doesn't mention this)
So it seems you have a config problem in the asemon_config file Can you show me your section : ~~~ <monitoredsrv> <srv> <name> enter_monitored_server_name_here </name> <user> enter_monitored_user_name_here </user> <usekerberos> enter_YES_or_NO </usekerberos> <charset> enter_monitored_server_charset_here_or_leave_empty </charset> <packet_size> </packet_size> <srvdescriptor> enter_monitored_server_descriptor_name_here_ex_ASEV125 </srvdescriptor> <purgearchive daystokeep="90" deletesleep="100"> <textsize>...
There is a technical note on SAP support site describing actions to do for using SSL with V16 Note is : 2430055 - How to setup 3rd party/CA signed SSL with ASE and SDK - SAP ASE
Hi PetrK the only code in asemon_logger managing SSL is this if (useSSL) { if (verbose) Asemon_logger.printmess ("SSL is activated"); props.put("ENABLE_SSL","TRUE"); } So asemon set the connection property "ENABLE_SSL" and does nothing else Do you get the message "SSL is activated" in the outpout messages when starting asemon_logger ? (verbose is set to true for first connection) For jConnect SSL connection configuration you should refer to SAP jConnect documentation or SAP support site I have no...