summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormrpa <miruna.paun@enea.com>2020-03-13 19:13:57 +0100
committerMiruna Paun <mrpa@enea.se>2020-03-16 14:52:28 +0100
commit54dc4ed92c087fe623213301935db8765d304961 (patch)
tree3fb0be636cb64aee629bf5e5520b69076a17644d
parent09f5ff8110d7bb5fa7f1d984417db7edbaf0a04f (diff)
downloadel_releases-nfv-access-54dc4ed92c087fe623213301935db8765d304961.tar.gz
Updated the prep system section of the ucpe manag. installation chapter.
Change-Id: Ic4f1423963862b22b1095ceb03c8b42fa255d5d7
-rw-r--r--doc/book-enea-nfv-access-getting-started/doc/getting_started_ucpe_manager.xml29
1 files changed, 28 insertions, 1 deletions
diff --git a/doc/book-enea-nfv-access-getting-started/doc/getting_started_ucpe_manager.xml b/doc/book-enea-nfv-access-getting-started/doc/getting_started_ucpe_manager.xml
index 27a5632..ed1876e 100644
--- a/doc/book-enea-nfv-access-getting-started/doc/getting_started_ucpe_manager.xml
+++ b/doc/book-enea-nfv-access-getting-started/doc/getting_started_ucpe_manager.xml
@@ -15,7 +15,7 @@
15 </listitem> 15 </listitem>
16 16
17 <listitem> 17 <listitem>
18 <para>A machine running CentOS with network access to the physical 18 <para>A machine running CentOS 7 with network access to the physical
19 device.</para> 19 device.</para>
20 </listitem> 20 </listitem>
21 21
@@ -92,6 +92,33 @@
92 92
93 <orderedlist> 93 <orderedlist>
94 <listitem> 94 <listitem>
95 <para>Install Java:</para>
96
97 <orderedlist>
98 <listitem><para>Install OpenJDK 11:</para>
99 <programlisting>sudo yum install java-11-openjdk-devel</programlisting>
100 </listitem>
101 <listitem><para>Verify the installation:</para>
102<programlisting>java -version
103
104openjdk version "11.0.3" 2019-04-16 LTS
105OpenJDK Runtime Environment 18.9 (build 11.0.3+7-LTS)
106OpenJDK 64-Bit Server VM 18.9 (build 11.0.3+7-LTS, mixed mode, sharing)</programlisting></listitem>
107
108 <listitem><para>The following system variables need to point to the OpenJDK 11 installation:</para>
109<programlisting>export JAVA_HOME=$(dirname $(dirname $(readlink $(readlink $(which javac)))))
110export PATH=$PATH:$JAVA_HOME/bin
111export CLASSPATH=.:$JAVA_HOME/jre/lib:$JAVA_HOME/lib:$JAVA_HOME/lib/tools.jar
112</programlisting>
113 </listitem>
114 </orderedlist>
115
116 <note><para>If there are multiple java versions installed, switch between them using the
117 following command:</para>
118 <programlisting>alternatives --config java</programlisting></note>
119 </listitem>
120
121 <listitem>
95 <para>Open a terminal with administrative rights, i.e. log into a 122 <para>Open a terminal with administrative rights, i.e. log into a
96 <emphasis role="bold">bash</emphasis> shell with 123 <emphasis role="bold">bash</emphasis> shell with
97 <literal>root</literal> privileges.</para> 124 <literal>root</literal> privileges.</para>