Advertisement
Guest User

Untitled

a guest
Dec 29th, 2016
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.83 KB | None | 0 0
  1. <configuration>
  2.    <property>
  3.       <name>javax.jdo.option.ConnectionURL</name>
  4.       <value>jdbc:mysql://localhost/metastore?createDatabaseIfNotExist=true</value>
  5.       <description>metadata is stored in a MySQL server</description>
  6.    </property>
  7.    <property>
  8.       <name>javax.jdo.option.ConnectionDriverName</name>
  9.       <value>com.mysql.jdbc.Driver</value>
  10.       <description>MySQL JDBC driver class</description>
  11.    </property>
  12.    <property>
  13.       <name>javax.jdo.option.ConnectionUserName</name>
  14.       <value>hiveuser</value>
  15.       <description>user name for connecting to mysql server</description>
  16.    </property>
  17.    <property>
  18.       <name>javax.jdo.option.ConnectionPassword</name>
  19.       <value>hivepassword</value>
  20.       <description>password for connecting to mysql server</description>
  21.    </property>
  22. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement