tensorflow-model-server for centos rhel 7 without docker - tensorflow

Is there any way to user tensorflow-model-server for centos rhel 7 without docker.
I am not able to find documentation for it

Build binary from source code.

Related

Error when trying to install mod_jk - Centos 8

I'm a Digitalocean user and I'm trying to migrate mi infraestructre from Centos 7 to Centos 8
It implies moving DBs (mysql), set a Web Server and Java.
One of the steps is installing Apache and Tomcat making use of mod_jk.
All the steps I will describe end in a complete succes in Centos 7 but fails in Centos 8
The way i got Java installed was by a RPM package I downloaded from oracle itself.
# java -version
java version "14.0.1" 2020-04-14
Java(TM) SE Runtime Environment (build 14.0.1+7)
Java HotSpot(TM) 64-Bit Server VM (build 14.0.1+7, mixed mode, sharing)
These are all the steps I follow.
# dnf install httpd
#cd /tmp
# wget https://apache.zero.com.ar/tomcat/tomcat-connectors/jk/tomcat-connectors-1.2.48-src.tar.gz
# cd tomcat-connectors-1.2.48-src/native
# dnf install httpd-devel
# dnf install make
# dnf install libtool
# which apxs
/usr/bin/apxs
In this directory there's the file "BUILDING.txt" with instructions to install which I follow.
It looks like this.
# ./configure --with-apxs=/usr/bin/apxs
# make
And here there is seem to be the problem.
Some "redhat" directory not found in Centos.
Error when executing 'Make' screenshot
The next would be
# make install
But is fails in Centos 8
Does anyone know how to solve this?
Thanks in advance.
You need to install redhat-rpm-config. Install redhat-rpm-config and test.
yum install redhat-rpm-config

How to update s3fs from v1.74 to latest version in amazon linux 2 or centos?

I already installed s3fs-fuse v1.74 and my boss need me to update it to latest version, yet I'm a newbie here. I'm using Amazon Linux 2 instance in AWS, sometimes works with centos 7 code too. Could someone help me please?
EPEL hosts the latest versions of s3fs. You can install them on Amazon Linux via:
sudo amazon-linux-extras install epel
sudo yum install s3fs-fuse
and CentOS 7 and later via:
sudo yum install epel-release
sudo yum install s3fs-fuse
These instructions come from the s3fs README.

Collectd - How to get version installed

I have installed collectd using sudo apt-get install collectd. Is there any command to get the current installed version of Collectd?
I tried collectd -v. Apparently it does not work. I do not see any option to get the version.
apt-cache policy collectd will show the version installed (as well as other available versions and their sources)
Run collectd/bin/collectdctl
It prints out the version.
Use /usr/bin/collectdctl on RHEL 7 or CentOS.
On RHEL 8 you can use collectd -h this will also print the version.

Which yum repositories for Oracle Linux 7 can I use to install Kubernetes?

I've been able to successfully install Kubernetes in a CentOS 7 testing environment using the "virt7-testing" repo as described in the CentOS "Getting Started Guide" in the Kubernetes github repo. My production environment will be running on Oracle Linux 7, and so far enabling "virt7-testing" on OL7 hasn't been working.
Are there any other yum repositories out there that are compatible with OL7 and include Kubernetes?
It's not the best solution to pull outside of OEL, but I couldn't find an OEL repository with these packages, so I used this:
[]# cat /etc/yum.repos.d/virt7-common.repo
[virt7-common]
name=Extra Packages for Enterprise Linux 7 - $basearch
baseurl=http://mirror.centos.org/centos/7/extras/$basearch/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
A good start would be the rapidly updated fedora / epel kubernetes repositories.
Something like (untested)
yum --enablerepo=updates-testing install kubernetes kubernetes-devel flanneld docker
Should do it for you.

update apache 2.2 to apache 2.4 on centos 6.4 - 64bit [duplicate]

This question already has answers here:
Upgrade Apache 2.2 -> 2.4
(5 answers)
Closed 8 years ago.
Hi please tell me process for update apache 2.2 to 2.4
I command yum install httpd and install it 2.2
OS- centos 6.4 Final to 64 bits
The base install of CentOS is built with the idea of stability in mind over getting the latest version. See http://wiki.centos.org/FAQ/General#head-472ce8446ebcfc82ca1800f775ba0e629ac835c7
For this reason, Apache 2.4 is not available via the standard yum repositories.
However, you can do a manual install (which I try to avoid), or use a repository such as the one created by Jan Kaluza that allows you to install an instance of Apache 2.4 . For more information, see http://developerblog.redhat.com/2013/10/24/apache-httpd-2-4-on-red-hat-enterprise-linux-6/
There may be some other good repositories that you could use to get a clean version of 2.4 installed but this is what I know about.
Do yum list httpd* from the output select the version 2.4 archive and install it using yum install NAME