scarbu's picture
From scarbu rss RSS  subscribe Subscribe

Raj apache 

Raj apache

 

 
 
Tags:  apache 
Views:  104
Published:  November 18, 2011
 
0
download

Share plick with friends Share
save to favorite
Report Abuse Report Abuse
 
Related Plicks
Common and unique use cases for Apache Hadoop

Common and unique use cases for Apache Hadoop

From: avonro
Views: 17 Comments: 0

 
Informationweek full-issue-may-30-2 011 4130152

Informationweek full-issue-may-30-2011 4130152

From: chrig78
Views: 20 Comments: 0

 
Portlets and Apache Portals

Portlets and Apache Portals

From: anon-391004
Views: 219 Comments: 0
Portlets and Apache Portals ,hacking dumbs intitle index of ebooks, chlidren's libraries, livingston county ny public library, cameron village library readings
 
See all 
 
More from this user
Ibm Thinkpad T40 Battery

Ibm Thinkpad T40 Battery

From: scarbu
Views: 358
Comments: 0

India Fourms June 8, 2009 Divestment Can Raise $95 Bn, Wipe Deficit Clean   Study

India Fourms June 8, 2009 Divestment Can Raise $95 Bn, Wipe Deficit Clean Study

From: scarbu
Views: 169
Comments: 0

Make  Money  Online - Daily

Make Money Online - Daily

From: scarbu
Views: 561
Comments: 0

Gajiindonesia2008

Gajiindonesia2008

From: scarbu
Views: 85
Comments: 0

Jarvis Collegiate Institute Gr 9 - 12 - EQAO Board Report

Jarvis Collegiate Institute Gr 9 - 12 - EQAO Board Report

From: scarbu
Views: 22
Comments: 0

India @ Risk 2006

India @ Risk 2006

From: scarbu
Views: 537
Comments: 0

See all 
 
 
 URL:          AddThis Social Bookmark Button
Embed Thin Player: (fits in most blogs)
Embed Full Player :
 
 

Name

Email (will NOT be shown to other users)

 

 
 
Comments: (watch)
 
 
Notes:
 
Slide 1: Apache Installation INSTALLING LINUX BY RAJESH J
Slide 2: Apache Apache Tomcat is an open source software implementation of the Java Servlet and JavaServer Pages technologies.  The Java Servlet and JavaServer Pages specifications are developed under the Java Community Process. 
Slide 3: Installation Apache The first app we will install is the web server Apache. To get started open your console and type: sudo apt-get install apache2 After you put in your password and accept and a short wait you should have a working installation of Apache. To test it point your web browser to http://localhost
Slide 4: Installing Apache Tomcat Server 1. If you do not have Apache Tomcat on your machine, you will first need to download and unzip Apache Tomcat (this scenario was written using Apache Tomcat version 5.0.28, but other versions can be substituted). 2. Start the Eclipse WTP workbench. 3. Open Window -> Preferences -> Server -> Installed Runtimes to create a Tomcat installed runtime. 4. Click on Add... to open the New Server Runtime dialog, then select your runtime under Apache (Apache Tomcat v5.0 in this example):
Slide 7:  Ensure the selected JRE is a full JDK and is of a version that will satisfy Apache Tomcat (this scenario was written using SUN JDK 1.4.2_06). If necessary, you can click on Installed JREs... to add JDKs to Eclipse. Click Finish .
Slide 8: . Apache Configurations
Slide 9: 1.AcceptFilter directive Syntax: AcceptFilter on|off Default: AcceptFilter on Context: server config Status: core Compatibility: AcceptFilter is available in Apache 1.3.22 and later AcceptFilter controls a BSD specific filter optimization
Slide 10: 2.AcceptMutex directive AcceptMutex directive Syntax: AcceptMutex uslock|pthread|sysvsem| fcntl|flock|os2sem|tpfcore|none|default Default: AcceptMutex default Context: server config Status: core Compatibility: AcceptMutex is available in Apache 1.3.21 and later. AcceptMutex controls which accept() mutex method Apache will us
Slide 11: 3.AccessConfig directive Syntax: AccessConfig file-path|directory-path| wildcard-path Default: AccessConfig conf/access.conf Context: server config, virtual host Status: core Compatibility: The ability to specify a directory, rather than a file name, is only available in Apache 1.3.13 and later. This directive will be eliminated in version 2.0.
Slide 12: This feature can be disabled using: AccessConfig /dev/null Or, on Win32 servers, AccessConfig nul Historically, this file only contained <Directory> sections; in fact it can now contain any server directive allowed in the server config context. However, since Apache version 1.3.4, the default access.conf file which ships with Apache contains only comments.
Slide 13: 4.AccessFileName directive Syntax: AccessFileName filename [filename] ... Default: AccessFileName .htaccess Context: server config, virtual host Status: core Compatibility: AccessFileName can accept more than one filename only in Apache 1.3 and later
Slide 14: For example: AccessFileName .acl before returning the document /usr/local/web/index.html, the server will read /.acl, /usr/.acl, /usr/local/.acl and /usr/local/ web/.acl for directives, unless they have been disabled with <Directory /> AllowOverride None </Directory>
Slide 15: 5.AddDefaultCharset directive Syntax: AddDefaultCharset On|Off|charset Context: all Status: core Default: AddDefaultCharset Off Compatibility: AddDefaultCharset is only available in Apache 1.3.12 and later
Slide 16: AddDefaultCharset On enables Apache's internal default charset of iso-8859-1 as required by the directive. You can also specify an alternate charset to be used. For example: AddDefaultCharset utf-8
Slide 17: 6.AddModule directive Syntax: AddModule module [module] ... Context: server config Status: core Compatibility: AddModule is only available in Apache 1.2 and later For example: AddModule mod_include.c
Slide 18: 7.AllowOverride directive Syntax: AllowOverride All|None|directive-type [directive-type] ... Default: AllowOverride All Context: directory Status: core AllowOverride is only valid in <Directory> sections, not in <Location> or <Files> sections, as implied by the Context section above
Slide 19: 8.AuthName directive AuthName directive Syntax: AuthName auth-domain Context: directory, .htaccess Override: AuthConfig Status: cor sets the name of the authorization realm for a directory
Slide 20: It must be accompanied by AuthType and Require directives, and directives such as AuthUserFile and AuthGroupFile to work. For example: AuthName "Top Secret" The string provided for the AuthName is what will appear in the password dialog provided by most browsers.
Slide 21: 9.AuthDigestRealmSeed directive Syntax: AuthDigestRealmSeed secret-real-string Context: directory, .htaccess Override: AuthConfig Status: core sets a per realm secret nonce prefix which is used to ensure that a captured username, password and realm string during a Digest exchange cannot be replayed at other places.
Slide 22: 10.AuthType directive Syntax: AuthType Basic|Digest Context: directory, .htaccess Override: AuthConfig Status: core This directive selects the type of user authentication for a directory. Only Basic and Digest are currently implemented. It must be accompanied by AuthName and Require directives, and directives such as AuthUserFile and AuthGroupFile to work.
Slide 23: 11.BindAddress directive BindAddress directive Syntax: BindAddress *|IP-address|domain-name Default: BindAddress * Context: server config Status: core Compatibility: BindAddress is deprecated and will be eliminated in Apache 2.0.
Slide 24: For example: BindAddress 192.168.15.48 BindAddress can be used as an alternative method for supporting virtual hosts using multiple independent servers, instead of using <VirtualHost> sections
Slide 25: 12.BS2000Account directive  Syntax: BS2000Account account Default: none Context: server config Status: core Compatibility: BS2000Account is only available for BS2000 machines, as of Apache 1.3 and later.    
Slide 26:  BS2000Account directive is available for BS2000 hosts only.It must be used to define the account number for the non-privileged apache server user (which was configured using the User directive).
Slide 27: 13.CGICommandArgs directive Syntax: CGICommandArgs On|Off Default: CGICommandArgs On Context: directory, .htaccess Override: Options Status: core Compatibility: Available in Apache 1.3.24 and later.
Slide 28: 14.ClearModuleList directive Syntax: ClearModuleList Context: server config Status: core Compatibility: ClearModuleList is only available in Apache 1.2 and later. This directive clears the list. It is assumed that the list will then be re-populated using the AddModule directive.
Slide 29: 15.ContentDigest directive Syntax: ContentDigest on|off Default: ContentDigest off Context: server config, virtual host, directory, .htaccess Override: Options Status: experimental Compatibility: ContentDigest is only available in Apache 1.1 and later This directive enables the generation of ContentMD5 headers as defined in RFC1864
Slide 30: 16.CoreDumpDirectory directive Syntax: CoreDumpDirectory directory-path Default: the same location as ServerRoot Context: server config Status: core This controls the directory to which Apache attempts to switch before dumping core.
Slide 31: 17.DefaultType directive Syntax: DefaultType MIME-type Default: DefaultType text/plain Context: server config, virtual host, directory, .htaccess Override: FileInfo Status: core
Slide 32: There will be times when the server is asked to provide a document whose type cannot be determined by its MIME types mappings. The server must inform the client of the content-type of the document, so in the event of an unknown type it uses the DefaultType. For example: DefaultType image/gif
Slide 33: 18.DirectoryMatch <DirectoryMatch> Syntax: <DirectoryMatch regex> ... </DirectoryMatch> Context: server config, virtual host Status: Core. Compatibility: Available in Apache 1.3 and late
Slide 34: <DirectoryMatch> and </DirectoryMatch> are used to enclose a group of directives which will apply only to the named directory and subdirectories of that directory, the same as <Directory>. However, it takes as an argument a regular expression.  For example: <DirectoryMatch "^/www/.*/[0-9]{3}">
Slide 35: 19.DocumentRoot directive DocumentRoot directive Syntax: DocumentRoot directory-path Default: DocumentRoot /usr/local/apache/htdocs Context: server config, virtual host Status: core This directive sets the directory from which httpd will serve files.
Slide 36: Unless matched by a directive like Alias, the server appends the path from the requested URL to the document root to make the path to the document.  Example: DocumentRoot /usr/web then an access to http://www.my.host.com/index.html refers to /usr/web/index.html.
Slide 37: 20.EBCDICConvert Syntax: EBCDICConvert On|Off[=direction] extension [extension] ... Context: server config, virtual host, directory, .htaccess Status: core Override: FileInfo Compatibility: The configurable EBCDIC conversion is only available in Apache 1.3.19 and later.
Slide 38: The EBCDICConvert directive maps the given filename extensions to the specified conversion setting (On or Off). File extensions may be specified with or without a leading dot
Slide 39: 21.EnableExceptionHook directive Syntax: EnableExceptionHook on|off Default: EnableExceptionHook off Context: server config Status: core Compatibility: EnableExceptionHook is available in Apache 1.3.30 and later EnableExceptionHook controls whether or not an exception hook implemented by a module will be called after a child process crash.
Slide 40: 22.<Files> directive Syntax: <Files filename> ... </Files> Context: server config, virtual host, .htaccess Status: core Compatibility: only available in Apache 1.2 and above The <Files> directive provides for access control by filename.
Slide 41: 23.<FilesMatch> Syntax: <FilesMatch regex> ... </FilesMatch> Context: server config, virtual host, .htaccess Status: core Compatibility: only available in Apache 1.3 and above. The <FilesMatch> directive provides for access control by filename, just as the <Files> directive does. However, it accepts a regular expression. For example:
Slide 42: The <FilesMatch> directive provides for access control by filename, just as the <Files> directive does. However, it accepts a regular expression. For example: <FilesMatch "\.(gif|jpe?g|png)$"> would match most common Internet graphics formats.
Slide 43: 24.HostnameLookups directive Syntax: HostnameLookups on|off|double Default: HostnameLookups off Context: server config, virtual host, directory Status: core Compatibility: double available only in Apache 1.3 and above. Compatibility: Default was on prior to Apache 1.3.
Slide 44: This directive enables DNS lookups so that host names can be logged (and passed to CGIs/SSIs in REMOTE_HOST). At least one of the ip addresses in the forward lookup must match the original address. (In "tcpwrappers" terminology this is called PARANOID.)
Slide 45: 25.IdentityCheck directive Syntax: IdentityCheck on|off Default: IdentityCheck off Context: server config, virtual host, directory Status: core This directive enables RFC1413-compliant logging of the remote user name for each connection, where the client machine runs identd or something similar. This information is logged in the access log.
Slide 46: 26.<IfDefine> directive Syntax: <IfDefine [!]parameter-name> ... </IfDefine> Default: None Context: all Status: Core Compatibility: <IfDefine> is only available in 1.3.1 and later. The <IfDefine test>...</IfDefine> section is used to mark directives that are conditional. The
Slide 47: The directives within an IfDefine section are only processed if the test is true. If test is false, everything between the start and end markers is ignored. The test in the <IfDefine> section directive can be one of two forms:  * parameter-name * !parameter-name 
Slide 48: 27.<IfModule> directive Syntax: <IfModule [!]module-name> ... </IfModule> Default: None Context: all Status: Core Compatibility: IfModule is only available in 1.2 and later.
Slide 49: The <IfModule test>...</IfModule> section is used to mark directives that are conditional. The directives within an IfModule section are only processed if the test is true. If test is false, everything between the start and end markers is ignored. The test in the <IfModule> section directive can be one of two forms: * module name * !module name
Slide 50: 28.KeepAliveTimeout directive Syntax: KeepAliveTimeout seconds Default: KeepAliveTimeout 15 Context: server config Status: Core Compatibility: KeepAliveTimeout is only available in Apache 1.1 and later. The number of seconds Apache will wait for a subsequent request before closing the connection.
Slide 51: 29.<Limit> directive Syntax: <Limit method [method] ... > ... </Limit> Context: any Status: core Access controls are normally effective for all access methods, and this is the usual desired behavior. In the general case, access control directives should not be placed within a <limit> section
Slide 52: 30.<LimitExcept> directive <LimitExcept> directive Syntax: <LimitExcept method [method] ... > ... </ LimitExcept> Context: any Status: core Compatibility: Available in Apache 1.3.5 and later
Slide 53: <LimitExcept> and </LimitExcept> are used to enclose a group of access control directives which will then apply to any HTTP access method not listed in the arguments; i.e., it is the opposite of a <Limit> section and can be used to control both standard and nonstandard/unrecognized methods. See the documentation for <Limit> for more details.For example: <LimitExcept POST GET> Require valid-user </LimitExcept>
Slide 54: Thank you

   
Time on Slide Time on Plick
Slides per Visit Slide Views Views by Location