MRatWork Forum by Mustafa Ramadhan

Sawo Project - Kloxo-MR Discussions => Kloxo-MR Technical Helps => Topic started by: sandipcd on 2016-04-24, 08:10:08

Title: PHP 5.5 with Drupal
Post by: sandipcd on 2016-04-24, 08:10:08
I am using Drupal 7. It needs php 5.5. 

So do I use php55u_ or php55w_ ?
And what is the difference ?

And which PHP type is suitable ? suphp, suphp_event, php-fpm_event or others ?
I have read php requirements for drupal, but not found these - https://www.drupal.org/requirements/php#7

Please help.
Title: Re: PHP 5.5 with Drupal
Post by: MRatWork on 2016-04-25, 01:23:51
Depend on Kloxo-MR version. In Kloxo-MR 7.0, just install 'multiple php', select 'php55m' in 'php used' where 'php branch' stay in 'php 5.4u'.
Title: Re: PHP 5.5 with Drupal
Post by: sandipcd on 2016-05-31, 07:29:25
Inside Customer account in 'PHP Configure', under 'Multiple PHP Already Installed', now it is showing 'php54m php55m'. But under Domain in the 'Web / PHP Selector' it is only showing Default PHP selected. It is not showing to select PHP version. So, how to do this ?

Have run the script 'sh /script/fixphp', 'sh /script/restart-web -y', 'service httpd restart'. But not successful.
Title: Re: PHP 5.5 with Drupal
Post by: MRatWork on 2016-05-31, 07:46:45
Add php in 'multiple php install' under 'webserver configure'.
Title: Re: PHP 5.5 with Drupal
Post by: sandipcd on 2016-05-31, 07:51:35
Already added. Please see the print screen.
Title: Re: PHP 5.5 with Drupal
Post by: MRatWork on 2016-05-31, 09:40:06
Update your Kloxo-MR 7.0 to latest one until you found 'web / php selector' change to 'web options'.
Title: Re: PHP 5.5 with Drupal
Post by: sandipcd on 2016-05-31, 12:39:31
Using Kloxo-MR: 7.0.0.b-2016050403 version. Is there any new release after this ?

Let me know the command to update Kloxo-Mr ?
Title: Re: PHP 5.5 with Drupal
Post by: MRatWork on 2016-05-31, 13:40:18
Using Kloxo-MR: 7.0.0.b-2016050403 version. Is there any new release after this ?

Let me know the command to update Kloxo-Mr ?
Yum clean all; yum update -y; sh /script/cleanup.
Title: Re: PHP 5.5 with Drupal
Post by: sandipcd on 2016-05-31, 16:07:24
I have run the command 3 times 'yum clean all; yum update -y; sh /script/cleanup'.

Now it is showing  'web features' under 'Domain Home'. Also have selected in 'PHP Selected' 'php55m'. When a phpinfo.php file is created under this domain name, still it is showing that using php 5.4.45. Here you can see - http://openid11.tk/phpinfo.php

So, now how to use this php55m in drupal website ?
Title: Re: PHP 5.5 with Drupal
Post by: Wibowo on 2016-05-31, 20:02:09
I have run the command 3 times 'yum clean all; yum update -y; sh /script/cleanup'.

Now it is showing  'web features' under 'Domain Home'. Also have selected in 'PHP Selected' 'php55m'. When a phpinfo.php file is created under this domain name, still it is showing that using php 5.4.45. Here you can see - http://openid11.tk/phpinfo.php

So, now how to use this php55m in drupal website ?

try to restart the web server with 'sh /script/restart-web -y'
Title: Re: PHP 5.5 with Drupal
Post by: sandipcd on 2016-06-01, 07:41:37
Have run the command 'sh /script/restart-web -y'.
And also have run 'sh /script/fixphp'; 'sh /script/fixweb-all'; 'sh /script/fixwebcache'; 'sh /script/restart-php-fpm'; 'sh /script/restart-web'.
But still it does not fix, it is showing using php 5.4.45. Here you can see - http://openid11.tk/phpinfo.php. Please see the print screen attached.
Title: Re: PHP 5.5 with Drupal
Post by: MRatWork on 2016-06-01, 09:03:48
Have run the command 'sh /script/restart-web -y'.
And also have run 'sh /script/fixphp'; 'sh /script/fixweb-all'; 'sh /script/fixwebcache'; 'sh /script/restart-php-fpm'; 'sh /script/restart-web'.
But still it does not fix, it is showing using php 5.4.45. Here you can see - http://openid11.tk/phpinfo.php. Please see the print screen attached.
Did you tick 'enable multiple php' in 'admin > servers > localhost > php configure'?.
Title: Re: PHP 5.5 with Drupal
Post by: sandipcd on 2016-06-01, 12:08:11
Yes, I have tick 'Multiple PHP Enable (for 'php-fpm')' in admin > Servers > localhost > PHP Configure.
Also I have tick 'Enable Multiple PHP As Secondary PHP' under 'PHP Type' in admin > Servers > localhost > Webserver Configure.

But still it is not working.

Title: Re: PHP 5.5 with Drupal
Post by: kahanbey on 2016-06-01, 12:19:52
check your .htaccess file
Title: Re: PHP 5.5 with Drupal
Post by: sandipcd on 2016-06-01, 12:47:59
.htaccess file code is given below. Is this alright ?

Code: [Select]
###Start Kloxo PHP config Area

### begin content - please not remove this line

#<IfModule mod_rewrite.c>
# ## MR -- authentically for letsencrypt for webroot-based
# RewriteRule /\.|^\.(?!well-known/) - [F]
#</FilesMatch>

### MR -- using php version different with default php
### 1. Using suphp
### - Copy between '#<FilesMatch \.php$>' to '#</FilesMatch>' and
###   then remove '#' from '#<FilesMatch', '#</FilesMatch>' and one of '#SetHandler'

#<FilesMatch \.php$>
#SetHandler x-httpd-php
#SetHandler x-httpd-php52
#SetHandler x-httpd-php53
#SetHandler x-httpd-php54
#SetHandler x-httpd-php55
#SetHandler x-httpd-php56
#SetHandler x-httpd-php70
#</FilesMatch>

### OR

### 2. Using fcgid
### - Copy from '#Options' to '#FCGIWrapper' and
###   then remove '#' for one of '#FCGIWrapper'

#Options +ExecCGI
#<FilesMatch \.php$>
# SetHandler fcgid-script
#</FilesMatch>
#FCGIWrapper /usr/bin/php-cgi .php
#FCGIWrapper /usr/bin/php52m-cgi .php
#FCGIWrapper /usr/bin/php53m-cgi .php
#FCGIWrapper /usr/bin/php54m-cgi .php
#FCGIWrapper /usr/bin/php55m-cgi .php
#FCGIWrapper /usr/bin/php56m-cgi .php
#FCGIWrapper /usr/bin/php70m-cgi .php

### end content - please not remove this line

###End Kloxo PHP config Area

Title: Re: PHP 5.5 with Drupal
Post by: kahanbey on 2016-06-01, 14:59:01
Use this

Code: [Select]

###Start Kloxo PHP config Area

### begin content - please not remove this line

#<IfModule mod_rewrite.c>
# ## MR -- authentically for letsencrypt for webroot-based
# RewriteRule /\.|^\.(?!well-known/) - [F]
#</FilesMatch>

### MR -- using php version different with default php
### 1. Using suphp
### - Copy between '#<FilesMatch \.php$>' to '#</FilesMatch>' and
###   then remove '#' from '#<FilesMatch', '#</FilesMatch>' and one of '#SetHandler'

<FilesMatch \.php$>
#SetHandler x-httpd-php
#SetHandler x-httpd-php52
#SetHandler x-httpd-php53
#SetHandler x-httpd-php54
SetHandler x-httpd-php55
#SetHandler x-httpd-php56
#SetHandler x-httpd-php70
</FilesMatch>

### OR

### 2. Using fcgid
### - Copy from '#Options' to '#FCGIWrapper' and
###   then remove '#' for one of '#FCGIWrapper'

#Options +ExecCGI
#<FilesMatch \.php$>
# SetHandler fcgid-script
#</FilesMatch>
#FCGIWrapper /usr/bin/php-cgi .php
#FCGIWrapper /usr/bin/php52m-cgi .php
#FCGIWrapper /usr/bin/php53m-cgi .php
#FCGIWrapper /usr/bin/php54m-cgi .php
#FCGIWrapper /usr/bin/php55m-cgi .php
#FCGIWrapper /usr/bin/php56m-cgi .php
#FCGIWrapper /usr/bin/php70m-cgi .php

### end content - please not remove this line

###End Kloxo PHP config Area



Title: Re: PHP 5.5 with Drupal
Post by: sandipcd on 2016-06-01, 15:12:13
After use this code PHP is not working. See here - http://openid11.tk/phpinfo.php
Title: Re: PHP 5.5 with Drupal
Post by: kahanbey on 2016-06-01, 15:18:21
Try This

Code: [Select]
###Start Kloxo PHP config Area

### begin content - please not remove this line

#<IfModule mod_rewrite.c>
# ## MR -- authentically for letsencrypt for webroot-based
# RewriteRule /\.|^\.(?!well-known/) - [F]
#</FilesMatch>

### MR -- using php version different with default php
### 1. Using suphp
### - Copy between '#<FilesMatch \.php$>' to '#</FilesMatch>' and
###   then remove '#' from '#<FilesMatch', '#</FilesMatch>' and one of '#SetHandler'

##<FilesMatch \.php$>
#SetHandler x-httpd-php
#SetHandler x-httpd-php52
#SetHandler x-httpd-php53
#SetHandler x-httpd-php54
#SetHandler x-httpd-php55
#SetHandler x-httpd-php56
#SetHandler x-httpd-php70
##</FilesMatch>

### OR

### 2. Using fcgid
### - Copy from '#Options' to '#FCGIWrapper' and
###   then remove '#' for one of '#FCGIWrapper'

Options +ExecCGI
<FilesMatch \.php$>
SetHandler fcgid-script
</FilesMatch>
#FCGIWrapper /usr/bin/php-cgi .php
#FCGIWrapper /usr/bin/php52m-cgi .php
#FCGIWrapper /usr/bin/php53m-cgi .php
#FCGIWrapper /usr/bin/php54m-cgi .php
FCGIWrapper /usr/bin/php55m-cgi .php
#FCGIWrapper /usr/bin/php56m-cgi .php
#FCGIWrapper /usr/bin/php70m-cgi .php

### end content - please not remove this line

###End Kloxo PHP config Area



Title: Re: PHP 5.5 with Drupal
Post by: sandipcd on 2016-06-01, 15:29:32
Use this code and seeing 'Internal Server Error'. http://openid11.tk/phpinfo.php

Also I have send you login info by PM.
Title: Re: PHP 5.5 with Drupal
Post by: MRatWork on 2016-06-01, 15:59:25
I found this issue where using firefox. Need clear firefox cache.
Title: Re: PHP 5.5 with Drupal
Post by: sandipcd on 2016-06-01, 19:02:48
I found this issue where using firefox. Need clear firefox cache.

Open in Chrome, open in mobile, change the folder - but it still showing php 5.4.45 version.

Any idea ?
Title: Re: PHP 5.5 with Drupal
Post by: MRatWork on 2016-06-01, 19:20:34
Inform here "cat /opt/configs/apache/conf/domains/yourdomain.com.conf|grep '.sock'" (change yourdomain.com with your real domain.
Title: Re: PHP 5.5 with Drupal
Post by: MRatWork on 2016-06-01, 19:28:22
Try Kloxo-MR 7.0 to 2016060105.
Title: Re: PHP 5.5 with Drupal
Post by: sandipcd on 2016-06-01, 19:48:52
Try Kloxo-MR 7.0 to 2016060105.

My version is 7.0.0.b-2016053003. How to get 2016060105 ?
Title: Re: PHP 5.5 with Drupal
Post by: sandipcd on 2016-06-01, 19:50:36
Inform here "cat /opt/configs/apache/conf/domains/yourdomain.com.conf|grep '.sock'" (change yourdomain.com with your real domain.

Code: [Select]
[root@server1 ~]# cat /opt/configs/apache/conf/domains/openid11.tk.conf|grep '.s                                                                 ock'
                        FastCGIExternalServer "/home/kloxo/httpd/cp/cp.openid11.                                                                 tk.0fake" -socket /opt/configs/php-fpm/sock/php55m-apache.sock -idle-timeout 300                                                                 0 -pass-header Authorization
                                SetHandler "proxy:unix:/opt/configs/php-fpm/sock                                                                 /php55m-apache.sock|fcgi://localhost"
                        FastCGIExternalServer "/home/kloxo/httpd/webmail/webmail                                                                 .openid11.tk.0fake" -socket /opt/configs/php-fpm/sock/php55m-apache.sock -idle-t                                                                 imeout 3000 -pass-header Authorization
                                SetHandler "proxy:unix:/opt/configs/php-fpm/sock                                                                 /php55m-apache.sock|fcgi://localhost"
                        FastCGIExternalServer "/home/hostingultraso123/openid11/                                                                 openid11.tk.0fake" -socket /opt/configs/php-fpm/sock/php55m-hostingultraso123.so                                                                 ck -idle-timeout 3000 -pass-header Authorization
                                SetHandler "proxy:unix:/opt/configs/php-fpm/sock                                                                 /php55m-hostingultraso123.sock|fcgi://localhost"
                        FastCGIExternalServer "/home/kloxo/httpd/cp/cp.openid11.                                                                 tk.1fake" -socket /opt/configs/php-fpm/sock/php55m-apache.sock -idle-timeout 300                                                                 0 -pass-header Authorization
                                SetHandler "proxy:unix:/opt/configs/php-fpm/sock                                                                 /php55m-apache.sock|fcgi://localhost"
                        FastCGIExternalServer "/home/kloxo/httpd/webmail/webmail                                                                 .openid11.tk.1fake" -socket /opt/configs/php-fpm/sock/php55m-apache.sock -idle-t                                                                 imeout 3000 -pass-header Authorization
                                SetHandler "proxy:unix:/opt/configs/php-fpm/sock                                                                 /php55m-apache.sock|fcgi://localhost"
                        FastCGIExternalServer "/home/hostingultraso123/openid11/                                                                 openid11.tk.1fake" -socket /opt/configs/php-fpm/sock/php55m-hostingultraso123.so                                                                 ck -idle-timeout 3000 -pass-header Authorization
                                SetHandler "proxy:unix:/opt/configs/php-fpm/sock                                                                 /php55m-hostingultraso123.sock|fcgi://localhost"
Title: Re: PHP 5.5 with Drupal
Post by: MRatWork on 2016-06-02, 02:29:04
So, look like your domain conf is normal.

Try using 'phpversion();' instead 'phpinfo()' in your php file.
Title: Re: PHP 5.5 with Drupal
Post by: sandipcd on 2016-06-04, 18:50:59
After installing CentOS 6.8, now got success. But have to check for other domain also.
Title: Re: PHP 5.5 with Drupal
Post by: sandipcd on 2016-06-04, 19:40:07
So, look like your domain conf is normal.

Try using 'phpversion();' instead 'phpinfo()' in your php file.

In Rackspace Cloud Server, I have CentOS 6.7, Kloxo-Mr 7. Here php version is not taking by website. I have selected php 5.5 under Domain name. Tried using 'phpinfo();' - showing php 5.4. And try 'phpversion();', showing nothing but white screen. Here it is - http://sandipchoudhury.com/phpinfo.php

Also here using php type - suphp.

So, what is the solution ?
Title: Re: PHP 5.5 with Drupal
Post by: MRatWork on 2016-06-04, 19:47:37
Need select 'php-fpm' for 'php type' if using apache or proxy.
Title: Re: PHP 5.5 with Drupal
Post by: sandipcd on 2016-06-04, 19:56:39
Need select 'php-fpm' for 'php type' if using apache or proxy.

I have selected php-fpm_event. Is this right ?
Title: Re: PHP 5.5 with Drupal
Post by: MRatWork on 2016-06-04, 21:31:48
Yes.
Title: Re: PHP 5.5 with Drupal
Post by: sandipcd on 2016-06-05, 05:34:34
Need select 'php-fpm' for 'php type' if using apache or proxy.

Please see the attached file for the services running in the server. So, related to services is php type 'php-fpm_event' is right ?
Title: Re: PHP 5.5 with Drupal
Post by: MRatWork on 2016-06-05, 05:36:57
Inform here 'sh /script/restart-web -y'.
Title: Re: PHP 5.5 with Drupal
Post by: sandipcd on 2016-06-05, 05:40:05
Inform here 'sh /script/restart-web -y'.

Please see information -

Code: [Select]
[root@server1 ~]# sh /script/restart-web -y

Stopping php-fpm (PHP Used):                               [FAILED]
Starting php-fpm (PHP Used): [05-Jun-2016 03:56:30] ERROR: An another FPM instance seems to already listen on /opt/configs/php-fpm/sock/php-apache.sock
[05-Jun-2016 03:56:30] ERROR: FPM initialization failed
                                                           [FAILED]
-------------------------------------------------------------------

Stopping php54m-fpm (Multiple Php):                        [  OK  ]
Stopping php55m-fpm (Multiple Php):                        [  OK  ]
Stopping php56m-fpm (Multiple Php):                        [  OK  ]

Starting php54m-fpm (Multiple Php):                        [  OK  ]
Starting php55m-fpm (Multiple Php):                        [  OK  ]
Starting php56m-fpm (Multiple Php):                        [  OK  ]
-------------------------------------------------------------------

Stopping nginx:                                            [FAILED]
Starting nginx: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to [::]:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:443 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to [::]:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:443 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to [::]:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:443 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to [::]:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:443 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to [::]:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:443 failed (98: Address already in use)
nginx: [emerg] still could not bind()
                                                           [FAILED]
-------------------------------------------------------------------

Stopping httpd:                                            [  OK  ]
Starting httpd:                                            [  OK  ]
-------------------------------------------------------------------

- For help, type '/script/restart-web [--help|-h]'
[root@server1 ~]#
Title: Re: PHP 5.5 with Drupal
Post by: MRatWork on 2016-06-05, 07:54:56
Try 'pkill -9 php-fpm; sh /script/restart-all -y'.
Title: Re: PHP 5.5 with Drupal
Post by: sandipcd on 2016-06-05, 08:21:10
Try 'pkill -9 php-fpm; sh /script/restart-all -y'.

Here is the output -

Code: [Select]
[root@server1 ~]# pkill -9 php-fpm
[root@server1 ~]# pkill -9 php-fpm; sh /script/restart-all -y

Shutting down system logger:                               [  OK  ]
Starting system logger:                                    [  OK  ]
-------------------------------------------------------------------

Shutting down MySQL... SUCCESS!
Starting MySQL... SUCCESS!
-------------------------------------------------------------------

Stopping named: .                                          [  OK  ]
Starting named:                                            [  OK  ]
-------------------------------------------------------------------

Stopping php-fpm (PHP Used):                               [FAILED]
Starting php-fpm (PHP Used):                               [  OK  ]
-------------------------------------------------------------------

Stopping php54m-fpm (Multiple Php):                        [FAILED]
Stopping php55m-fpm (Multiple Php):                        [FAILED]
Stopping php56m-fpm (Multiple Php):                        [FAILED]

Starting php54m-fpm (Multiple Php):                        [  OK  ]
Starting php55m-fpm (Multiple Php):                        [  OK  ]
Starting php56m-fpm (Multiple Php):                        [  OK  ]
-------------------------------------------------------------------

Stopping nginx:                                            [FAILED]
Starting nginx: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to [::]:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:443 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to [::]:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:443 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to [::]:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:443 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to [::]:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:443 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to [::]:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:443 failed (98: Address already in use)
nginx: [emerg] still could not bind()
                                                           [FAILED]
-------------------------------------------------------------------

Stopping httpd:                                            [  OK  ]
Starting httpd:                                            [  OK  ]
-------------------------------------------------------------------


*** Process for QMAIL service ***
Stopping qmail-toaster: svscan qmail logging.
qmail-send: no process killed
Starting qmail-toaster: svscan.
-------------------------------------------------------------------

- For help, type '/script/restart-mail [--help|-h]'
-------------------------------------------------------------------

Stopping pure-ftpd:                                        [  OK  ]
Starting pure-ftpd:                                        [  OK  ]
-------------------------------------------------------------------

Stopping kloxo-phpcgi:                                     [FAILED]
Starting kloxo-phpcgi ('php54s' in 'fpm' mode):            [  OK  ]
Stopping kloxo-hiawatha:                                   [  OK  ]
Starting kloxo-hiawatha:                                   [  OK  ]
-------------------------------------------------------------------
[root@server1 ~]#
Title: Re: PHP 5.5 with Drupal
Post by: MRatWork on 2016-06-05, 11:29:34
If not using nginx/nginx-proxy, try 'chkconfig nginx off; sh /script/restart-web -y'.
Title: Re: PHP 5.5 with Drupal
Post by: sandipcd on 2016-06-05, 17:55:25
If not using nginx/nginx-proxy, try 'chkconfig nginx off; sh /script/restart-web -y'.

Have run the command. Output given below. And print screen attached.

Code: [Select]
[root@server1 ~]# chkconfig nginx off
[root@server1 ~]# sh /script/restart-web -y

Stopping php-fpm (PHP Used):                               [  OK  ]
Starting php-fpm (PHP Used):                               [  OK  ]
-------------------------------------------------------------------

Stopping php54m-fpm (Multiple Php):                        [  OK  ]
Stopping php55m-fpm (Multiple Php):                        [  OK  ]
Stopping php56m-fpm (Multiple Php):                        [  OK  ]

Starting php54m-fpm (Multiple Php):                        [  OK  ]
Starting php55m-fpm (Multiple Php):                        [  OK  ]
Starting php56m-fpm (Multiple Php):                        [  OK  ]
-------------------------------------------------------------------

Stopping httpd:                                            [  OK  ]
Starting httpd:                                            [  OK  ]
-------------------------------------------------------------------

- For help, type '/script/restart-web [--help|-h]'
[root@server1 ~]#
Title: Re: PHP 5.5 with Drupal
Post by: MRatWork on 2016-06-05, 18:28:34
If you choose 'apache' only, better remove nginx with 'yum remove nginx -y'.
Title: Re: PHP 5.5 with Drupal
Post by: sandipcd on 2016-06-05, 18:58:57
If you choose 'apache' only, better remove nginx with 'yum remove nginx -y'.

I think, I have removed. See output below and see print screen.

Code: [Select]
[root@server1 ~]# yum remove nginx -y
Loaded plugins: fastestmirror, priorities, protectbase, replace
Setting up Remove Process
Resolving Dependencies
--> Running transaction check
---> Package nginx.x86_64 0:1.11.1-1.el6.ngx will be erased
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================
 Package     Arch         Version                   Repository             Size
================================================================================
Removing:
 nginx       x86_64       1.11.1-1.el6.ngx          @mratwork-nginx       2.1 M

Transaction Summary
================================================================================
Remove        1 Package(s)

Installed size: 2.1 M
Downloading Packages:
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
  Erasing    : nginx-1.11.1-1.el6.ngx.x86_64                                1/1
warning: /etc/nginx/nginx.conf saved as /etc/nginx/nginx.conf.rpmsave
warning: /etc/nginx/fastcgi_params saved as /etc/nginx/fastcgi_params.rpmsave
warning: /etc/nginx/conf.d/default.conf saved as /etc/nginx/conf.d/default.conf.rpmsave
  Verifying  : nginx-1.11.1-1.el6.ngx.x86_64                                1/1

Removed:
  nginx.x86_64 0:1.11.1-1.el6.ngx

Complete!
[root@server1 ~]#