mohamed-a-abdelaziz commented on pull request #101: URL: https://github.com/apache/atlas/pull/101#issuecomment-667252655
> @mohamed-a-abdelaziz any idea what are the steps required to run atlas with local cassandra and local elastic search? Don't seem to find anything in docs. just follow these steps #download cassandra `wget https://mirrors.gethosted.online/apache/cassandra/3.11.7/apache-cassandra-3.11.7-bin.tar.gz` `tar -xzf apache-cassandra-3.11.7-bin.tar.gz` `#set start_rpc: true on apache-cassandra/conf/cassandra.yml file ` #run cassandra locally `<path-to-cassandra>/bin/cassandra -f &` #download elasticsearch `wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.8.1-linux-x86_64.tar.gz` `tar -xzf elasticsearch-7.8.1-linux-x86_64.tar.gz` #run elassticsearch `<path-to-elasticsearch>/bin/elasticsearch &` #run kafka `wget https://www.apache.org/dyn/closer.cgi?path=/kafka/2.5.0/kafka_2.12-2.5.0.tgz` `tar -xzf kafka_2.12-2.5.0.tgz` `<path-to-kafka>/bin/zookeeper-server-start.sh config/zookeeper.properties &` `<path-to-kafka>/bin/kafka-server-start.sh config/server.properties &` #clone atlas from my fork if you didn't yet :) `#set atlas.kafka.zookeeper.connect=localhost:2181 and atlas.kafka.bootstrap.servers=localhost:9092 on distro/src/conf/atlas-application.properties (or your own ports)` #build atlas `cd <atlas-path>` `mvn clean -DskipTests package -Pdist,cassandra-elasticsearch` `cd distro/target/apache-atlas-2.1.0-server/apache-atlas-2.1.0` #run atlas `./bin/atlas_start.py` #open your browser and type localhost:21000/ #user/pass : admin/admin ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
