linux,ubuntu linux,ubuntu guide,linux technical documentation

Webserver

apache error – Starting httpd: (98)Address already in use

by admin on May.28, 2010, under RHEL5, Ubuntu, Ubuntu 9.10, Webserver, apache, ubuntu 10.04

My client doing some virtual hosting set-up that time that apache showing following error
[root@]# /etc/init.d/httpd start

Starting httpd: (98)Address already in use: make_sock: could not bind to address [::]:80
(98)Address already in use: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
Unable to open logs
[FAILED]

For resolving this issue grep list of open files and kill that file


[root@]# lsof -i :80
COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
perl 7448 apache 4u IPv6 33113387 TCP *:http (LISTEN)

[root@]# kill -9 7448

[root@]# /etc/init.d/httpd start
Starting httpd: [ OK ]


Leave a Comment :, , more...

Ngnix webserver Installation stpe by step from source

by admin on Mar.05, 2010, under Ngnix, Webserver

Nginx is a popular lightweight server for those who do not need the bulk and extra services that Apache may offer.

This article will look at installing Nginx from source on a CentOS slice.


Versions

At the time of writing, the latest stable version of Nginx is 0.7.65. You can check the latest versions and change logs at the main nginx site.

Building from source will allow you to have the latest available versions of Nginx. However, keep in mind that security updates will not be applied automatically.

Dependencies

As we are not using the package manager to install nginx, we need to take care of some dependencies.

Not many are needed and include pcre-devel zlib-devel and openssl-devel packages.

sudo yum install pcre-devel zlib-devel openssl-devel

Download

Now we can download the source code.

Create a ’sources’ directory (you can download it anywhere you want to):

mkdir /ngnix

Now move into the folder:

cd /ngnix

And then download the source code:

wget http://nginx.org/download/nginx-0.7.65.tar.gz

Unpack

Unpack the downloaded tar file and move into the newly created directory:

tar -zxvf nginx-0.7.65.tar.gz
...
cd nginx-0.7.65

Options

There are quite a few compile time options that are available to use.

Have a look at the Install Options page of the Nginx wiki for full details.

We’re going to use just two options to customize the install. The first of which is:

--sbin-path=/usr/local/sbin

By default, nginx will be installed in /usr/local/nginx which, although a good place, does mean the main Nginx binary will be found in /usr/local/nginx/sbin/nginx.

Not a location we are likely to find in our default search paths. So instead of adding new directories to our path (which may cause errors later on) we simply define where to put the binary.

The second option is:

--with-http_ssl_module

Probably self explanatory, but this will enable the SSL module to be compiled so we can parse https requests.

Compile

Let’s go ahead and compile Nginx using those two options:

./configure --sbin-path=/usr/local/sbin --with-http_ssl_module

There will be a nice summary at the end of the compile which includes such items as:

...
nginx path prefix: "/usr/local/nginx"
nginx binary file: "/usr/local/sbin"
nginx configuration file: "/usr/local/nginx/conf/nginx.conf"
...

Keep a note of the output as it does contain some useful paths and locations for various files.

Make

Ok, let’s go ahead and ‘make’ and then ‘make install’:

make
...
sudo make install

For more info
 (continue reading...)
2 Comments more...

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!

Visit our friends!

A few highly recommended friends...

Archives

All entries, chronologically...