Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]

Support Questions

Find answers, ask questions, and share your expertise
Announcements
Share your experience with Cloudera on G2 and get a $25 Amazon Gift card.
Hi, I'm CLEO! Something exciting is coming to the Community. Stay Tuned!

Changing Apache Kyline port

avatar
New Member

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.


1 ACCEPTED SOLUTION

avatar
New Member

I didin't find any configuration from Kylin side.
Tomcat will be bundled inside Kylin. So changing the port on tomcat server.xml helped.

View solution in original post

2 REPLIES 2

avatar
New Member

I didin't find any configuration from Kylin side.
Tomcat will be bundled inside Kylin. So changing the port on tomcat server.xml helped.

avatar
Expert Contributor

#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