# How to Run the JDBC Demo Code On A Linux OSTDengine's JDBC demo project is organized in a Maven way so that users can easily compile, package and run the project. If you don't have Maven on your server, you may install it using<pre>sudo apt-get install maven</pre>
## Install TDengine ClientMake sure you have already installed a tdengine client on your current develop environment.Download the tdengine package on our website: ``https://www.taosdata.com/cn/all-downloads/`` and install the client.
<pre>mvn clean package assembly:single</pre>The ``pom.xml`` is configured to package all the dependencies into one executable jar file.To run it, go to ``examples/JDBC/JDBCDemo/target`` and execute<pre>java -jar jdbcChecker-SNAPSHOT-jar-with-dependencies.jar -host localhost</pre>