|
|
linux
|
|
Written by Jaider Bertoli
|
|
Allowing connections By default, the apache http server uses TCP and UDP port 80 for http and TCP and UDP port 443 for https secure transfer. Verify that the firewall allows connection to these ports
Configuring the server The main configuration file use by the web server is located at /ect/httpd/conf/httpd.conf
Virtual Host Sections To serve more than one website you would need to configure virtual hosts. There are two types of virtual hosts: name-base and ip-base #Enable name-based virtual hosting NameVirtualHost *.80
ServerName www.example.org DocumentRoot /var/www/example.org #add other directives here
Loading Modules LoadModule module_name modules/module_filename.so
Logging Connections By default log messeages from HTTP server are written to /var/log/httpd
Starting and Stopping the Server service httpd start command as root to start the apache server. service httpd reload command to restart the service if is already running. service httpd stop command to stop the apache server. chkconfig http on to configure the web service to start automatically at boot time. |
Share this page.
|
|
linux
|
|
Written by Jaider Bertoli
|
64-Bit, Multi-Core, and Hyper-Threading Technology Processors64-BitIn, 2004 the 64-bit processor was introduced into the market, Linux supports both 32-bit and 64-bit processors and most of the modern can also run 32-bit applications. To run both 32-bit and 64-bit applications, both sets of libraries must be install. 32-bit libraries are install in /lib and /usr/lib/ 64-bit libraries are install in /lib64 and /usr/lib64 To install a package Yum install . Mutli-Core ProcessorsA multi-core processor is a processor that contains one or more processor on a single processor chip. Hyper-Threading TechnologyProcessors with Hyper-Threading Technology are seen by the operating system as two logical processors.
To see information about the processor use: Cat /proc/cpuinfo
|
Share this page.
|
|
|
|
|
|
Page 1 of 3 |