Questions tagged [centos7]

Version 7 of CentOS Linux distribution. The CentOS Linux distribution is a stable, predictable, manageable and reproduceable platform derived from the sources of Red Hat Enterprise Linux (RHEL).

Version 7 of CentOS Linux distribution

The CentOS Linux distribution is a stable, predictable, manageable and reproduceable platform derived from the sources of Red Hat Enterprise Linux (RHEL). We are now looking to expand on that by creating the resources needed by other communities to come together and be able to build on the CentOS Linux platform. And today we start the process by delivering a clear governance model, increased transparency and access. In the coming weeks we aim to publish our own roadmap that includes variants of the core CentOS Linux.

Since March 2004, CentOS Linux has been a community-supported distribution derived from sources freely provided to the public by Red Hat. As such, CentOS Linux aims to be functionally compatible with RHEL. We mainly change packages to remove upstream vendor branding and artwork. CentOS Linux is no-cost and free to redistribute.

CentOS Linux is developed by a small but growing team of core developers. In turn the core developers are supported by an active user community including system administrators, network administrators, managers, core Linux contributors, and Linux enthusiasts from around the world.

Over the coming year, the CentOS Project will expand its mission to establish CentOS Linux as a leading community platform for emerging open source technologies coming from other projects such as OpenStack. These technologies will be at the center of multiple variations of CentOS, as individual downloads or accessed from a custom installer. Read more about the variants and Special Interest Groups that produce them.

Official website

Distributions

4653 questions
42
votes
5 answers

CMake on Linux CentOS 7, how to force the system to use cmake3?

I tried to install PyTorch on my Linux CentOS 7.3. I downloaded its package, ran this command and got this error: sudo python setup.py install running install running build_deps CMake Error at CMakeLists.txt:1 (cmake_minimum_required): CMake 3.0…
DavideChicco.it
  • 3,318
  • 13
  • 56
  • 84
39
votes
5 answers

Composer installed, but get /usr/bin/env: php: No such file or directory

On CentOS 7, I installed PHP 7.1. Then I installed composer with: cd /tmp curl -sS https://getcomposer.org/installer | php71 --> used php71 instead of php, php didn't work mv composer.phar /usr/local/bin/composer Then, when using composer, I…
user3489502
  • 3,451
  • 9
  • 38
  • 66
39
votes
5 answers

How to enable SOAP on CentOS

We have VPS with CentOS. I have installed SOAp using the following command: $ yum install php-soap Then I went to the php.ini file to uncomment the SOAP extension. It was not there, so I added the following line: extension=soap.so Then I restarted…
user3241013
  • 409
  • 1
  • 4
  • 6
38
votes
3 answers

Install and configure supervisord on centos 7 to run Laravel queues permanently

I want to use Laravel queue system in my project and I want to run php artisan queue:work permanently on server's background, I did some searches about this and I found a command line which can run it even after quit from ssh terminal but It can be…
Tohid Dadashnezhad
  • 1,808
  • 1
  • 17
  • 27
37
votes
2 answers

How do I make a keyboard shortcut for Terminal in CentOS 7

Just installed CentOS 7 on my laptop. This new version of CentOS is pretty different from older ones, and I cannot make a keyboard shortcut for Terminal in older ways. Dose anybody know how ?
BioCoder
  • 597
  • 1
  • 5
  • 14
35
votes
4 answers

Upgrade docker on CentOS 7

I'm running centos 7 and have installed docker on host using epel packages: yum install epel-release yum install docker But the docker version is-Docker version 0.11.1-dev, build 02d20af/0.11.1 The latest stable branch of docker is 1.2 I'm running…
nmd
  • 823
  • 1
  • 7
  • 17
33
votes
6 answers

Running Nginx as non root user

I installed Nginx using Ansible. To install on Centos7 I used the yum package so it by default was run as root user. I want it to start and run as a different user (ex - nginx user) in the Centos box. When I try to run it with a different user I get…
Sarith
  • 381
  • 1
  • 3
  • 4
33
votes
3 answers

Unable to start postgresql service on CentOS 7

Unable to start postgresql-9.5 on CentOS 7. I followed this page - https://wiki.postgresql.org/wiki/YUM_Installation - for installing the database server on CentOS. I tried the same after setting setenforce 0, and that did not help either. I am…
Muthu Palanisamy
  • 765
  • 2
  • 9
  • 17
33
votes
3 answers

What benefit do I get from JSVC over just using systemd?

The Tomcat documentation describes the process of compiling and installing JSVC which can be used to run Tomcat as a daemon. As per my understanding, JSVC has two benefits: It launches as root allowing for the use of a privileged port (like 80 or…
user636044
31
votes
4 answers

Cannot install docker in a RHEL server

I am getting Requires: fuse-overlayfs >= 0.7 error while installing docker in RHEL-7. sudo yum install docker-ce Loaded plugins: fastestmirror, langpacks, product-id, search-disabled-repos, subscription-manager This system is not registered with an…
Exploring
  • 2,493
  • 11
  • 56
  • 97
31
votes
11 answers

How to reboot CentOS 7 with Ansible?

I'm trying to reboot server running CentOS 7 on VirtualBox. I use this task: - name: Restart server command: /sbin/reboot async: 0 poll: 0 ignore_errors: true Server is rebooted, but I get this error: TASK: [common | Restart server]…
Domen Blenkuš
  • 2,182
  • 1
  • 21
  • 29
30
votes
4 answers

How to find AMI ID of CentOS 7 image in AWS Marketplace?

I have been launching EC2 instances by logging in to the AWS site, hitting the "Launch" button and following the proscribed steps. Now I'd like to launch instance from an Ansible script, and to do this I (think I) need the AMI ID of the image I wish…
bandjalong
  • 483
  • 2
  • 6
  • 9
29
votes
2 answers

node: relocation error: node: symbol SSL_set_cert_cb, version libssl.so.10 not defined in file libssl.so.10 with link time reference

I've been running a NodeJS server for a website using the MEAN stack for a website, and it's been running for a few months. When I started to work on it again this morning, I started up the website with: nodemon server/app.js The express server…
Mike K.
  • 543
  • 3
  • 14
  • 46
29
votes
3 answers

Php has its own /tmp in /tmp/systemd-private-nABCDE/tmp when accessed through nginx

I found strange behaviour concerning php and /tmp folder. Php uses another folder when it works with /tmp. Php 5.6.7, nginx, php-fpm. I execute the same script in two ways: via browser and via shell. But when it is launched via browser, file is not…
shukshin.ivan
  • 11,075
  • 4
  • 53
  • 69
26
votes
2 answers

WARNING: The script pip3.8 is installed in '/usr/local/bin' which is not on PATH

When running pip3.8 i get the following warning appearing in my terminal WARNING: The script pip3.8 is installed in '/usr/local/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use…
Edward
  • 419
  • 1
  • 3
  • 7