Difference between revisions of "Install apache-commons-daemon-jsvc on centos 8"
From DevOps Notebook
(Created page with "Currently there is no binary for centos 8 for jsvc so it needs to be built. <pre> # yum -y install java-1.8.0-openjdk java-1.8.0-openjdk-devel.x86_64 # wget https://downloads....") |
|||
Line 1: | Line 1: | ||
Currently there is no binary for centos 8 for jsvc so it needs to be built. | Currently there is no binary for centos 8 for jsvc so it needs to be built. | ||
<pre> | <pre> | ||
+ | # yum groupinstall "Development Tools" | ||
# yum -y install java-1.8.0-openjdk java-1.8.0-openjdk-devel.x86_64 | # yum -y install java-1.8.0-openjdk java-1.8.0-openjdk-devel.x86_64 | ||
# wget https://downloads.apache.org/commons/daemon/source/commons-daemon-1.2.3-native-src.tar.gz | # wget https://downloads.apache.org/commons/daemon/source/commons-daemon-1.2.3-native-src.tar.gz |
Latest revision as of 10:14, 6 October 2020
Currently there is no binary for centos 8 for jsvc so it needs to be built.
# yum groupinstall "Development Tools" # yum -y install java-1.8.0-openjdk java-1.8.0-openjdk-devel.x86_64 # wget https://downloads.apache.org/commons/daemon/source/commons-daemon-1.2.3-native-src.tar.gz # tar xzvf commons-daemon-1.2.3-native-src.tar.gz # cd commons-daemon-1.2.3-native-src # ./configure --with-java=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.265.b01-0.el8_2.x86_64/ # make # cp jsvc /usr/bin