Hi When I try to start CCM I get this error:
ccmlib.common.UnavailableSocketError: Inet address 127.0.0.1:9042 is not available: [Errno 98] Address already in use; a cluster may already be running or you may need to add the loopback alias
I know I need to add Loopback alais, however this command just work on OSX:
sudo ifconfig lo0 alias 127.0.0.2 up
and I added 3 loop back on Ubuntu by this in interface:
auto lo lo:0 lo:1 lo:2
iface lo inet loopback
iface lo:0 inet static
address 127.0.0.2
netmask 255.255.255.0
network 127.0.0.0
iface lo:1 inet static
address 127.0.0.3
netmask 255.255.255.0
network 127.0.0.0
iface lo:2 inet static
address 127.0.0.4
netmask 255.255.255.0
network 127.0.0.0
I still get same error after running ccm start!