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
Apache | Rajesh

Category Archives: Apache

Apache http server in detail – 1

To verify httpd installed or not rpm -qa httpd (will display the package details if available) ex: httpd-2.2.15-29.el6_4.x86_64 Default Paths /usr/sbin/httpd command path /etc/httpd httpd root path /etc/httpd/conf Main config path /etc/httpd/conf.d Additional config path /etc/httpd/logs Link pointed to httpd … Continue reading

Posted in Apache | Tagged , | Leave a comment

How to make apache server listen on particular port ?

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 … Continue reading

Posted in Apache | Tagged , , | Leave a comment

Apache HTTP Server – An Introduction

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 … Continue reading

Posted in Apache | Tagged , | Leave a comment