Hey,
So to do the reinstall of xe-linux-distribution you need this link.
http://e584a326fabd876c3b87-5cc4f7b75bc093abc6d4ecc36a7bc696.r2.cf1.rackcdn.com/xs-tools-6.2.0.zip
Unzip it, there is a linux folder and the binary installers are in there.
Hey,
So to do the reinstall of xe-linux-distribution you need this link.
http://e584a326fabd876c3b87-5cc4f7b75bc093abc6d4ecc36a7bc696.r2.cf1.rackcdn.com/xs-tools-6.2.0.zip
Unzip it, there is a linux folder and the binary installers are in there.
A lot of customers note that sometimes, the exact version of ioncube is not available for their specific version of PHP in their repository for their OS.
This isn’t really a big deal, and is actually something that can be manually installed.
cd ~ _php=$(php -r "echo PHP_MAJOR_VERSION.'.'.PHP_MINOR_VERSION;"); echo $_php wget http://downloads3.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz tar -zxf ioncube_loaders_lin_x86-64.tar.gz ioncube/ioncube_loader_lin_$_php.so chown -R root. ioncube \mv ioncube/ioncube_loader_lin_$_php.so /usr/lib64/php/modules/ echo "zend_extension=/usr/lib64/php/modules/ioncube_loader_lin_$_php.so" > /etc/php.d/01a-ioncube-loader.ini
Thanks to Alex Drapkin for this.
This is something quite easy to do.
Check that the deflate module is installed
# apachectl -M | grep deflate deflate_module (shared) Syntax OK
Check the content encoding is enabled by using curl on the site
# curl -I -H 'Accept-Encoding: gzip,deflate' http://somewebsite.com/ HTTP/1.1 200 OK Date: Fri, 23 Jan 2017 11:02:16 GMT Server: Apache X-Pingback: http://somewebsite.com/somesite.php X-Powered-By: rabbits Connection: close Content-Type: text/html; charset=UTF-8
Create a file called /etc/httpd/conf.d/deflate.conf
<ifmodule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript
DeflateCompressionLevel 8
</ifmodule>
Restart apache2
/etc/init.d/httpd reload Reloading httpd:
retest the gzip content-encoding directive with curl using Accept-Encoding: gzip directive.
# curl -I -H 'Accept-Encoding: gzip,deflate' http://somesite.com/ HTTP/1.1 200 OK Date: Fri, 25 Sep 2015 00:04:26 GMT Server: Apache X-Pingback: http://somesite.com/somesite.php X-Powered-By: muppets Vary: Accept-Encoding Content-Encoding: gzip <---- this line indicates that compression is active Content-Length: 20 Connection: close Content-Type: text/html; charset=UTF-8
For this, thanks to odin.com
Step 1
sudo su - vi /etc/nginx/conf.d/yourconfig.conf step 2 limit_conn_zone $binary_remote_addr zone=concurrent:10m; limit_req_zone $binary_remote_addr zone=somefunction:10m rate=1r/s;
# you don't need this first line bit below, i'm just showing where to put this in nginx config
server {
location /parse/functions/somefunction {
limit_req zone=somefunction burst=5 nodelay;
limit_conn concurrent 1;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://localhost:1337/parse/functions/sendGift;
proxy_ssl_session_reuse off;
proxy_set_header Host $http_host;
proxy_redirect off;
}
# you don't need this bit, i'm just showing where to put this in nginx config
}
nginx -t service nginx restart
if (metric['body_match'] regex 'Error establishing a database connection') {
return new AlarmStatus(CRITICAL, 'Database connection lost, returning CRITICAL.');
}
Simples.
So a customer wanted us to convert their PHP site to use the php-fpm. The reason was, that php-fpm can run as it’s own user and group, and isn’t limited in it’s execution in the same way that apache is on the filesystem with the regular version of php.
This is how I achieved it.
yum install php-fpm.x86_64 php56u-fpm-httpd.noarch # for some reason if you get a weird error install them seperately yum install php-fpm.x86_64 yum install php56u-fpm-httpd.noarch
Then you will need to run the following:
systemctl enable php-fpm systemctl enable httpd systemctl start php-fpm # check the status systemctl status php-fpm
If necessary like it was for me change /etc/php-fpm.d/www.conf to reflect the following
listen = /var/run/php-fpm/default.sock listen.owner = apache listen.group = apache listen.mode = 0660 # Also make sure you set the correct execution group, the listen socket perms are different # as I have found out from experience ; Unix user/group of processes ; Note: The user is mandatory. If the group is not set, the default user's group ; will be used. user = sftpusercangohere group = apache
If necessary, you will want to use a Custom user/group for php-fpm. This is one of the advantages of using FPM.
Also, you can use EVENT MPM instead of PREFORK MPM, it’s more efficient with fpm, and certainly worth considering. This step is optional, and not required for fpm to work
# Comment out this line #LoadModule mpm_prefork_module modules/mod_mpm_prefork.so #Uncomment the following LoadModule mpm_event_module modules/mod_mpm_event.so
Edit your httpd.conf file in /etc/htpd/conf.d/* or /etc/httpd/httpd.conf and ensure in side the Virtualhost directive you have the following set:
ProxyPassMatch ^/(.*\.php)$ fcgi://127.0.0.1:9000/var/www/vhosts/yourwebsite.com/html/$1
Where html is the documentroot of the site.
This article is kind of complete but still a bit drafty.
So, I’ve been meaning to do this for a while. I’m sure your all familiar with this crappy oneliner where you’ll check the hits using wc -l against a webserver log for a given hour and use for i in seq or similar to get the last 10 minutes data, or the last 59 minutes. But getting hours and days is a bit harder. You need some additional nesting, and, it isn’t difficult for you to do at all!
for i in 0{1..9}; do echo "16/Jan/2017:06:$i"; grep "16/Jan/2017:06:$i" /var/log/httpd/soemsite.com-access_log | wc -l ; done
I improved this one, quite significantly by adding an additional for j, for the hour, and adding an additional 0 in front of {1..9}, this properly is matching the Apache2 log format and allows me to increment through all the hours of the day. to present ;-D All that is missing is some error checking when the last date in the file is, im thinking a tail and grep for the timecode from the log should be sufficient.
Here is the proud oneliner I made for this!
for j in 0{1..9}; do for i in 0{1..9} {10..59}; do echo "16/Jan/2017:$j:$i"; grep "16/Jan/2017:06:$i" /var/log/httpd/website.com-access_log | wc -l ; done; done
Every now and then at Rackspace, as with any hosting provider. We do occasionally have issues where customers have left themselves open to attack. In such cases sometimes customers find their server is sending spam email, and is prone to other malware occurring on the Rackspace Network.
Due to AUP and other obligations, it can become a critical issue for both the uptime, and reputation of your site. In many cases, customers do not necessarily have forensic experience, and will struggle very hard to remove the malware. In some cases, the malware keeps on coming back, or, like in my customers case, you could see lots of extra network traffic still using tcpdump locally on the box.
Enter, netfilter, part of the Linux Kernel, and it is able, if you ask it, to track down where packets are coming from, on a process level. This is really handy if you have an active malware or spam process on your system, since you can find out exactly where it is, before doing more investigation. Such a method, also allows you to trace down any potential false positives, since the packet address is always included, you get a really nice overview.
To give you an idea, I needed to install a kernel with debuginfo, just to do this troubleshooting, however this depends on your distribution.
Updating your Kernel may be necessary to use netfilter debug
$yum history info 18
Transaction performed with:
Installed rpm-4.11.3-21.el7.x86_64 @base
Installed yum-3.4.3-150.el7.centos.noarch @base
Installed yum-plugin-auto-update-debug-info-1.1.31-40.el7.noarch @base
Installed yum-plugin-fastestmirror-1.1.31-40.el7.noarch @base
Packages Altered:
Updated kernel-debuginfo-4.4.40-202.el7.centos.x86_64 @base-debuginfo
Update 4.4.42-202.el7.centos.x86_64 @base-debuginfo
Updated kernel-debuginfo-common-x86_64-4.4.40-202.el7.centos.x86_64 @base-debuginfo
Update 4.4.42-202.el7.centos.x86_64 @base-debuginfo
You could use a similar process using netfilter.ip.local_in, I suspect.
The Script
#! /usr/bin/env stap
# Print a trace of threads sending IP packets (UDP or TCP) to a given
# destination port and/or address. Default is unfiltered.
global the_dport = 0 # override with -G the_dport=53
global the_daddr = "" # override with -G the_daddr=127.0.0.1
probe netfilter.ip.local_out {
if ((the_dport == 0 || the_dport == dport) &&
(the_daddr == "" || the_daddr == daddr))
printf("%s[%d] sent packet to %s:%d\n", execname(), tid(), daddr, dport)
}
Executing the Script
[root@pirax-test-new hacked]# chmod +x dns_probe.sh [root@pirax-test-new hacked]# ./dns_probe.sh Missing separate debuginfos, use: debuginfo-install kernel-3.10.0-514.2.2.el7.x86_64 swapper/3[0] sent packet to 78.136.44.6:0 sshd[25421] sent packet to 134.1.1.1:55336 sshd[25421] sent packet to 134.1.1.1:55336 swapper/3[0] sent packet to 78.136.44.6:0
I was a little bit concerned about the above output, it looks like swapper with pid 3, is doing something it wouldn’t normally do. Upon further inspection though, we find it is just the outgoing cloud monitoring call;
# nslookup 78.136.44.6 Server: 83.138.151.81 Address: 83.138.151.81#53 Non-authoritative answer: 6.44.136.78.in-addr.arpa name = collector-lon-78-136-44-6.monitoring.rackspacecloud.com. Authoritative answers can be found from:
### Section 1: Global Environment # # The directives in this section affect the overall operation of Apache, # such as the number of concurrent requests it can handle or where it # can find its configuration files. # # # Don't give away too much information about all the subcomponents # we are running. Comment out this line if you don't mind remote sites # finding out what major optional modules you are running ServerTokens OS
These instructions only apply in specific cases. Specifically CentOS machines, running in the Rackspace Cloud, IUS the Rackspace provided repo, provides several things not usually available within the CentOS repo, without you manually compiling more recent versions. One of them is the latest version of PHP7.0 and PHP7.1.
I wanted to quickly document the process, since it is a relatively simple process, and, can actually be done without any maintenance window, if you know what your doing, with very minimal, (if any) disruption to running sites. an apachectl graceful, actually, should be enough. Since apachectl gracefully restarts apache httpd, the downtime you’ll see will be super minimal. Expect nobody to notice you upgraded to PHP7 if you do this right.
If you do this incorrectly, you will break the PHP installation, and worse, break all of the sites using mod_php. Lets take a look at the steps:
Step 1. Check available PHP modules provided by presently configured REPO
root@server3 ~]# yum search php7 Loaded plugins: fastestmirror, versionlock Loading mirror speeds from cached hostfile drivesrvr | 2.2 kB 00:00 ============================================================================================================================= N/S Matched: php7 ============================================================================================================================== php70u-debuginfo.x86_64 : Debug information for package php70u php70u-ioncube-loader-debuginfo.x86_64 : Debug information for package php70u-ioncube-loader php70u-pecl-amqp-debuginfo.x86_64 : Debug information for package php70u-pecl-amqp php70u-pecl-apcu-debuginfo.x86_64 : Debug information for package php70u-pecl-apcu php70u-pecl-igbinary-debuginfo.x86_64 : Debug information for package php70u-pecl-igbinary php70u-pecl-imagick-debuginfo.x86_64 : Debug information for package php70u-pecl-imagick php70u-pecl-redis-debuginfo.x86_64 : Debug information for package php70u-pecl-redis php70u-pecl-smbclient-debuginfo.x86_64 : Debug information for package php70u-pecl-smbclient php70u-pecl-xdebug-debuginfo.x86_64 : Debug information for package php70u-pecl-xdebug php71u-debuginfo.x86_64 : Debug information for package php71u php71u-pecl-apcu-debuginfo.x86_64 : Debug information for package php71u-pecl-apcu php71u-pecl-igbinary-debuginfo.x86_64 : Debug information for package php71u-pecl-igbinary php71u-pecl-redis-debuginfo.x86_64 : Debug information for package php71u-pecl-redis php71u-pecl-xdebug-debuginfo.x86_64 : Debug information for package php71u-pecl-xdebug sclo-php70-php-pecl-propro-devel.x86_64 : sclo-php70-php-pecl-propro developer files (header) sclo-php70-php-pecl-raphf-devel.x86_64 : sclo-php70-php-pecl-raphf developer files (header) uwsgi-plugin-php70u-debuginfo.x86_64 : Debug information for package uwsgi-plugin-php70u mod_php70u.x86_64 : PHP module for the Apache HTTP Server mod_php71u.x86_64 : PHP module for the Apache HTTP Server php70u-bcmath.x86_64 : A module for PHP applications for using the bcmath library php70u-cli.x86_64 : Command-line interface for PHP php70u-common.x86_64 : Common files for PHP php70u-dba.x86_64 : A database abstraction layer module for PHP applications php70u-dbg.x86_64 : The interactive PHP debugger php70u-devel.x86_64 : Files needed for building PHP extensions php70u-embedded.x86_64 : PHP library for embedding in applications php70u-enchant.x86_64 : Enchant spelling extension for PHP applications php70u-fpm.x86_64 : PHP FastCGI Process Manager php70u-fpm-httpd.noarch : Apache HTTP Server configuration for PHP-FPM php70u-fpm-nginx.noarch : Nginx configuration for PHP-FPM php70u-gd.x86_64 : A module for PHP applications for using the gd graphics library php70u-gmp.x86_64 : A module for PHP applications for using the GNU MP library php70u-imap.x86_64 : A module for PHP applications that use IMAP php70u-interbase.x86_64 : A module for PHP applications that use Interbase/Firebird databases php70u-intl.x86_64 : Internationalization extension for PHP applications php70u-ioncube-loader.x86_64 : IonCube Loader provides PHP Modules to read IonCube Encoded Files php70u-json.x86_64 : JavaScript Object Notation extension for PHP php70u-ldap.x86_64 : A module for PHP applications that use LDAP php70u-mbstring.x86_64 : A module for PHP applications which need multi-byte string handling php70u-mcrypt.x86_64 : Standard PHP module provides mcrypt library support php70u-mysqlnd.x86_64 : A module for PHP applications that use MySQL databases php70u-odbc.x86_64 : A module for PHP applications that use ODBC databases php70u-opcache.x86_64 : The Zend OPcache php70u-pdo.x86_64 : A database access abstraction module for PHP applications php70u-pdo-dblib.x86_64 : PDO driver Microsoft SQL Server and Sybase databases php70u-pear.noarch : PHP Extension and Application Repository framework php70u-pecl-amqp.x86_64 : Communicate with any AMQP compliant server php70u-pecl-apcu.x86_64 : APC User Cache php70u-pecl-apcu-devel.x86_64 : APCu developer files (header) php70u-pecl-apcu-panel.noarch : APCu control panel php70u-pecl-igbinary.x86_64 : Replacement for the standard PHP serializer php70u-pecl-igbinary-devel.x86_64 : Igbinary developer files (header) php70u-pecl-imagick.x86_64 : Provides a wrapper to the ImageMagick library php70u-pecl-redis.x86_64 : Extension for communicating with the Redis key-value store php70u-pecl-smbclient.x86_64 : PHP wrapper for libsmbclient php70u-pecl-xdebug.x86_64 : PECL package for debugging PHP scripts php70u-pgsql.x86_64 : A PostgreSQL database module for PHP php70u-process.x86_64 : Modules for PHP script using system process interfaces php70u-pspell.x86_64 : A module for PHP applications for using pspell interfaces php70u-recode.x86_64 : A module for PHP applications for using the recode library php70u-snmp.x86_64 : A module for PHP applications that query SNMP-managed devices php70u-soap.x86_64 : A module for PHP applications that use the SOAP protocol php70u-tidy.x86_64 : Standard PHP module provides tidy library support php70u-xml.x86_64 : A module for PHP applications which use XML php70u-xmlrpc.x86_64 : A module for PHP applications which use the XML-RPC protocol php71u-bcmath.x86_64 : A module for PHP applications for using the bcmath library php71u-cli.x86_64 : Command-line interface for PHP php71u-common.x86_64 : Common files for PHP php71u-dba.x86_64 : A database abstraction layer module for PHP applications php71u-dbg.x86_64 : The interactive PHP debugger php71u-devel.x86_64 : Files needed for building PHP extensions php71u-embedded.x86_64 : PHP library for embedding in applications php71u-enchant.x86_64 : Enchant spelling extension for PHP applications php71u-fpm.x86_64 : PHP FastCGI Process Manager php71u-fpm-httpd.noarch : Apache HTTP Server configuration for PHP-FPM php71u-fpm-nginx.noarch : Nginx configuration for PHP-FPM php71u-gd.x86_64 : A module for PHP applications for using the gd graphics library php71u-gmp.x86_64 : A module for PHP applications for using the GNU MP library php71u-imap.x86_64 : A module for PHP applications that use IMAP php71u-interbase.x86_64 : A module for PHP applications that use Interbase/Firebird databases php71u-intl.x86_64 : Internationalization extension for PHP applications php71u-json.x86_64 : JavaScript Object Notation extension for PHP php71u-ldap.x86_64 : A module for PHP applications that use LDAP php71u-mbstring.x86_64 : A module for PHP applications which need multi-byte string handling php71u-mcrypt.x86_64 : Standard PHP module provides mcrypt library support php71u-mysqlnd.x86_64 : A module for PHP applications that use MySQL databases php71u-odbc.x86_64 : A module for PHP applications that use ODBC databases php71u-opcache.x86_64 : The Zend OPcache php71u-pdo.x86_64 : A database access abstraction module for PHP applications php71u-pdo-dblib.x86_64 : PDO driver Microsoft SQL Server and Sybase databases php71u-pecl-apcu.x86_64 : APC User Cache php71u-pecl-apcu-devel.x86_64 : APCu developer files (header) php71u-pecl-apcu-panel.noarch : APCu control panel php71u-pecl-igbinary.x86_64 : Replacement for the standard PHP serializer php71u-pecl-igbinary-devel.x86_64 : Igbinary developer files (header) php71u-pecl-redis.x86_64 : Extension for communicating with the Redis key-value store php71u-pecl-xdebug.x86_64 : PECL package for debugging PHP scripts php71u-pgsql.x86_64 : A PostgreSQL database module for PHP php71u-process.x86_64 : Modules for PHP script using system process interfaces php71u-pspell.x86_64 : A module for PHP applications for using pspell interfaces php71u-recode.x86_64 : A module for PHP applications for using the recode library php71u-snmp.x86_64 : A module for PHP applications that query SNMP-managed devices php71u-soap.x86_64 : A module for PHP applications that use the SOAP protocol php71u-tidy.x86_64 : Standard PHP module provides tidy library support php71u-xml.x86_64 : A module for PHP applications which use XML php71u-xmlrpc.x86_64 : A module for PHP applications which use the XML-RPC protocol sclo-php70-php-pecl-apcu.x86_64 : APC User Cache sclo-php70-php-pecl-apcu-bc.x86_64 : APCu Backwards Compatibility Module sclo-php70-php-pecl-apcu-devel.x86_64 : APCu developer files (header) sclo-php70-php-pecl-apfd.x86_64 : Always Populate Form Data sclo-php70-php-pecl-http.x86_64 : Extended HTTP support sclo-php70-php-pecl-http-devel.x86_64 : Extended HTTP support developer files (header) sclo-php70-php-pecl-lzf.x86_64 : Extension to handle LZF de/compression sclo-php70-php-pecl-mongodb.x86_64 : MongoDB driver for PHP sclo-php70-php-pecl-propro.x86_64 : Property proxy sclo-php70-php-pecl-raphf.x86_64 : Resource and persistent handles factory sclo-php70-php-pecl-selinux.x86_64 : SELinux binding for PHP scripting language sclo-php70-php-pecl-solr2.x86_64 : Object oriented API to Apache Solr sclo-php70-php-pecl-uploadprogress.x86_64 : An extension to track progress of a file upload sclo-php70-php-pecl-uuid.x86_64 : Universally Unique Identifier extension for PHP sclo-php70-php-pecl-xattr.x86_64 : Extended attributes sclo-php70-php-pecl-xdebug.x86_64 : PECL package for debugging PHP scripts uwsgi-plugin-php70u.x86_64 : uWSGI - Plugin for PHP support Name and summary matches only, use "search all" for everything.
As we can see php7 is there. Great. But what about the php packages they have already? That’s coming up next.
Step 2. Check presence of plugin replace, we’ll use this to upgrade to mod_php70 once we’re ready
# Locate plugin replace is available yum search yum-plugin-replace # Install yum plugin replace if available (otherwise this will not work for you as easily) yum install yum-plugin-replace
Step 3. Run a mock yum replace
# yum replace php53u --replace-with mod_php70u.x86_64 Loaded plugins: fastestmirror, replace, versionlock Replacing packages takes time, please be patient... Loading mirror speeds from cached hostfile drivesrvr | 2.2 kB 00:00 Error: No Package Matching mod_php70u.x86_64 [root@server3 ~]# yum replace php53u --replace-with mod_php70u Loaded plugins: fastestmirror, replace, versionlock Replacing packages takes time, please be patient... Loading mirror speeds from cached hostfile drivesrvr | 2.2 kB 00:00 WARNING: Unable to resolve all providers: ['config(php53u-common)', 'curl.so()(64bit)', 'fileinfo.so()(64bit)', 'json.so()(64bit)', 'phar.so()(64bit)', 'php-api', 'php-pecl(Fileinfo)', 'php-pecl(phar)', 'php-pecl(zip)', 'php-pecl-Fileinfo', 'php-pecl-phar', 'php-pecl-zip', 'php-zend-abi', 'php53(api)', 'php53(language)', 'php53(zend-abi)', 'php53-api', 'php53-bz2', 'php53-calendar', 'php53-common', 'php53-ctype', 'php53-curl', 'php53-date', 'php53-exif', 'php53-filter', 'php53-ftp', 'php53-gettext', 'php53-gmp', 'php53-hash', 'php53-iconv', 'php53-json', 'php53-libxml', 'php53-openssl', 'php53-pcre', 'php53-pecl(Fileinfo)', 'php53-pecl(json)', 'php53-pecl(phar)', 'php53-pecl(zip)', 'php53-pecl-Fileinfo', 'php53-pecl-json', 'php53-pecl-phar', 'php53-pecl-zip', 'php53-posix', 'php53-reflection', 'php53-session', 'php53-shmop', 'php53-simplexml', 'php53-sockets', 'php53-spl', 'php53-sqlite3', 'php53-sysvmsg', 'php53-sysvsem', 'php53-sysvshm', 'php53-tokenizer', 'php53-wddx', 'php53-zend-abi', 'php53-zip', 'php53-zlib', 'php53u(api)', 'php53u(language)', 'php53u(zend-abi)', 'php53u-api', 'php53u-bz2', 'php53u-calendar', 'php53u-ctype', 'php53u-curl', 'php53u-date', 'php53u-exif', 'php53u-fileinfo', 'php53u-filter', 'php53u-ftp', 'php53u-gettext', 'php53u-gmp', 'php53u-hash', 'php53u-iconv', 'php53u-json', 'php53u-libxml', 'php53u-openssl', 'php53u-pcre', 'php53u-pecl(Fileinfo)', 'php53u-pecl(json)', 'php53u-pecl(phar)', 'php53u-pecl(zip)', 'php53u-pecl-Fileinfo', 'php53u-pecl-json', 'php53u-pecl-phar', 'php53u-pecl-zip', 'php53u-posix', 'php53u-reflection', 'php53u-session', 'php53u-shmop', 'php53u-simplexml', 'php53u-sockets', 'php53u-spl', 'php53u-sqlite3', 'php53u-sysvmsg', 'php53u-sysvsem', 'php53u-sysvshm', 'php53u-tokenizer', 'php53u-wddx', 'php53u-zend-abi', 'php53u-zip', 'php53u-zlib', 'zip.so()(64bit)', 'php53u-common', 'php53u-common(x86-64)', 'php53-cgi', 'php53-cli', 'php53-pcntl', 'php53-readline', 'php53u-cgi', 'php53u-pcntl', 'php53u-readline', 'php53u-cli', 'php53u-cli(x86-64)', 'config(php53u-pdo)', 'pdo.so()(64bit)', 'pdo_sqlite.so()(64bit)', 'php53-pdo', 'php53-pdo-abi', 'php53-pdo_sqlite', 'php53u-pdo-abi', 'php53u-pdo', 'php53u-pdo(x86-64)', 'config(php53u-mysql)', 'mysql.so()(64bit)', 'mysqli.so()(64bit)', 'pdo_mysql.so()(64bit)', 'php-mysql', 'php53-mysql', 'php53-mysqli', 'php53u-mysqli', 'php53u-mysql', 'php53u-mysql(x86-64)', 'config(php53u)', 'libphp5.so()(64bit)', 'mod_php53u', 'php53', 'php53u', 'php53u(x86-64)', 'libphp5.so()(64bit)', 'php53-zts', 'php53u-zts', 'php53u-zts(x86-64)'] This may be normal depending on the package. Continue? [y/N] y Resolving Dependencies --> Running transaction check ---> Package mod_php70u.x86_64 0:7.0.14-3.ius.centos6 will be installed ---> Package php53u.x86_64 0:5.3.29-1.ius.centos6 will be erased ---> Package php53u-cli.x86_64 0:5.3.29-1.ius.centos6 will be erased ---> Package php53u-common.x86_64 0:5.3.29-1.ius.centos6 will be erased ---> Package php53u-mysql.x86_64 0:5.3.29-1.ius.centos6 will be erased ---> Package php53u-pdo.x86_64 0:5.3.29-1.ius.centos6 will be erased ---> Package php53u-pear.noarch 1:1.9.4-3.ius.centos6 will be erased ---> Package php53u-zts.x86_64 0:5.3.29-1.ius.centos6 will be erased ---> Package php70u-cli.x86_64 0:7.0.14-3.ius.centos6 will be installed ---> Package php70u-common.x86_64 0:7.0.14-3.ius.centos6 will be installed ---> Package php70u-gmp.x86_64 0:7.0.14-3.ius.centos6 will be installed ---> Package php70u-json.x86_64 0:7.0.14-3.ius.centos6 will be installed ---> Package php70u-mysqlnd.x86_64 0:7.0.14-3.ius.centos6 will be installed ---> Package php70u-pdo.x86_64 0:7.0.14-3.ius.centos6 will be installed ---> Package php70u-pear.noarch 1:1.10.1-2.ius.centos6 will be installed ---> Package php70u-process.x86_64 0:7.0.14-3.ius.centos6 will be installed ---> Package php70u-xml.x86_64 0:7.0.14-3.ius.centos6 will be installed --> Finished Dependency Resolution Dependencies Resolved ============================================================================================================================================================================================================================================================================== Package Arch Version Repository Size ============================================================================================================================================================================================================================================================================== Installing: mod_php70u x86_64 7.0.14-3.ius.centos6 ius 2.7 M php70u-cli x86_64 7.0.14-3.ius.centos6 ius 4.0 M php70u-common x86_64 7.0.14-3.ius.centos6 ius 1.1 M php70u-gmp x86_64 7.0.14-3.ius.centos6 ius 65 k php70u-json x86_64 7.0.14-3.ius.centos6 ius 62 k php70u-mysqlnd x86_64 7.0.14-3.ius.centos6 ius 221 k php70u-pdo x86_64 7.0.14-3.ius.centos6 ius 115 k php70u-pear noarch 1:1.10.1-2.ius.centos6 ius 362 k php70u-process x86_64 7.0.14-3.ius.centos6 ius 72 k php70u-xml x86_64 7.0.14-3.ius.centos6 ius 183 k Removing: php53u x86_64 5.3.29-1.ius.centos6 @ius 4.4 M php53u-cli x86_64 5.3.29-1.ius.centos6 @ius 7.9 M php53u-common x86_64 5.3.29-1.ius.centos6 @ius 3.4 M php53u-mysql x86_64 5.3.29-1.ius.centos6 @ius 219 k php53u-pdo x86_64 5.3.29-1.ius.centos6 @ius 126 k php53u-pear noarch 1:1.9.4-3.ius.centos6 @ius 2.2 M php53u-zts x86_64 5.3.29-1.ius.centos6 @ius 4.6 M Transaction Summary ============================================================================================================================================================================================================================================================================== Install 10 Package(s) Remove 7 Package(s) Total download size: 8.8 M Is this ok [y/N]: N Exiting on user Command Your transaction was saved, rerun it with: yum load-transaction /tmp/yum_save_tx-2017-01-13-10-57L3T7JK.yumtx You have mail in /var/spool/mail/root
Naturally, if you are satisfied that you do not need php53u-zts, the only php module which is not supported by PHP7, then you can proceed.
If you are wondering what ZTS is, The php-zts package contains a module for use with the Apache HTTP
Server which can operate under a threaded server processing model. (source pbone.net CentOS REPO)
ZTS is not required for MPM prefork, and is generally only used with MPM worker, afaik. So as long as your using prefork apache httpd your fine;
# apachectl -l Compiled in modules: core.c prefork.c http_core.c mod_so.c
In our case prefork is being used, not worker. So I don’t think ZTS being missing is going to affect us. So we can proceed with typing ‘y’.
And’ thats pretty much how you upgrade to php7, it’s really easy with Rackspace IUS.