mirror of https://github.com/CIRCL/AIL-framework
				
				
				
			
		
			
				
	
	
		
			20 lines
		
	
	
		
			427 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			20 lines
		
	
	
		
			427 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
| #!/bin/bash
 | |
| 
 | |
| set -e
 | |
| set -x
 | |
| 
 | |
| lvdbhost='127.0.0.1'
 | |
| lvdbdir="${AIL_HOME}/LEVEL_DB_DATA/"
 | |
| db1_y='2013'
 | |
| db2_y='2014'
 | |
| db2_y='2015'
 | |
| db2_y='2016'
 | |
| nb_db=13
 | |
| 
 | |
| screen -dmS "LevelDB"
 | |
| sleep 0.1
 | |
| echo -e $GREEN"\t* Launching Levels DB servers"$DEFAULT
 | |
| #Add lines here with appropriates options.
 | |
| screen -S "LevelDB" -X screen -t "2016" bash -c '../redis-leveldb/redis-leveldb -H '$lvdbhost' -D '$lvdbdir'2016/ -P '$db2_y' -M '$nb_db'; read x'
 | |
| 
 |