Changes between Version 8 and Version 9 of InitdScriptForLinux


Ignore:
Timestamp:
Jul 17, 2010, 6:28:46 PM (14 years ago)
Author:
KPhoen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InitdScriptForLinux

    v8 v9  
    131131To automatically start the service at start-up, configure the initial variables, put the fastcgi file in the /etc/init.d/ directory and execute in a terminal:
    132132{{{
    133 update-rc.d /etc/init.d/fastcgi defaults
     133update-rc.d fastcgi defaults
    134134}}}
    135135
     
    171171PORT=`expr $PORT + 1`
    172172}}}
     173OR:
     174{{{
     175PORT=$(($PORT + 1))
     176}}}
Back to Top