Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.84 KB | None | 0 0
  1. <configuration>
  2.   <property>
  3.     <name>javax.jdo.option.ConnectionURL</name>
  4.     <value>jdbc:mysql://localhost:3306/hive_metastore?createDatabaseIfNotExist=false</value>
  5.     <description>JDBC connect string for a JDBC metastore</description>
  6.   </property>
  7.   <property>
  8.     <name>javax.jdo.option.ConnectionDriverName</name>
  9.     <value>com.mysql.jdbc.Driver</value>
  10.     <description>Driver class name for a JDBC metastore</description>
  11.   </property>
  12.   <property>
  13.     <name>javax.jdo.option.ConnectionUserName</name>
  14.     <value>metastore_user</value>
  15.     <description>Username to use against metastore database</description>
  16.   </property>
  17.   <property>
  18.     <name>javax.jdo.option.ConnectionPassword</name>
  19.     <value>password</value>
  20.     <description>Password to use against metastore database</description>
  21.   </property>
  22. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement