CentOS 5526 Published by

The following updates has been released for CentOS Linux:

MariaDB 10.1 on CentOS Linux 6 x86_64 SCL
MariaDB 10.1 on CentOS Linux 7 x86_64 SCL
Maven 3.3 on CentOS Linux 7 x86_64 SCL
NodeJS 4 on CentOS Linux 7 x86_64 SCL
PostgreSQL 9.5 on CentOS Linux 6 x86_64 SCL
PostgreSQL 9.5 on CentOS Linux 7 x86_64 SCL
Python 3.5 on CentOS Linux 7 x86_64 SCL
Ruby 2.3 on CentOS Linux 7 x86_64 SCL



MariaDB 10.1 on CentOS Linux 6 x86_64 SCL

I am pleased to announce the immediate availability of MariaDB in
version 10.1 on CentOS Linux 6 x86_64, delivered via a Software
Collection (SCL) built by the SCLo Special Interest Group
(https://wiki.centos.org/SpecialInterestGroup/SCLo).

QuickStart
----------
You can get started in three easy steps:
$ sudo yum install centos-release-scl
$ sudo yum install rh-mariadb101
$ scl enable rh-mariadb101 bash

At this point you should be able to use mariadb just as a normal
application. Here are some examples of commands you can run:
$ service rh-mariadb101-mariadb start
$ mysql
$ mysql_upgrade

In order to view the individual components included in this collection,
you can run:
$ sudo yum list rh-mariadb101\*

For more on MariaDB in general, see https://mariadb.org.

About Software Collections
--------------------------
Software Collections give you the power to build, install, and use
multiple versions of software on the same system, without affecting
system-wide installed packages. Each collection is delivered as a group
of RPMs, with the grouping being done using the name of the collection
as a prefix of all packages that are part of the software collection.

The SCLo SIG in CentOS
----------------------
The Software Collections SIG group is an open community group
co-ordinating the development of the SCL technology, and helping curate
a reference set of collections. In addition to the collection MariaDB
being released here, we also build and deliver databases, web servers,
and language stacks including multiple versions of PostgreSQL, MongoDB,
Apache HTTP Server, NodeJS, Python and others.

You can learn more about Software Collections concepts at:
http://softwarecollections.org
You can find information on the SIG at
https://wiki.centos.org/SpecialInterestGroup/SCLo ; this includes howto
get involved and help with the effort.



MariaDB 10.1 on CentOS Linux 7 x86_64 SCL

I am pleased to announce the immediate availability of MariaDB in
version 10.1 on CentOS Linux 7 x86_64, delivered via a Software
Collection (SCL) built by the SCLo Special Interest Group
(https://wiki.centos.org/SpecialInterestGroup/SCLo).

QuickStart
----------
You can get started in three easy steps:
$ sudo yum install centos-release-scl
$ sudo yum install rh-mariadb101
$ scl enable rh-mariadb101 bash

At this point you should be able to use mariadb just as a normal
application. Here are some examples of commands you can run:
$ systemctl start rh-mariadb101-mariadb
$ mysql
$ mysql_upgrade

In order to view the individual components included in this collection,
you can run:
$ sudo yum list rh-mariadb101\*

Last but not least you can try this Software Collection in Docker. You
can pull the image with the following command:
$ sudo docker pull centos/mariadb-101-centos7

For more on the docker image follow the link to public source
repository: https://github.com/sclorg/mariadb-container

For more on MariaDB in general, see https://mariadb.org.

About Software Collections
--------------------------
Software Collections give you the power to build, install, and use
multiple versions of software on the same system, without affecting
system-wide installed packages. Each collection is delivered as a group
of RPMs, with the grouping being done using the name of the collection
as a prefix of all packages that are part of the software collection.

The SCLo SIG in CentOS
----------------------
The Software Collections SIG group is an open community group
co-ordinating the development of the SCL technology, and helping curate
a reference set of collections. In addition to the collection MariaDB
being released here, we also build and deliver databases, web servers,
and language stacks including multiple versions of PostgreSQL, MongoDB,
Apache HTTP Server, NodeJS, Python and others.

You can learn more about Software Collections concepts at:
http://softwarecollections.org
You can find information on the SIG at
https://wiki.centos.org/SpecialInterestGroup/SCLo ; this includes howto
get involved and help with the effort.



Maven 3.3 on CentOS Linux 7 x86_64 SCL

I am pleased to announce the immediate availability of Maven in version
3.3 on CentOS Linux 7 x86_64, delivered via a Software Collection (SCL)
built by the SCLo Special Interest Group
(https://wiki.centos.org/SpecialInterestGroup/SCLo).

QuickStart
----------
You can get started in three easy steps:
$ sudo yum install centos-release-scl
$ sudo yum install rh-maven33
$ scl enable rh-maven33 bash

At this point you should be able to use maven just as a normal
application. Here are some examples of commands you can run:
$ mvn --version
$ mvn compile
$ mvn clean dependency:copy-dependencies
$ mvn test

In order to view the individual components included in this collection,
you can run:
$ sudo yum list rh-maven33\*

For more on Maven in general, see http://maven.apache.org/.

About Software Collections
--------------------------
Software Collections give you the power to build, install, and use
multiple versions of software on the same system, without affecting
system-wide installed packages. Each collection is delivered as a group
of RPMs, with the grouping being done using the name of the collection
as a prefix of all packages that are part of the software collection.

The SCLo SIG in CentOS
----------------------
The Software Collections SIG group is an open community group
co-ordinating the development of the SCL technology, and helping curate
a reference set of collections. In addition to the collection Maven
being released here, we also build and deliver databases, web servers,
and language stacks including multiple versions of PostgreSQL, MariaDB,
Apache HTTP Server, NodeJS, Python and others.

You can learn more about Software Collections concepts at:
http://softwarecollections.org
You can find information on the SIG at
https://wiki.centos.org/SpecialInterestGroup/SCLo ; this includes howto
get involved and help with the effort.



NodeJS 4 on CentOS Linux 7 x86_64 SCL

I am pleased to announce the immediate availability of NodeJS in version
4 on CentOS Linux 7 x86_64, delivered via a Software Collection (SCL)
built by the SCLo Special Interest Group
(https://wiki.centos.org/SpecialInterestGroup/SCLo).

QuickStart
----------
You can get started in three easy steps:
$ sudo yum install centos-release-scl
$ sudo yum install rh-nodejs4
$ scl enable rh-nodejs4 bash

At this point you should be able to use NodeJS just as a normal
application. Here are some examples of commands you can run:
$ node my-app.js
$ npm install uglify-js --global
$ uglifyjs my-app.js -o my-app.min.jso

In order to view the individual components included in this collection,
including additional NodeJS modules, you can run:
$ sudo yum list rh-nodejs4\*

Last but not least you can try this Software Collection in Docker. You
will be able to pull the image with the following command soon (not yet
ready):
$ sudo docker pull centos/nodejs-4-centos7

For more on the docker image follow the link to public source
repository: https://github.com/sclorg/s2i-nodejs-container

For more on NodeJS in general, see https://nodejs.org.

About Software Collections
--------------------------
Software Collections give you the power to build, install, and use
multiple versions of software on the same system, without affecting
system-wide installed packages. Each collection is delivered as a group
of RPMs, with the grouping being done using the name of the collection
as a prefix of all packages that are part of the software collection.

The SCLo SIG in CentOS
----------------------
The Software Collections SIG group is an open community group
co-ordinating the development of the SCL technology, and helping curate
a reference set of collections. In addition to the collection NodeJS
being released here, we also build and deliver databases, web servers,
and language stacks including multiple versions of PostgreSQL, MariaDB,
Apache HTTP Server, Python, Ruby, Ruby on Rails and others.

You can learn more about Software Collections concepts at:
http://softwarecollections.org
You can find information on the SIG at
https://wiki.centos.org/SpecialInterestGroup/SCLo ; this includes howto
get involved and help with the effort.



PostgreSQL 9.5 on CentOS Linux 6 x86_64 SCL

I am pleased to announce the immediate availability of version 9.5 of
the PostgreSQL server on CentOS Linux 6 x86_64, delivered via a Software
Collection (SCL) built by the SCLo Special Interest Group
(https://wiki.centos.org/SpecialInterestGroup/SCLo).

QuickStart
----------
You can get started in three easy steps:
$ sudo yum install centos-release-scl
$ sudo yum install rh-postgresql95
$ scl enable rh-postgresql95 bash

At this point you should be able to use PostgreSQL just as a normal
application. Here are some examples of commands you can run:
$ postgresql-setup --initdb
$ service rh-postgresql95-postgresql start
$ su postgres -c psql

In order to view the individual components included in this collection,
including additional subpackages, you can run:
$ sudo yum list rh-postgresql95\*

For more on PostgreSQL in general, see http://www.postgresql.org.

About Software Collections
--------------------------
Software Collections give you the power to build, install, and use
multiple versions of software on the same system, without affecting
system-wide installed packages. Each collection is delivered as a group
of RPMs, with the grouping being done using the name of the collection
as a prefix of all packages that are part of the software collection.

The SCLo SIG in CentOS
----------------------
The Software Collections SIG group is an open community group
co-ordinating the development of the SCL technology, and helping curate
a reference set of collections. In addition to the PostgreSQL collection
being released here, we also build and deliver databases, web servers,
and language stacks including multiple versions of MongoDB, MariaDB,
Apache HTTP Server, NodeJS, Python and others.

You can learn more about Software Collections concepts at:
http://softwarecollections.org
You can find information on the SIG at
https://wiki.centos.org/SpecialInterestGroup/SCLo ; this includes howto
get involved and help with the effort.



PostgreSQL 9.5 on CentOS Linux 7 x86_64 SCL

I am pleased to announce the immediate availability of version 9.5 of
the PostgreSQL server on CentOS Linux 7 x86_64, delivered via a Software
Collection (SCL) built by the SCLo Special Interest Group
(https://wiki.centos.org/SpecialInterestGroup/SCLo).

QuickStart
----------
You can get started in three easy steps:
$ sudo yum install centos-release-scl
$ sudo yum install rh-postgresql95
$ scl enable rh-postgresql95 bash

At this point you should be able to use PostgreSQL just as a normal
application. Here are some examples of commands you can run:
$ postgresql-setup --initdb
$ systemctl start rh-postgresql95-postgresql
$ su postgres -c psql

In order to view the individual components included in this collection,
including additional subpackages, you can run:
$ sudo yum list rh-postgresql95\*

Last but not least you can try this Software Collection in Docker. You
can pull the image with the following command:
$ sudo docker pull centos/postgresql-95-centos7

For more on the docker image follow the link to public source
repository: https://github.com/sclorg/postgresql-container

For more on PostgreSQL in general, see http://www.postgresql.org.

About Software Collections
--------------------------
Software Collections give you the power to build, install, and use
multiple versions of software on the same system, without affecting
system-wide installed packages. Each collection is delivered as a group
of RPMs, with the grouping being done using the name of the collection
as a prefix of all packages that are part of the software collection.

The SCLo SIG in CentOS
----------------------
The Software Collections SIG group is an open community group
co-ordinating the development of the SCL technology, and helping curate
a reference set of collections. In addition to the PostgreSQL collection
being released here, we also build and deliver databases, web servers,
and language stacks including multiple versions of MongoDB, MariaDB,
Apache HTTP Server, NodeJS, Python and others.

You can learn more about Software Collections concepts at:
http://softwarecollections.org
You can find information on the SIG at
https://wiki.centos.org/SpecialInterestGroup/SCLo ; this includes howto
get involved and help with the effort.



Python 3.5 on CentOS Linux 7 x86_64 SCL

I am pleased to announce the immediate availability of Python in version
3.5 on CentOS Linux 7 x86_64, delivered via a Software Collection (SCL)
built by the SCLo Special Interest Group
(https://wiki.centos.org/SpecialInterestGroup/SCLo).

QuickStart
----------
You can get started in three easy steps:
$ sudo yum install centos-release-scl
$ sudo yum install rh-python35
$ scl enable rh-python35 bash

At this point you should be able to use python just as a normal
application. Here are some examples of commands you can run:
$ python my-app.py
$ sudo easy_install Flask
$ sudo easy_install Django

In order to view the individual components included in this collection,
including additional python modules, you can run:
$ sudo yum list rh-python35\*

Last but not least you can try this Software Collection in Docker. You
can pull the image with the following command:
$ sudo docker pull centos/python-35-centos7

For more on the docker image follow the link to public source
repository: https://github.com/sclorg/s2i-python-container

For more on Python in general, see https://www.python.org/.

About Software Collections
--------------------------
Software Collections give you the power to build, install, and use
multiple versions of software on the same system, without affecting
system-wide installed packages. Each collection is delivered as a group
of RPMs, with the grouping being done using the name of the collection
as a prefix of all packages that are part of the software collection.

The SCLo SIG in CentOS
----------------------
The Software Collections SIG group is an open community group
co-ordinating the development of the SCL technology, and helping curate
a reference set of collections. In addition to the collection Python
being released here, we also build and deliver databases, web servers,
and language stacks including multiple versions of PostgreSQL, MariaDB,
Apache HTTP Server, NodeJS, Ruby, Ruby on Rails and others.

You can learn more about Software Collections concepts at:
http://softwarecollections.org
You can find information on the SIG at
https://wiki.centos.org/SpecialInterestGroup/SCLo ; this includes howto
get involved and help with the effort.



Ruby 2.3 on CentOS Linux 7 x86_64 SCL

I am pleased to announce the immediate availability of Ruby in version
2.3 on CentOS Linux 7 x86_64, delivered via a Software Collection (SCL)
built by the SCLo Special Interest Group
(https://wiki.centos.org/SpecialInterestGroup/SCLo).

QuickStart
----------
You can get started in three easy steps:
$ sudo yum install centos-release-scl
$ sudo yum install rh-ruby23
$ scl enable rh-ruby23 bash

At this point you should be able to use ruby just as a normal
application. Here are some examples of commands you can run:
$ ruby my-app.rb
$ gem install activeresource
$ bundle
$ irb

In order to view the individual components included in this collection,
you can run:
$ sudo yum list rh-ruby23\*

Last but not least you can try this Software Collection in Docker. You
can pull the image with the following command:
$ sudo docker pull centos/ruby-23-centos7

For more on the docker image follow the link to public source
repository: https://github.com/sclorg/s2i-ruby-container

For more on Ruby in general, see https://www.ruby-lang.org or
https://rubygems.org.

About Software Collections
--------------------------
Software Collections give you the power to build, install, and use
multiple versions of software on the same system, without affecting
system-wide installed packages. Each collection is delivered as a group
of RPMs, with the grouping being done using the name of the collection
as a prefix of all packages that are part of the software collection.

The SCLo SIG in CentOS
----------------------
The Software Collections SIG group is an open community group
co-ordinating the development of the SCL technology, and helping curate
a reference set of collections. In addition to the collection Ruby being
released here, we also build and deliver databases, web servers, and
language stacks including multiple versions of PostgreSQL, MariaDB,
Apache HTTP Server, NodeJS, Python and others.

You can learn more about Software Collections concepts at:
http://softwarecollections.org
You can find information on the SIG at
https://wiki.centos.org/SpecialInterestGroup/SCLo ; this includes howto
get involved and help with the effort.