This warning occurred while restarting Apache server and two or more virtuelHost (VH) are listening on the same port, to avoid it just change listening port of VH in http.conf file, here is an example<VirtualHost *:8080>
NB: If you are setting ServerName for each VH you may not face this Warning....
Friday, February 28, 2014
[warn] _default_ VirtualHost overlap on port 80, the first has precedence
Posted on 5:11 PM by Unknown
Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName
Posted on 2:04 PM by Unknown
This how to fix
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
In order to solve this problem You need set the ServerName in httpd.conf file, for example in my case I used "ubuntu" as a server name
first goto httpd.conf
#vim /etc/apache2/httpd.conf/
set ServerName attribute to ubuntu
ServerName ubuntu
Restart apache2
#service...
Categories: apache2 error, fix apache2 error
Wednesday, February 26, 2014
Wlan1 error while getting interface flags no such device
Posted on 4:26 PM by Unknown
Normal
0
false
false
false
EN-US
X-NONE
AR-SA
...
Tuesday, February 25, 2014
139883256969032:error:02001002:system library:fopen:No such file or directory:bss_file.c:355:fopen('/etc/pki/CA/index.txt','r')
Posted on 4:24 AM by Unknown
This error is frequently appeared when we try to sign a certificate using openssl, the procedure to resolve this error is:
Create the index.txt file.
# touch /etc/pki/CA/index.txt
Create a serial file to label the CA and all subsequent certificates.
# echo '1000' > /etc/pki/CA/serial
NB: You have to do this just the first time you set-up the SSL certificat...
Categories: openssl error, SSL error
Monday, February 24, 2014
500 OOPS: could not read chroot() list file:/etc/vsftpd/chroot_list
Posted on 4:39 AM by Unknown
It's common to get this error while using vsftp (very secure FTP) and trying to connect to ftp server through a client, the reason behind is that ftp daemon can not read/find chroot_list, to resolve this problem just create the specified file using the following command:
#touch /etc/vsftpd/chroot_list
if doesn't work for you just give me a hi...
Subscribe to:
Posts (Atom)