forked from unum-cloud/NetworkXum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbench.sh
40 lines (33 loc) · 1 KB
/
bench.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# PostgreSQL
brew install postgresql &&
brew services start postgresql
# MySQL
# mysqld_safe --skip-grant-tables &
# mysql
# UPDATE mysql.user SET authentication_string='temptemp' WHERE User='root';
# FLUSH PRIVILEGES;
# exit;
brew install mysql &&
brew services start mysql
# MongoDB
# mongod --dbpath=/Users/av/DBs/mongo/ --directoryperdb --wiredTigerCacheSizeGB=2 --wiredTigerDirectoryForIndexes &!
brew tap mongodb/brew &&
brew install mongodb-community@4.2 &&
brew services start mongodb/brew/mongodb-community
# Neo4J
brew cask install homebrew/cask-versions/adoptopenjdk8 &&
brew install neo4j &&
brew services start neo4j
# Redis
brew install redis &&
brew services start redis
# Memcached
brew install memcached &&
brew services start memcached
# ElasticSearch
# elasticsearch &!
brew install elasticsearch &&
brew services start elasticsearch
~/miniconda3/bin/python setup.py install
~/miniconda3/bin/python BenchGraphs/main.py
~/miniconda3/bin/python BenchTexts/main.py