Member since
02-01-2022
269
Posts
95
Kudos Received
59
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1908 | 06-12-2024 06:43 AM | |
2665 | 04-12-2024 06:05 AM | |
1977 | 12-07-2023 04:50 AM | |
1177 | 12-05-2023 06:22 AM | |
2077 | 11-28-2023 10:54 AM |
08-26-2022
05:39 AM
1 Kudo
@Angelvillar I would recommend that you create a SSL Context Service using javas cacerts as the keystore and truststore. If that doesnt work, THEN, try to make your own with the certs from the ELK server. Here is a similar post with a lot more details of how that looks with cacerts and details for alternative custom keystore/trustore. https://community.cloudera.com/t5/Support-Questions/Configure-StandardSSLContextService-for-Elasticsearch/m-p/302719
... View more
08-26-2022
05:32 AM
@Olivia_4692 users usually screen shot, then blur anything you need to hide. Just capture the property/value settings modal, not entire screen of your computer. Not being able to see what you see, i will continue to make some suggestions. Since you are using Kerberos, the doc page i referenced has this property: Property DescriptionAuthenticationMethod {kerberos or userIdPassword}. Determines which authentication method the driver uses when establishing a connection. If set to kerberos, the driver uses Kerberos authentication. The driver ignores any user ID or password specified. If you set this value, you also must set the ServicePrincipalName property. If set to userIdPassword (the default), the driver uses user ID/password authentication. If a user ID and password is not specified, the driver throws an exception. The User property provides the user ID. The Password property provides the password. See Authentication for more information about using authentication with the Sybase driver. The default is userIdPassword. based on this i believe you should have AuthenticationMethod=kerberos in your jdbc url. There are further details for How to Configure Kerberos, please be sure to follow them all: https://docs.oracle.com/cd/E12839_01/web.1111/e13753/sybase.htm#JDBCD390
... View more
08-24-2022
05:37 AM
I suggest them to show some examples of documented urls. You may want to tweak your string to include user and pass,etc ? What driver are you using? It may help to show screen shot of entire DBCP Connection Pool configuration.
... View more
08-23-2022
05:36 AM
@Olivia_4692 Have you tried something like this: jdbc:sybase:User=myuser;Password=mypassword;Server=localhost;Database=mydatabase;Charset=iso_1; reference: https://www.cdata.com/kb/tech/sybase-jdbc-apache-nifi.rst I also found this page: https://docs.oracle.com/cd/E13222_01/wls/docs103/jdbc_drivers/sybase.html#wp1068332 jdbc:bea:sybase://server2:5000;User=test;Password=secre
... View more
08-22-2022
06:44 AM
@clouderonur Check here: https://mvnrepository.com/artifact/mysql/mysql-connector-java/5.7 Also try 8.0 version here: https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.29/mysql-connector-java-8.0.29.jar
... View more
08-22-2022
06:38 AM
@Omarb Not sure if this is helpful, but sometimes I do something like this: Take the operational test, write the schema, then capture it from one of your tests (check attributes for the schema). Now re-use that schema object for the non-operational test instead of infer-schema. I only like to infer schema to help me write the schema, especially if complicated. Hope this helps, Steven
... View more
08-03-2022
10:32 AM
@ftrg The tar.gz was removed from 1.17.0 You can find 1.16.3 here: https://archive.apache.org/dist/nifi/1.16.3/
... View more
07-27-2022
01:46 PM
1 Kudo
@shashikumar Although I do not recommend this, due to creating confusion, you certainly can symlink the file paths on any linux system. Just be sure the permissions are correct on the final new path, then create the symlink back to the old paths.
... View more
07-22-2022
07:50 AM
In windows are you able to connect to gmail/imap using email client? Assuming nifi is on windows, that may be a test. I still think there are things needing to do on gmail side to allow. The imap port needs to be whatever port gmail provides. I assume it is 993 from above. Another port will not resolve connectivity issue, unless 993 is the wrong port alltogether.
... View more
07-22-2022
07:24 AM
@sayak17 Do you have connectivity to port 993 from nifi host to gmail host? Test this with telnet to ensure network is connecting. If not, check nifi host firewall, etc. After this if still cannot connect, there may be gmail settings you need to enable to allow connectivity.
... View more