Questions tagged [centos6.5]

CentOS CentOS is an Enterprise-class Linux Distribution derived from the sources of Red Hat Enterprise Linux (RHEL) and aiming to be fully compatible with RHEL. Version 6.5 was released in February 2014.

CentOS is an Enterprise-class Linux Distribution derived from the sources of Red Hat Enterprise Linux (RHEL) and aiming to be fully compatible with RHEL. Version 6.5 was released in February 2014.

Distributions

198 questions
29
votes
5 answers

How to remove all packages from specific repo without dependencies

I know following code will remove all package from specific repo. yum remove $(yum list installed | grep rpmforge | awk '{ print $1 }') And following code will remove a package without dependencies. rpm -e --nodeps…
Hamidreza
  • 1,825
  • 4
  • 29
  • 40
15
votes
10 answers

'No package nginx available' error CentOS 6.5

I'm trying to install nginx on CentOS 6.5, then I added these lines on file /etc/yum.repos.d/nginx.repo Then install nginx by: And I've got a message error: No package nginx available How can I fix it? I would greatly appreciate any help you can…
Thơ Hoàng
  • 185
  • 1
  • 1
  • 8
11
votes
3 answers

SSH into a docker container from another container on a different host

I have a docker container running on an EC2 host, and another running on another ec2 host. How do I ssh from one to another, without providing any port numbers? I want to do something like ssh root@ip-address-of-container
user1016313
  • 1,274
  • 2
  • 15
  • 26
10
votes
3 answers

Selenium headless browser webdriver [Errno 104] Connection reset by peer

I am trying to scrape data from the URLs below. But selenium fails when driver.get(url) Some times the error is [Errno 104] Connection reset by peer, sometimes [Errno 111] Connection refused. On rare days it works just fine and on my mac with real…
kumar
  • 2,570
  • 2
  • 17
  • 18
9
votes
3 answers

How to get latest cmake version from CentOS 6.5

Is there a good way to install latest cmake version from CentOS 6.5? I'm doing yum install cmake but it's giving me 2.6.4 from base repo which I don't want. I tried installing cmake28 but the problem is that when I try to do ./configure it throws an…
Passionate Engineer
  • 10,034
  • 26
  • 96
  • 168
9
votes
4 answers

Is it possible to run a script on a virtual machine after Vagrant finishes provisioning all of them?

I am using Vagrant v1.5.1 to create a cluster of virtual machines (VMs). After all the VMs are provisioned, is it possible to run a single script on one of the machines? The script I want to run will setup passwordless SSH from one VM to all the…
Jane Wayne
  • 8,205
  • 17
  • 75
  • 120
8
votes
2 answers

make fails trying to install mongo php driver on Centos 6

I've tried two different ways to install the mongodb php driver. Compiling it based on directions from http://andres.jaimes.net/876/setup-mongo-php-module-centos-6/ Issuing (as root) pecl install mongo The server is Centos 6.6 (32-bit) that was…
Adam T
  • 675
  • 8
  • 22
8
votes
2 answers

g++ does not include files it says it includes for C++11?

Short version When I compile even a simple code using a feature of the C++11 standard (the std::stod function), GCC 4.9.1 fails with the following error: example.cpp: In function 'int main()': example.cpp:10:18: error: 'stod' is not a member of…
andyras
  • 15,542
  • 6
  • 55
  • 77
7
votes
2 answers

Android Studio not communicating with adb GLIBC .... not found error

Android studio was communicating with adb normally. Right after updating platform-tools to version 23, android studio stopped communicating with adb. It displays the message: Unable to create Debug Bridge: Unable to start adb server: Unable to …
Hesham Fas
  • 876
  • 1
  • 9
  • 20
6
votes
1 answer

Cert not due for renewal, but simulating renewal for dry run

I'm using certbot-auto generate certificate https for my domain name. I use command like this sudo ./certbot-auto it's ok, but when i renew certificate use command sudo ./certbot-auto renew --dry-run it can't renew certificate and show error…
Ma YongChhin
  • 427
  • 3
  • 10
  • 24
6
votes
1 answer

Memcache extension with PHP 7 on CentOS fails to install

I'm trying to upgrade a fairly large PHP 5.3 code base to PHP 7. It's hosted on CentOS 6.5, so I want to keep it on that OS. I'm currently doing it on a virgin Vagrant box - I've installed PHP 7 successfully, and all the modules except for…
Dan Blows
  • 20,846
  • 10
  • 65
  • 96
6
votes
1 answer

Compile error using gcc - strprintf("%"PRId64, n)

I am trying to compile some code from Github on my, (up to date), Centos 6.5 using GCC++. But I get the error message below when I try to compile the code. The line below is the one failing: ... #define __STDC_FORMAT_MACROS 1 ... #include…
FFMG
  • 1,208
  • 1
  • 10
  • 24
5
votes
3 answers

Unable to pull docker image, getting 'remote error: access denied'

I'm trying to check the installation docker pull hello-world But getting the following error: Pulling repository hello-world Get https://index.docker.io/v1/repositories/library/hello-world/images: remote error: access denied I have CentOS…
zjor
  • 994
  • 2
  • 12
  • 22
5
votes
1 answer

Laravel 5.2 Cron not working on centos

When I am trying to run Task Schedular on localhost(php version : PHP 5.6.4-4ubuntu6.4 (cli)) it is working perfectly. crontab * * * * * php /home/aishatest/public_html/Aisha/Aisha/artisan schedule:run >> /dev/null…
Rohit shah
  • 833
  • 4
  • 15
5
votes
3 answers

node-gyp rebuild - Error: `gyp` failed with exit code: 1

I'm getting an error while doing node-gyp rebuild on CentOS 6.8: File "/usr/local/lib/node_modules/node-gyp/gyp/pylib/gyp/input.py", line 295, in LoadBuildFileIncludesIntoDict LoadOneBuildFile(include, data, aux_data, None, False, check), File…
1
2 3
13 14