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
5
votes
2 answers

XSP Configure fails due to mono module dependancy

I have mono installed in my RHEL 5 machine which is visible as follows: which mono /usr/local/bin/mono mono -V Mono JIT compiler version 2.10.2 (tarball Wed Oct 16 10:33:49 CDT 2013) Copyright (C) 2002-2011 Novell, Inc and Contributors.…
varun kumhar
  • 157
  • 2
  • 19
5
votes
3 answers

replace string to asterisk bash

I am trying to get from user a path as an input. The user will enter a specific path for specific application: script.sh /var/log/dbhome_1/md5 I've wanted to convert the number of directory (in that case - 1) to * (asterisk). later on, the script…
Sagi
  • 75
  • 1
  • 5
5
votes
1 answer

Running Java process as Service in Linux

I need to run a Java process as a service in (Red Hat 6.4) Linux (It needs to run at boot time and stay up). I have it mostly working, except for it doesn't seem to status correctly in the "Service Configuration" window. To illustrate, I made a…
mainstringargs
  • 13,563
  • 35
  • 109
  • 174
5
votes
2 answers

How to set environment variables for R to use in Tomcat on RedHat Linux (RHEL6)

I'm trying to set up R and Tomcat on RHEL6 (6.4) I have installed R and can run it. I have installed Tomcat 7 and can host files file. I have packaged an application as a WAR file and deployed it using tomcat. The application runs fine in all…
user2203980
  • 51
  • 1
  • 3
5
votes
1 answer

Installing 32 bit libraries (glibc) on 64 bit RHEL without using yum

I'm trying to get a 32-bit application to run on 64 bit RHEL 6.1, and the machine does not have access to the internet. Is there any way to install 32 bit glibc on 64 bit RHEL without using yum, i.e. just using RPM installs? I grabbed the…
user2150250
  • 4,797
  • 11
  • 36
  • 44
5
votes
1 answer

rpm requires range

I currently have two questions: 1) Is it possible to specify a range of a package in a rpm spec file? something like package >= 1.0.0 and package < 1.0.50 meaning that it will pick up the latest package version closer to 1.0.50 2) Does somebody…
Gerardo
  • 7,457
  • 3
  • 22
  • 17
4
votes
3 answers

How to install C++11 C++0x header files on Redhat Enterprise

I moved my application to another Linux box, after compilation, it returns an error saying #include can not be resolved. I guess the new GNU C++11 header files / libraries are not installed on new machine. My question is how can I install…
2607
  • 4,037
  • 13
  • 49
  • 64
4
votes
3 answers

RHEL + PHP : writing files outside /var/www/html?

I'm trying to open a file for read/write. I've been developing on Ubuntu, and have had no problems whatsoever. Now it's time to deploy to the RHEL server, and I discover there seems to be some kind of restriction on the location of a file to be…
PaulProgrammer
  • 16,175
  • 4
  • 39
  • 56
4
votes
4 answers

Hadoop namenode rejecting connections!? What am I doing wrong?

My configuration: Server-class machine cluster (4 machines), each with RHEL, 8GB RAM, quad core processors. I setup machine 'B1' to be the master, rest of 'em as slaves (B2,B3,B4). Kicked off dfs-start.sh, name node came up on 53410 on B1. Rest of…
Jay
  • 2,394
  • 11
  • 54
  • 98
4
votes
2 answers

Weblogic not clearing cache

We have installed Weblogic 10.3.1.0 on a RHEL (linux) machine. Recently a new version of an application was uploaded to the Weblogic. Unfortunately the new changes are not reflecting. I am told by the environments team that they did clear the…
mujeeb
  • 799
  • 5
  • 18
  • 29
4
votes
1 answer

Install pyenv for every user

I would like to install pyenv on a shared server (a gitlab runner) so that it is set up for every user. How can ! adapt the official docs to suit this? Two specific questions: When it says git clone https://github.com/pyenv/pyenv.git ~/.pyenv,…
Joey Gough
  • 2,753
  • 2
  • 21
  • 42
4
votes
1 answer

what is the formal latest python3 installtion on rhel 7.X servers

I am very confused after searching a while in google , we found many sites that explain how to install python 3 on rhel 7 I want to explain our needs we have productions servers , and we want now to add python 3 on all servers the current python…
Judy
  • 1,595
  • 6
  • 19
  • 41
4
votes
1 answer

How to find a YAML value from Bash using PyYAML

I'm testing the feasibility of using PyYAML v3.12 within a RHEL7 environment to parse the contents of moderately complex YAML config files, by feeding it a key and getting the keypair value back. The query would look something like this python…
4
votes
1 answer

Gitlab Runner: microdnf/yum command not found on different machine

I have two different server machine with gitlab-runner hosted. I use one as development version, the other one as production release. I have the same configuration on both machine, so the lastest release of gitlab-runner and the lastest release of…
Bugpirasi
  • 371
  • 6
  • 22
4
votes
3 answers

Where are default LS_COLORS set in RHEL 5.x?

In a terminal in Red Hat Enterprise Linux 5.x, running: [$] Env returns (among other things): "LS_COLORS=no=00:fi=00:di=01;34:ln=01;36:pi=40;33 . . ." Most of the content in LS_COLORS I find in the file: /etc/DIR_COLORS BUT the values…
WolfHumble