Re: PasswordAuthenticator

2013-06-05 Thread Michal Michalski
Don't you have a default "cassandra" user in system_auth.users? cqlsh> SELECT * from system_auth.users ; name | super ---+--- cassandra | True It should be created on startup and you should see this in your logs: "PasswordAuthenticator created default user cassandra" Howev

Re: Question about the way that isLocalDc() gets local DC

2013-02-28 Thread Michal Michalski
Sure, done :-) https://issues.apache.org/jira/browse/CASSANDRA-5299 MM W dniu 28.02.2013 15:30, Marcus Eriksson pisze: that should probably be FBUtilities.getBroadCastAddress even, could you file a ticket?

Question about the way that isLocalDc() gets local DC

2013-02-28 Thread Michal Michalski
I have a C* sourcecode related question: Can someone explain me why isLocalDc() in OutboundTcpConnection class uses DatabaseDescriptor.getRpcAddress() for retrieving "local" IP, instead of using DD.getListenAddress() or - even better - FBUtilities.getLocalAddress()? I mean - I don't get why RP

Re: How to check the last commit that Cassandra release was built on?

2012-05-07 Thread Michal Michalski
... cassandra-1.0.9 cassandra-1.1.0 cassandra-1.1.0-beta1 cassandra-1.1.0-beta2 cassandra-1.1.0-rc1 ... $ git checkout cassandra-1.1.0 On Mon, May 7, 2012 at 8:28 AM, Michal Michalski wrote: Hi, Let's say I want to use Cassandra's Git repository to build my own Cassandra .deb file w

How to check the last commit that Cassandra release was built on?

2012-05-07 Thread Michal Michalski
Hi, Let's say I want to use Cassandra's Git repository to build my own Cassandra .deb file which is _exactely_ the same as specified release (for example: cassandra-1.1) and apply there some patches of my choice. Could you please explain me how can I check which commit should I pick to do it