layout: page displayTitle: Dashboard Guide title: Dashboard Guide description: Dashboard Guide license: | Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
This document explains how to install and start Uniffle's dashboard.
In $RSS_HOME/conf directory, Create a dashboard.conf configuration file and configure the data request port and front-end access port in dashboard.conf.
## Front-end access port rss.dashboard.http.port 19997 ## The dashboard request data port, which is the Coordinator's HTTP port ## coordinator.hostname is the hostname or IP address of a Coordinator coordinator.web.address http://coordinator.hostname:19998/
You can add extra JVM arguments for the Uniffle dashboard by specifying DASHBOARD_JAVA_OPTS in RSS_HOME/conf/rss-env.sh Example:
DASHBOARD_JAVA_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5004 -Drss.jetty.http.port=19997"
In the $RSS_HOME/bin directory, start with a script.
## Start dashboard sh start-dashboard.sh ## Close dashboard sh stop-dashboard.sh
In the main.js file, open the import ‘@/mock’ comment and you can use the front-end mock data for interface development.
import '@/mock'