Ignore:
Timestamp:
03/15/2018 05:42:49 PM (6 years ago)
Author:
Pierre Labastie <pieere@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
ce005d8d
Parents:
0dc1b7b
Message:

Move the instructions to install the JAVA CA certificates to "Configuring the
JAVA environment" and host jtreg on anduin.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@19953 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/prog/openjdk.xml

    r0dc1b7b r55bcdd7  
    2323  <!ENTITY total-download-size       "83 MB">
    2424
    25   <!ENTITY jtreg-version             "4.2-b12">
    26   <!ENTITY jtreg-download            "https://ci.adoptopenjdk.net/view/all/job/jtreg/lastSuccessfulBuild/artifact/jtreg-&jtreg-version;.tar.gz">
    27   <!ENTITY jtreg-md5sum              "d9869a852006397df454e904ef1f3ea2">
     25  <!ENTITY jtreg-version             "4.2-b12-293">
     26  <!ENTITY jtreg-download            "&anduin-download;/jtreg-&jtreg-version;.tar.gz">
     27  <!ENTITY jtreg-md5sum              "806213d907d737ab49034344cd3df2cf">
    2828  <!ENTITY jtreg-size                "7.3 MB">
    2929
     
    320320      <para>
    321321        If you only wish to install the Java Runtime Environment, you can
    322         substitue <filename>build/*/images/jre</filename> in the above
     322        substitute <filename>build/*/images/jre</filename> in the above
    323323        <command>cp</command> command.
    324324      </para>
     
    493493    </sect3>
    494494
    495     <sect3 id='ojdk-certs' xreflabel='JRE Certificate Authority Certificates'>
    496       <title>Install or update the JRE Certificate Authority Certificates
    497       (cacerts) file</title>
    498 
    499       <para>
    500         <application>OpenJDK</application> uses its own format for the
    501         CA certificates. Those certificates are located in a file named
    502         <filename>/etc/ssl/java/cacerts.jks</filename>. That file should be
    503         generated using the system PKI trust store. The instructions
    504         on the <xref linkend="make-ca"/> page should be used to update the file
    505         located in <filename>/etc/ssl/java</filename>. Run the conversion and
    506         setup a symlink in the default location as the <systemitem
    507         class="username">root</systemitem> user:
    508       </para>
    509 
    510 <screen role="root"><userinput>/usr/sbin/make-ca --force &amp;&amp;
    511 ln -sfv /etc/ssl/java/cacerts.jks /opt/jdk/lib/security/cacerts</userinput></screen>
    512 
    513       <para>
    514         Use the following commands to check if the <filename>cacerts</filename>
    515         file has been successfully installed:
     495    <sect3>
     496      <title>
     497        Settting up the JRE Certificate Authority Certificates (cacerts) file
     498      </title>
     499
     500      <para>
     501        If you have run the instructions for <xref linkend="ojdk-certs"/>,
     502        you only need to create a symlink in the default location for
     503        those certificates. As user <systemitem
     504        class="username">root</systemitem>:
     505      </para>
     506
     507<screen role="root"><userinput>ln -sfv /etc/ssl/java/cacerts.jks /opt/jdk/lib/security/cacerts</userinput></screen>
     508
     509      <para>
     510        To check the installatiion, as when <xref linkend="ojdk-certs"/>, issue:
    516511      </para>
    517512
    518513<screen role="root"><userinput>cd /opt/jdk
    519 bin/keytool -list -keystore /etc/ssl/java/cacerts</userinput></screen>
    520 
    521       <para>
    522         At the prompt "Enter keystore password:", enter "changeit" (the
    523         default). If the <filename>cacerts</filename> file was installed
    524         correctly, you will see a list of the certificates with related
    525         information for each one. If not, you need to reinstall them.
    526       </para>
     514bin/keytool -list -cacerts</userinput></screen>
    527515
    528516    </sect3>
Note: See TracChangeset for help on using the changeset viewer.