Skip to content

🟦 Публичный репозиторий работ по курсу

Notifications You must be signed in to change notification settings

814CK5N0W/not-only-sql-daten-banken

Repository files navigation

not-only-sql-daten-banken

Репозиторий работ по курсу

docker run -p 5432:5432 --name psql-prbd -d psql-prbd
docker run -p 7000:7000 -p 7001:7001 -p 7199:7199 -p 9042:9042 -p 9160:9160 --name cassandra -d cassandra-prbd
cqlsh> CREATE KEYSPACE sportevent WITH replication = {'class': 'SimpleStrategy', 'replication_factor' : 1};
cqlsh> desc keyspaces

sportevent  system_auth         system_schema  system_views         
system      system_distributed  system_traces  system_virtual_schema

cqlsh> 
docker build -t neo4j-prbd .
docker run \
    --publish=7474:7474 --publish=7687:7687 \
    --volume=$HOME/neo4j/data:/data \
    --name neo4j-prbd -d neo4j-prbd