Member since
05-03-2016
23
Posts
2
Kudos Received
4
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 5468 | 04-08-2019 01:04 PM | |
| 2922 | 02-21-2019 02:37 PM |
04-08-2019
01:04 PM
Got the hint logs are exactly pointing the issue. "ls -ld /" shows me it has 777 permission. Just removed the write permission for group and other users, my issue is solved. All these while I only checked the permission for the subsequent folders after "/" but the problem lies with "/" itself.
... View more
03-05-2019
02:05 PM
1 Kudo
#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
... View more