Created 02-20-2019 06:10 PM
How can I change the Apache kylin port ?
The default listen port is 7070, I have salt-bootstrap running on the Azure VMs in that port.
I went through kylin.properties and didn't find a relevant property for listen port.
Created 02-21-2019 02:37 PM
I didin't find any configuration from Kylin side.
Tomcat will be bundled inside Kylin. So changing the port on tomcat server.xml helped.
Created 02-21-2019 02:37 PM
I didin't find any configuration from Kylin side.
Tomcat will be bundled inside Kylin. So changing the port on tomcat server.xml helped.
Created 03-05-2019 02:05 PM
#TO CHANGE KYLIN UI PORT
1. cd /usr/local/apache-kylin-2.6.0-bin/tomcat/conf
2. Open server.xml
Change port in Connector Port argument: As shown below Connector Port 7070 is assigned. You can give another port instead of 7070.
<Connector port="7070" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="7443" compression="on" compressionMinSize="2048" noCompressionUserAgents="gozilla,traviata" compressableMimeType="text/html,text/xml,text/javascript,application/javascript,application/json,text/css,text/plain" />
Thanks