单机部署
环境准备
- JDK1.8+
- Zookeeper
- MySQL初始化Taier初始数据
服务部署
- 下载 taier源码包
$ wget https://github.com/DTStack/Taier/releases/download/${current.version}/taier.tar.gz
$ wget https://github.com/DTStack/Taier/releases/download/${current.version}/plugins.tar.gz
- 解压taier源码包
$ unzip taier.tar.gz
$ unzip plugins.tar.gz
- 修改配置信息
|-- conf
|---- application.properties //配置文件
在application.properties配置好正确的Zookeeper、MySQL信息
nodeZkAddress=127.0.0.1:2181/taier
jdbc.driverClassName=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://127.0.0.1:3306/taier?charset=utf8&autoReconnect=true&tinyInt1isBit=false&serverTimezone=Asia/Shanghai
jdbc.username=root
jdbc.password=
server.tomcat.uri-encoding = UTF-8
server.port = 8090
server.tomcat.basedir = ./tmpSave
- 启动:
$ ./bin/taier.sh start
- 停止:
$ ./bin/taier.sh stop