Difference between revisions of "Web Servers"

From Joseph Luis Wiki
Jump to: navigation, search
(Created page with "'''Back to the TOC''' =Apache in Linux= ==Reload php.ini== Try to restart the apache service. Alternatively, type in a terminal the following to identi...")
 
m (Apache in Linux)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
'''[[Table of Contents|Back to the TOC]]'''
 
'''[[Table of Contents|Back to the TOC]]'''
=Apache in Linux=
+
=Apache on Linux=
 
==Reload php.ini==
 
==Reload php.ini==
 
   
 
   
Line 7: Line 7:
 
  ps -ef | grep php
 
  ps -ef | grep php
  
then, restart the php service e.g.
+
then, restart the php service e.g.
 
   
 
   
 
  sudo service php53 restart
 
  sudo service php53 restart
Line 14: Line 14:
  
 
  sudo killall php53.cgi
 
  sudo killall php53.cgi
 
  
 
=Ngnix=
 
=Ngnix=

Latest revision as of 07:19, 20 October 2014

Back to the TOC

Apache on Linux

Reload php.ini

Try to restart the apache service. Alternatively, type in a terminal the following to identify the php process:

ps -ef | grep php

then, restart the php service e.g.

sudo service php53 restart

or force PHP to reload by killing the process

sudo killall php53.cgi

Ngnix