Questions tagged [rhel]

Red Hat Enterprise Linux (RHEL) is a distribution of the Linux operating system targeted at enterprise customers with emphasis on long-term stability and support.

Other support resources

Questions related to installing and running Red Hat Enterprise Linux are usually more on-topic on these sister sites:

Customers can file support cases in the customer portal.

1780 questions
9
votes
2 answers

OpenSSL hangs at CONNECTED(00000003)

I am setting up the https connection of my AEM application in a RHEL server hosted in AWS. Followed the documentation provided by Adobe. For the 1st author instance it worked successfully, but on my 2nd server and 3 server, it didnt. I tried a…
leahkim23
  • 93
  • 1
  • 1
  • 5
9
votes
2 answers

WatchService fires ENTRY_MODIFY sometimes twice and sometimes once

I am using this WatchService example from Oracle: import java.nio.file.*; import static java.nio.file.StandardWatchEventKinds.*; import static java.nio.file.LinkOption.*; import java.nio.file.attribute.*; import java.io.*; import…
halil
  • 800
  • 16
  • 33
9
votes
1 answer

LD_PRELOAD does not loaded on systemd

I am trying to inject a SO into a process that starts using systemd init system (using LD_PRELOAD), but it does not loaded into the new process. I complied a basic SO (unrandom.c): int rand(){ return 42; //the most random number in the…
Or Smolnik
  • 91
  • 1
  • 5
9
votes
1 answer

Equivalent in yum of apt-get update

In Debian derivatives, before installing software from apt using apt-get install xxx, it is necessary to run apt-get update. This refreshes the package lists so that dependencies are resolved correctly, etc. When using an RHEL instance, out of…
sffc
  • 6,186
  • 3
  • 44
  • 68
9
votes
4 answers

Vagrant and Red Hat Enterprise Licensing

Our team is starting to use Vagrant for development on Mac OS X machines so we can better simulate our Red Hat Enterprise Linux production environment. Our operations group says our Red Hat License only covers instances being run on our VMWare…
mitalia
  • 503
  • 4
  • 10
8
votes
2 answers

Unable to register with subscription-manager - 'NoneType' object has no attribute '__getitem__'

In rhel 7 server I am trying to install packages with yum. After getting error that I need to register my rhel7 with subscription-manager I got this error: command: subscription-manager register output: 'NoneType' object has no attribute…
fusu
  • 324
  • 2
  • 14
8
votes
2 answers

JAVA how to find the target file path that a symbolic link points to?

I'm trying to find a way in Java to figure out the file path that a symbolic link is pointing to. We have a system that monitors a symbolic link folder, does some stuff based on the file name, deletes that symbolic link file. What I need to do is…
edjm
  • 4,830
  • 7
  • 36
  • 65
8
votes
4 answers

Upgrading Docker on Amazon Linux AMI

I want to upgrade Docker to v1.8 on Amazon Linux. At the time of writing their internal yum package repository has: Docker version 1.7.1, build 786b29d/1.7.1. Things I have already tried Manually installing from the Docker project's repo Error:…
Hzmy
  • 769
  • 7
  • 16
8
votes
1 answer

Using strace fixes hung memory issue

I have a multithreaded process running on RHEL6.x (64bit). I find that the process hangs and some threads (of the same process) crash most of the time when I try to bring up the process. Some threads wait for shared memory between the threads to get…
umayneverknow
  • 190
  • 1
  • 3
  • 13
8
votes
5 answers

Configure Jenkins for different user.home

I am running Jenkins version 1.527 (I know there is a newer version but it is broken, I can't use the user interface in 1.528 and haven't gotten a chance to upgrade to 1.529) I am trying to change the user.home system property in Jenkins by doing…
TheDevOpsGuru
  • 1,570
  • 5
  • 21
  • 36
8
votes
5 answers

An error occured while installing charlock_holmes libicu

I'm trying to install Gitlab following this install script, but am running into an issue where the charlock_holmes gem fails to install. I'm not familiar with Ruby. My charlock_holmes-0.6.8 gem_make.out file is…
E-rich
  • 9,243
  • 11
  • 48
  • 79
8
votes
1 answer

Python multiprocessing doesn't use all cores on RHEL6

I have been trying to use the python multiprocessing package to speed up some physics simulations I'm doing by taking advantage of the multiple cores of my computer. I noticed that when I run my simulation at most 3 of the 12 cores are used. In…
the.real.gruycho
  • 608
  • 3
  • 17
8
votes
1 answer

Returning application/json content-type for .json files on RHEL/Apache

OS is specifically RHEL6 running Apache2. So in my Apache configuration, I have: LoadModule mime_module modules/mod_mime.so And in /etc/mime.types, I have the following: application/json json Yet when requesting a…
Peter
  • 119
  • 1
  • 1
  • 9
7
votes
2 answers

Discard old build in multi-branch pipeline job, doesn't really delete builds from server

I have multi-branch pipeline job in Jenkins: http://illinXXXX:XXXX/job/OC/configure and I checked the option for Discard old builds as below: I would have expected, that each new run after this change, it will delete old build from the server for…
arielma
  • 1,308
  • 1
  • 11
  • 29
7
votes
4 answers

How to fix -- bash: /usr/bin/python: Too many levels of symbolic links

I wanted to make python3 my default on rhel so I followed the following at How to set Python3.5.2 as default Python version on CentOS? sudo ln -fs /usr/bin/python3 /usr/bin/python It changed the default to 3.6.8 root@rhel:~# python -V Python…
sectechguy
  • 2,037
  • 4
  • 28
  • 61