mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-10-31 18:59:23 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			582 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			582 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # Directory containing kerberos config files
 | |
| WHZ_KRB5_DIR="/dir/to/krb5conf"
 | |
| 
 | |
| # Secret Key
 | |
| WHZ_SECRET="change_me"
 | |
| 
 | |
| # Database Connection
 | |
| WHZ_DB_DRIVER="com.mysql.jdbc.Driver"
 | |
| WHZ_DB_USERNAME="wherehows"
 | |
| WHZ_DB_PASSWORD="wherehows"
 | |
| # Fully qualified jdbc url
 | |
| WHZ_DB_URL="jdbc:mysql://localhost/wherehows"
 | |
| 
 | |
| #mysql setup
 | |
| WHZ_DB_DSCLASSNAME="com.mysql.jdbc.jdbc2.optional.MysqlDataSource"
 | |
| WHZ_DB_DIALECT="org.hibernate.dialect.MySQLInnoDBDialect"
 | |
| 
 | |
| # Directory containing ETL job files
 | |
| WHZ_ETL_JOBS_DIR="/var/tmp/jobs"
 | |
| 
 | |
| # Temp directory for ETL job
 | |
| WHZ_ETL_TEMP_DIR="/var/tmp/wherehows"
 | 
