My Cassandra cluster is Kerberos enabled and I want to user the Kerberos protocol to execute cassandtra-stres.. When looking at the documentation, I found a credentials file, where I can provide simple username and password, But did not find anything related to using a different Auth Provider. Is this even possible at this moment?
How to run Cassandra-stress tool with Kerberos authentication?
90 views Asked by Mohini Gonawala At
1
There are 1 answers
Related Questions in CASSANDRA
- how to create a chess board with Queen in the central position and all its moves in assembler code
- Passing arguments to ENTRYPOINT causes the container to start and run indefinitely
- Apache Cassandra Node Driver Connection
- Simulate Cassandra DB timeout
- How to update Cassandra Lucene index with a new column? rebuild or update index?
- Cassandra JDBC connection string for logstash
- Cassandra OversizedMessageException
- dsbulk unload is failing after ran couple of hours with OOM issue
- Cassandra: "Model keyspace not set" and "Connection name doesn't exist in the registry" Errors
- Unable to cqlsh to a cassandra docker container remotely
- Forward pagination with object mapper in java asyn
- Allow filter in cassandra query
- How to fix bytes unrepaired in cassandra
- Can't install Cassandra using RPM packages for RHEL 9
- Why can't get a connection to Cassandra running on Docker from a Spring Boot instace using spring-boot-starter-data-cassandra on first boot?
Related Questions in KERBEROS
- Jndi connect to LDAP by GssApi KrbException: Server not found in Kerberos database (7)
- Kerberos Authentication for an API
- SASL GSSAPI: ldap_sasl_interactive_bind : Other error (80) no credentials supplied
- SQL Server Kerberos authentication
- How do I obtain a user's domain in nginx during authentication through AD with Kerberos?
- Kerberos ticket validity
- Unable to create Kafka Consumer using Kerberos Authentication System
- Does DataGrip Support Postgres Authentication with Kerberos?
- Setting up SOLR authentication kerebos plugin
- Authenticating and transferring files to the shared drive using Kerberos auth via SMB in Python
- Resolving Kerberos vs NTLM Authentication Issue in Cross-Domain SQL Server Connection
- Git clone failed with Krb5LoginModule error - JNA Library
- SPNEGO/GSS-API Golang packages for Kerberos authentication on MacOS
- VBA MSXML2.ServerXMLHTTP60 Web Request with Kerberos Authentication
- Deserializing a Kerberos Token
Related Questions in AUTHPROVIDER
- Exploring Next-Auth / Google login
- ra-supabase how to access usePermissions
- Rootlayout navbar and footder still showing at the DashboardLayout after the user login in app router nextjs 13
- How do I log current user context out in firebase using Expo React Native?
- ERROR TypeError: Cannot read property 'user' of undefined | React Native
- How to run Cassandra-stress tool with Kerberos authentication?
- User context in react
- Provider on Firebase Auth Login State does not redirect to Home page after successful login. but restarting the app navigates to home
- React Admin resource name with path variable
- How to change "Continue to Force.com" to "Contineu to <company name>" in Google SSO with Salesforce
- How to achive an extra custom dialog (based on server response) by login in React Admin?
- useEffect is getting in a loop
- Why is react admin login page only shown for one second?
- working example of OnBehalfOfProfider for a daemon app calling MS Graph
- How do I configure the getPermissions() method in the AuthProvider in react-admin?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
For anyone else who is wondering the same:
I was finally able to find a parameter named "auth-provider" that allows you to provide your custom Auth Provider. I used it to pass the Fully qualified class name of my custom KerberosAuthProvider and it works fine.
https://github.com/apache/cassandra/blob/trunk/tools/stress/src/org/apache/cassandra/stress/settings/SettingsMode.java#L150
I really wish this was well documented in the stress tool Document.