Questions tagged [rhel6]

For development issues encountered while using Red Hat Enterprise Linux 6

This tag is for questions specific to version 6 of Red Hat Enterprise Linux. For general questions regarding Red Hat Enterprise Linux (RHEL), use the tag.

295 questions
1
vote
1 answer

send inline html with mailx (Heirloom mailx 12.4)

I am trying (to no avail) to send inline html with mailx utility (Heirloom mailx 12.4). Email is being sent in plain text. My mailx version does not support -a for header (used for attachments instead) As non root user, options such as: configuring…
Alassane
  • 21
  • 7
1
vote
2 answers

Using Ansible to remove multiple Unix accounts

I have written the below ansible code for removal of Unix user accounts. - hosts: dev vars: username: 'testuser' become: true tasks: - name: Remove User user: name: '{{ username }}' state: absent …
Zama Ques
  • 1,497
  • 5
  • 26
  • 45
1
vote
0 answers

Issue while installing pip on RHEL6 server with no internet

We have python 2.7 installed on server Tried installing pip by following steps 1) downloaded pip-19.1.1 tar file from internet on local machine(ubuntu) 2) transfered file to server and extracted the content 2) ran setup.py file present in the…
Chetan Rane
  • 21
  • 1
  • 4
1
vote
0 answers

Unable to update Lua from 5.1.4 to 5.3 due to dependents

OS: RHEL 6 I'm trying to update Lua but it seems that there are multiple dependents on the older version of Lua which is hampering the update process. How should I proceed? rpm -Uvh lua-5.3.0-2.el6.x86_64.rpm warning: lua-5.3.0-2.el6.x86_64.rpm:…
Vishal Sharma
  • 1,670
  • 20
  • 55
1
vote
1 answer

Unable to run gitlab-ctl reconfigure after updating from 10.6.4 to 10.8.7 on RHEL 6

I am working on the upgrade to the latest 11.x version of gitlab but needed to upgrade to 10.8.7 first from 10.6.4 on RHEL 6. That upgrade proceeded normally, then I attempted the upgrade to latest 11.x but it failed with a message about deprecating…
Matt
  • 1,328
  • 1
  • 16
  • 28
1
vote
1 answer

ImportError: /lib64/libc.so.6: version `GLIBC_2.17' not found on import tensorflow on RHEL 6.9 (Santiago)

I had installed tensorflow on RHEL 6.9 and it is installed successfully. While importing tensorflow ImportError: /lib64/libc.so.6: version `GLIBC_2.17' not found is coming. I am trying to install it in non-open internet VM. So if somebody could help…
aman jain
  • 13
  • 1
  • 3
1
vote
0 answers

Can I get the Current Working Directory in SystemTap under RHEL6

I have the following SystemTap program: #!/usr/bin/stap function proc:string() { return sprintf("[%s] %s(%s)::%s() (pid %d, uid %d, cwd %s)", execname(), cmdline_arg(0), cmdline_args(1,-1,", "), caller(), pid(), uid(), …
John Hascall
  • 9,176
  • 6
  • 48
  • 72
1
vote
0 answers

Ruby on Rails timezone storing different timezones to datetime attributes

I have a model "Request", that have the common attributes created_at and updated_at, but have others datetime attributes: "inserted_at" and "response_deadline". My problem is especially with response_deadline, that sometimes is stored with the…
1
vote
1 answer

Errors after migration to PHP7

I am seeing the following error after migrating to PHP7 from PHP5 PHP Notice: Array to string conversion in /data/get.php on line 25 PHP Notice: Undefined property: stdClass::$Array in /data/get.php on line 25 PHP Notice: Trying to get property…
Zama Ques
  • 1,497
  • 5
  • 26
  • 45
1
vote
1 answer

PHP scripts not working after migrating to PHP7

After migrating to PHP7.2 from PHP5.5 , my PHP scripts are not getting executed however phpinfo() is loading fine . I have installed php from source code . I have enabled display_errors setting and it showing the following messages [03-Oct-2018…
Zama Ques
  • 1,497
  • 5
  • 26
  • 45
1
vote
1 answer

Linking with gfortran: _edata: invalid version 21 (max 4)

I'm working with RHEL6 systems, but need to port the code using C++11 (and even C++14) features. This forced me to build gcc-8.2 by hand, installed under a private prefix (/prod/pfe/local). This created a number of executables under…
Mikhail T.
  • 3,043
  • 3
  • 29
  • 46
1
vote
1 answer

Docker build failing with command not found

My Dockerfile is as follows: FROM registry.access.redhat.com/rhel6.7 USER root MAINTAINER zaman L RUN mkdir /apps COPY httpd-2.4.34.tar.bz2 /tmp RUN /usr/bin/tar xjvf /tmp/httpd-2.4.34.tar.bz2 -C /apps VOLUME /tmp VOLUME /apps But…
Zama Ques
  • 1,497
  • 5
  • 26
  • 45
1
vote
0 answers

Centos 6 - join AD domain, authenticate using another trusted domain

I have 2 domains, lets call them domain X.dom and Y.dom, and they have trust between them. On domain X.dom I have a security group, inside of which has members of Y.dom using this group. I successfully managed to connect to Centos 7 machines…
vaxx0r
  • 11
  • 1
1
vote
1 answer

.NET Core on Oracle Enterprise Linux 5/6

.NET Core seems to be compatible with Oracle Enterprise Linux 7(OEL 7), but how about OEL 6 and 5? I found it strange, because I thought, that OEL6 is a clone of Red Hat Enterprise Linux 6 (RHEL 6). RHEL 6 is compatible with .Net Core, so why not…
ipavlu
  • 1,617
  • 14
  • 24
1
vote
0 answers

undefined reference to '_gfortran_transpose_r8' when linking with ATLAS math library

I'm currently using devtoolset-7 on RHEL (gcc 7.2.1) and linking a gfortran project with the ATLAS math library: gfortran -o $EXE $OBJ libgamess-xmvb.a -L/usr/lib64/atlas -llf77blas -latlas The static library /usr/lib64/atlas was provided for the…
nyprog75
  • 11
  • 3