Questions tagged [centos8]

Centos8 is a linux platform released on June 2019. It has many features like native support for java 8 and 11, Python 3, new composer tool, new stratis storage management tool, session recording, system wide cryptographic policies, enhanced security etc....

475 questions
0
votes
1 answer

Error while installing Apache/2.4.37 on centos 8

How do I fix this error ? Have been trying to install apache webserver on centos 8 machine. Lookign forward to your responses, thanks !! httpd.service - The Apache HTTP Server Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled;…
dev
  • 1
  • 3
0
votes
1 answer

How can I get condor collector to run

I have installed HTcondor on my cluster of Dell Optiplex 390s they all are running Centos 8 and I am not able to run condor_status I get the following error --> Error: can't find collector I am new to using condor and all I want to be able to do is…
JuanGunner
  • 13
  • 5
0
votes
1 answer

OpenSSL 1.1.1c with Weak Ciphers

Does anyone know how to enable tlsv1 support on openssl on Centos:8 natively? I have tried to compile from source using enable-weak-ssl-ciphers enable-deprecated enable-rc4 enable-tls1 but it's still not allowing me to run openssl s_client without…
sjm
  • 415
  • 1
  • 9
  • 23
0
votes
1 answer

django3 file upload default permission is 420?

I maid picture upload function as shopping management. web: http://www.henojiya.net/shopping/ source: https://github.com/duri0214/Portfolio/tree/master/mysite/shopping Now, I problem this. permission…
yoshitaka okada
  • 113
  • 1
  • 12
0
votes
0 answers

How can I automatically pull a repo when a push is made on Centos 8 NodeJS

So I am attempting to set up an automated pull/workflow with my current project. Basically I would like to be able to push changes to my github repo, and from there have the server (Centos 8) pull the repo (if any changes, I'd like to avoid using…
Thee Deer
  • 13
  • 4
0
votes
1 answer

curl TLS handshake not successful

I try to call several API Gateways from a virtual machine (centos) using curl. curl https://xxxx.execute-api.eu-central-1.amazonaws.com -v This works as expected except for one. The curl call hangs after the ClientHello until the timeout. The…
user5580578
  • 1,134
  • 1
  • 12
  • 28
0
votes
1 answer

python tkinter on CentOS 8.1

Was trying to get an existing python/tkinter gui (from CentOS 7.4) running on CentOS 8.1 and the fonts were all really tiny, spent several hours trying to set default font sizes e.g. TkDefaultFont as follows: root = tk.Tk() default_font =…
hoss
  • 11
  • 2
0
votes
2 answers

Can't start Kafka/Zookeeper Service on Centos 7/Centos 8

Paths are correct, I don't know why I can't start kafka service, all lines, log files, etc and do not say what the Issue is... :/ I'm trying to install kafka on my Centos 7/8 and there is no Issue description I can figure out. zookeeper.service…
David Castro
  • 1,773
  • 21
  • 21
0
votes
0 answers

Can't find yum plugins for CentOS 8

trying to develop my Unix administration skills I've installed CentOS 8.1 to get some practice, but I faced a problem when attempting to install yum plugins - no matches found. All standard repos + epel are enabled. Google gave me no answer. Any…
shell
  • 1
  • 2
0
votes
1 answer

bash TAB completion does not work on centos 8

I run a centos 8 distro on docker and I would like to have bash TAB completion with dnf package manager. According to other posts, I did the following once my docker container is started: dnf clean all && rm -r /var/cache/dnf && dnf upgrade -y &&…
Eurydice
  • 8,001
  • 4
  • 24
  • 37
0
votes
1 answer

Trust repository with small dh key in maven build

When building my project using maven inside my newly setup CentOS 8 VM I get the following error when maven tries to download a dependecy from our internal nexus: [INFO] ------------------------------------------------------------------------ [INFO]…
Felix
  • 2,256
  • 2
  • 15
  • 35
0
votes
1 answer

Jenkins: Jobs triggered to build from GitHub web-hook run only on master node

The initial idea was to trigger a specific build on a specific node (slave), after merging changes to master branch on GitHub. Configuration: Jenkins (ver 2.226) is on a Centos8 VM machine in VirtualBox; VM setup: Java 11 OpenJDK(openjdk version…
Cristian M
  • 357
  • 1
  • 3
  • 18
0
votes
0 answers

Vagrant VM shell script automation for mariadb to backup databases on shutdown trigger

How would I have the following executed on CentOS 8.1 automatically prior to each shutdown? mysqldump --user=root --passwordpass --lock-tables -e --all-databases > ~/dbs.sql Likewise, how would I re-import them automatically upon startup?
user163831
  • 1,031
  • 3
  • 13
  • 25
0
votes
0 answers

AWS cli is installed but doesn't work, Centos8

Hi I have installed awscli in centos8 trough pip3, I can see the files in my /root/.local/bin directory -rwxr-xr-x 1 root root 817 Mar 4 18:50 aws -rwxr-xr-x 1 root root 204 Mar 4 18:49 aws_bash_completer -rwxr-xr-x 1 root root 1432 Mar 4…
Ribakek
  • 1
  • 1
0
votes
0 answers

splitting .net core webapp into back end and front end on different OS

I have a .net core 3.1 with razor page webapp solution that consists of multiple .net core projects, some are API. It uses identityserver4 for authentification. It can run on Centos 8 as well as on Windows 10 successfully. However, now i would like…