Difference between revisions of "This Is Your Brain On Informatics: Common Pathnames"

From Pathology Education Instructional Resource
Jump to: navigation, search
 
(13 intermediate revisions by the same user not shown)
Line 1: Line 1:
===/etc/init.d/[service] [operation]===
+
===Restarting, reloading, etc. a Service===
 +
<pre>/etc/init.d/[service] [operation]</pre>
  
<p>This "pathname" is actually a script that causes the initiate daemon (that constantly stays in memory) to act on a service that has been input.  After the service, an operation can be input in from one of the following: </p>
+
''Services''
 +
* nginx
 +
* mysql
 +
* php5-fpm
 +
* denyhosts
  
 +
''Operations''
 
* start
 
* start
 
* stop
 
* stop
Line 9: Line 15:
 
* force-reload
 
* force-reload
  
<p>
+
===Network File===
For our purposes, the only services that we know that this script can act on are as follows: 
+
<pre>/etc/network/interfaces</pre>
</p>
 
  
* nginx
+
===Important [[This Is Your Brain On Informatics: DenyHosts|Deny Hosts]] Files===
* mysql
+
The hosts.deny file is for blocking IP addresses.
* php5-fpm
 
* denyhosts
 
  
===/etc/hosts.deny===
+
<pre>/etc/hosts.deny</pre>
  
<p>
+
The hosts.allow file is for permanently giving access to IP addresses.
This file can be accessed via [[This Is Your Brain On Informatics: Pico|pico]] or any other text editor in order to manage the IP addresses that have been blocked from accessing your virtual machine (including your own if it accidentally happens).  Once you are in the file, delete the IP address (possibly your IP address) at the bottom of the file that you no longer wish to restrict.
 
</p>
 
  
===/etc/host.allow===
+
<pre>/etc/host.allow</pre>
  
<p>
 
This is a file is similar in nature to the hosts.deny file in that IP addresses can be input into the file.  However, IP addresses that are input into this file will be allowed access to the nginx web server and prevented from being automatically added to the hosts.deny file (this will still occur if the login attempts from the same IP address are exceeded.
 
</p>
 
  
 
{{This Is Your Brain On Informatics}}
 
{{This Is Your Brain On Informatics}}
 +
 +
[[Category:This Is Your Brain On Informatics]]

Latest revision as of 02:29, 19 March 2014

Restarting, reloading, etc. a Service

/etc/init.d/[service] [operation]

Services

  • nginx
  • mysql
  • php5-fpm
  • denyhosts

Operations

  • start
  • stop
  • reload
  • restart
  • force-reload

Network File

/etc/network/interfaces

Important Deny Hosts Files

The hosts.deny file is for blocking IP addresses.

/etc/hosts.deny

The hosts.allow file is for permanently giving access to IP addresses.

/etc/host.allow