Deprecated: Creation of dynamic property WPtouchProFour::$settings_object is deprecated in /home2/learnera/public_html/tech/wp-content/plugins/wptouch/core/class-wptouch-pro.php on line 82

Deprecated: Automatic conversion of false to array is deprecated in /home2/learnera/public_html/tech/wp-content/plugins/wptouch/core/admin-load.php on line 70

Deprecated: Creation of dynamic property Advanced_Editor_Tools::$toolbar_classic_block is deprecated in /home2/learnera/public_html/tech/wp-content/plugins/tinymce-advanced/tinymce-advanced.php on line 347

Deprecated: Creation of dynamic property Advanced_Editor_Tools::$toolbar_block is deprecated in /home2/learnera/public_html/tech/wp-content/plugins/tinymce-advanced/tinymce-advanced.php on line 349

Deprecated: Creation of dynamic property Advanced_Editor_Tools::$toolbar_block_side is deprecated in /home2/learnera/public_html/tech/wp-content/plugins/tinymce-advanced/tinymce-advanced.php on line 350

Deprecated: Creation of dynamic property Advanced_Editor_Tools::$panels_block is deprecated in /home2/learnera/public_html/tech/wp-content/plugins/tinymce-advanced/tinymce-advanced.php on line 351

Deprecated: Creation of dynamic property Advanced_Editor_Tools::$used_block_buttons is deprecated in /home2/learnera/public_html/tech/wp-content/plugins/tinymce-advanced/tinymce-advanced.php on line 354

Deprecated: Creation of dynamic property YARPP::$is_custom_template is deprecated in /home2/learnera/public_html/tech/wp-content/plugins/yet-another-related-posts-plugin/classes/YARPP_Core.php on line 56

Deprecated: Creation of dynamic property YARPP::$db_options is deprecated in /home2/learnera/public_html/tech/wp-content/plugins/yet-another-related-posts-plugin/classes/YARPP_Core.php on line 69

Warning: Cannot modify header information - headers already sent by (output started at /home2/learnera/public_html/tech/wp-content/plugins/wptouch/core/class-wptouch-pro.php:82) in /home2/learnera/public_html/tech/wp-includes/feed-rss2.php on line 8
http – Rajesh http://tech.learnerandtutor.com A Developer Fri, 02 Oct 2015 08:19:16 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.2 How to make apache server listen on particular port ? http://tech.learnerandtutor.com/apache-http-server-listen-virtualhost/ http://tech.learnerandtutor.com/apache-http-server-listen-virtualhost/#respond Mon, 26 May 2014 14:47:01 +0000 http://tech.learnerandtutor.com/?p=383 Continue reading ]]> Apache can be made to listen to a particular port/ip address using Listen directive.

Syntax :
Listen [IP_Address:]Port

Examples :
Listen 0.0.0.0:80
Listen 80
Listen 127.0.0.1:80
Listen 191.20.20.21:8000

  • Listen directive tells the server to listen for http request on the specified port or IP address (the number of IP’s for a machine depends upon the number of Network Interface Cards) and port combinations.
  • If only port number is specified the server listens to the given port on all Network Interfaces.
  • If both IP address and port is given, the server will listen on the given port and interface.
  • Multiple Listen directives can be used to specify a number of addresses and ports to listen on.
  • The server will respond to requests from any of the listed addresses and ports.

For example, to make the server accept connections on both port 80 and port 8080, on all interfaces, use:

Listen 80
Listen 8080

To make the server accept connections on port 80 for one interface, and port 8080 on another, use

Listen 191.20.20.20:80
Listen 191.20.20.21:8000

Note :

  1. The number of IP’s for a machine depends upon the number of Network Interface Cards(NIC). If a machine has 2 NIC’s installed, then it can have 2 IP’s.
  2. The IP address 0.0.0.0 means “every IP that the computer provides”.
  3. The IP address 127.0.0.1 is computer’s loopback address.
  4. Network IP addresses like 127.0.0.1 do not reach outside, but are re-routed by the computer’s own network adapter back to the TCP/IP stack.
  5. To get all listening tcp port one can use the command netstat -lntp, l – listening port, n – print numeric IP address, t – list only tcp socket, p – print process ID.
]]>
http://tech.learnerandtutor.com/apache-http-server-listen-virtualhost/feed/ 0
Apache HTTP Server – An Introduction http://tech.learnerandtutor.com/apache-http-server/ http://tech.learnerandtutor.com/apache-http-server/#respond Fri, 23 May 2014 06:29:24 +0000 http://tech.learnerandtutor.com/?p=313 Continue reading ]]> Apache is the world’s most popular Web server/HTTP server. We will see the overview of apache HTTP server here.

How to start / stop / restart apache ?

./httpd -f configfilepath -k (start|stop|restart)

How to run syntax test for configuration file ?

./httpd -f configfilepath -t

Configuration

Modules

  • Apache is a modular server, only the most basic functionality is included in the core server.
  • Extended features can be loaded into Apache using LoadModule directive ( Only if the server is compiled to use dynamically loaded modules).

Directives

  • Apache directives are a set of rules which define how your server should run.
  • We can change them by editing the httpd.conf and related files to meet your requirements.

Scope of Directives

]]>
http://tech.learnerandtutor.com/apache-http-server/feed/ 0