Modified: kylin/site/docs40/install/deploy_without_hadoop.html URL: http://svn.apache.org/viewvc/kylin/site/docs40/install/deploy_without_hadoop.html?rev=1891961&r1=1891960&r2=1891961&view=diff ============================================================================== --- kylin/site/docs40/install/deploy_without_hadoop.html (original) +++ kylin/site/docs40/install/deploy_without_hadoop.html Mon Aug 2 14:22:46 2021 @@ -8844,21 +8844,26 @@ var _hmt = _hmt || []; <h3 id="deployment-process">Deployment process</h3> <h4 id="configure-environment-variables">1 Configure environment variables</h4> +<ul> + <li> + <p>Modify profile</p> -<p>```shell<br /> - vim /etc/profile</p> - -<p># Add the following at the end of the profile file<br /> - export JAVA_HOME=/usr/local/java/jdk1.8.0_291<br /> - export JRE_HOME=${JAVA_HOME}/jre<br /> - export HADOOP_HOME=/etc/hadoop/hadoop-3.2.0<br /> - export HIVE_HOME=/etc/hadoop/hive<br /> - export CLASSPATH=.:${JAVA_HOME}/lib:${JRE_HOME}/lib<br /> - export PATH=$HIVE_HOME/bin:$HIVE_HOME/conf:${HADOOP_HOME}/bin:${JAVA_HOME}/bin:$PATH</p> - -<p># Execute after saving the contents of the above file<br /> - source /etc/profile<br /> - ```</p> + <div class="highlighter-rouge"><pre class="highlight"><code>vim /etc/profile + +<span class="c"># Add the following at the end of the profile file</span> +<span class="nb">export </span><span class="nv">JAVA_HOME</span><span class="o">=</span>/usr/local/java/jdk1.8.0_291 +<span class="nb">export </span><span class="nv">JRE_HOME</span><span class="o">=</span><span class="k">${</span><span class="nv">JAVA_HOME</span><span class="k">}</span>/jre +<span class="nb">export </span><span class="nv">HADOOP_HOME</span><span class="o">=</span>/etc/hadoop/hadoop-3.2.0 +<span class="nb">export </span><span class="nv">HIVE_HOME</span><span class="o">=</span>/etc/hadoop/hive +<span class="nb">export </span><span class="nv">CLASSPATH</span><span class="o">=</span>.:<span class="k">${</span><span class="nv">JAVA_HOME</span><span class="k">}</span>/lib:<span class="k">${</span><span class="nv">JRE_HOME</span><span class="k">}</span>/lib +<span class="nb">export </span><span class="nv">PATH</span><span class="o">=</span><span class="nv">$HIVE_HOME</span>/bin:<span class="nv">$HIVE_HOME</span>/conf:<span class="k">${</span><span class="nv">HADOOP_HOME</span><span class="k">}</span>/bin:<span class="k">${</span><span class="nv">JAVA_HOME</span><span class="k">}</span>/bin:<span class="nv">$PATH</span> + +<span class="c"># Execute after saving the contents of the above file</span> +<span class="nb">source</span> /etc/profile +</code></pre> + </div> + </li> +</ul> <h4 id="install-jdk-18">2 Install JDK 1.8</h4> @@ -8897,41 +8902,40 @@ cp hadoop-3.2.0/share/hadoop/tools/lib/h <li> <p>Modify <code class="highlighter-rouge">core-site.xml</code>ï¼config AWS account information and endpoint. The following is an example:</p> - <p>```<br /> - <?xml version="1.0" encoding="UTF-8"?><br /> - <?xml-stylesheet type="text/xsl" href="configuration.xsl"?><br /> - <!â<br /> - Licensed under the Apache License, Version 2.0 (the âLicenseâ);<br /> - you may not use this file except in compliance with the License.<br /> - You may obtain a copy of the License at</p> - - <div class="highlighter-rouge"><pre class="highlight"><code> http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. See accompanying LICENSE file. --> + <div class="highlighter-rouge"><pre class="highlight"><code><span class="cp"><?xml version="1.0" encoding="UTF-8"?></span> +<span class="cp"><?xml-stylesheet type="text/xsl" href="configuration.xsl"?></span> +<span class="c"><!-- + Licensed 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 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. See accompanying LICENSE file. +--></span> + +<span class="c"><!-- Put site-specific property overrides in this file. --></span> + +<span class="nt"><configuration></span> + <span class="nt"><property></span> + <span class="nt"><name></span>fs.s3a.access.key<span class="nt"></name></span> + <span class="nt"><value></span>SESSION-ACCESS-KEY<span class="nt"></value></span> + <span class="nt"></property></span> + <span class="nt"><property></span> + <span class="nt"><name></span>fs.s3a.secret.key<span class="nt"></name></span> + <span class="nt"><value></span>SESSION-SECRET-KEY<span class="nt"></value></span> + <span class="nt"></property></span> + <span class="nt"><property></span> + <span class="nt"><name></span>fs.s3a.endpoint<span class="nt"></name></span> + <span class="nt"><value></span>s3.$REGION.amazonaws.com<span class="nt"></value></span> + <span class="nt"></property></span> +<span class="nt"></configuration></span> </code></pre> </div> - - <p><!-- Put site-specific property overrides in this file. --></p> - - <configuration> - <property> - <name>fs.s3a.access.key</name> - <value>SESSION-ACCESS-KEY</value> - </property> - <property> - <name>fs.s3a.secret.key</name> - <value>SESSION-SECRET-KEY</value> - </property> - <property> - <name>fs.s3a.endpoint</name> - <value>s3.$REGION.amazonaws.com</value> - </property> - </configuration> - <p>```</p> </li> </ul> @@ -9035,9 +9039,7 @@ nohup <span class="nv">$HIVE_HOME</span> </code></pre> </div> - <p>Noteï¼</p> - - <p>If the following error is reported in this step:</p> + <p>Noteï¼If the following error is reported in this step:</p> <div class="highlighter-rouge"><pre class="highlight"><code>java.lang.NoSuchMethodError: com.google.common.base.Preconditions.checkArgument<span class="o">(</span>ZLjava/lang/String;Ljava/lang/Object;<span class="o">)</span>V </code></pre>
Modified: kylin/site/feed.xml URL: http://svn.apache.org/viewvc/kylin/site/feed.xml?rev=1891961&r1=1891960&r2=1891961&view=diff ============================================================================== --- kylin/site/feed.xml (original) +++ kylin/site/feed.xml Mon Aug 2 14:22:46 2021 @@ -19,8 +19,8 @@ <description>Apache Kylin Home</description> <link>http://kylin.apache.org/</link> <atom:link href="http://kylin.apache.org/feed.xml" rel="self" type="application/rss+xml"/> - <pubDate>Sun, 01 Aug 2021 06:59:09 -0700</pubDate> - <lastBuildDate>Sun, 01 Aug 2021 06:59:09 -0700</lastBuildDate> + <pubDate>Mon, 02 Aug 2021 06:59:13 -0700</pubDate> + <lastBuildDate>Mon, 02 Aug 2021 06:59:13 -0700</lastBuildDate> <generator>Jekyll v2.5.3</generator> <item> @@ -112,8 +112,8 @@ Kylin çæ ¸å¿ææ³æ </ul> </description> <pubDate>Thu, 29 Jul 2021 08:00:00 -0700</pubDate> - <link>http://kylin.apache.org/blog/2021/07/29/kylin-on-parquet-new-architecture-share/</link> - <guid isPermaLink="true">http://kylin.apache.org/blog/2021/07/29/kylin-on-parquet-new-architecture-share/</guid> + <link>http://kylin.apache.org/cn/blog/2021/07/29/kylin-on-parquet-new-architecture-share/</link> + <guid isPermaLink="true">http://kylin.apache.org/cn/blog/2021/07/29/kylin-on-parquet-new-architecture-share/</guid> <category>blog</category>