Ubuntu :: ServerTokens Option Not Found In Apache2.conf
Apr 14, 2011
I am trying to set up a lamp server and I would like to change the ServerTokens option from full to prod but when I open /etc/apache2/apache2.conf it's no where to be found. Has the option been moved somewhere else? Same with setting ServerSignature from on to off. I'm starting to wonder if I even have the right conf file.
View 1 Replies
ADVERTISEMENT
Jul 25, 2010
phpmyadmin files are in usr/share/phpmyadmin but i cant find anything in my apache2.conf or httpd.conf files that point to that directory.How do I find the route taken from the Server root "ServerRoot "/etc/apache2"" to the phpmy admin files.
View 5 Replies
View Related
Nov 19, 2010
I have suse10 64bit and I was setting up SVN server on it. After all required setup while reloading apache2,its giving the error:
Code:
httpd2-prefork: Syntax error on line 113 of /etc/apache2/httpd.conf: Syntax error on line 31 of /etc/apache2/sysconfig.d/loadmodule.conf: Cannot load /usr/lib64/apache2/mod_dav_svn.so into server: /usr/lib64/libsvn_subr-1.so.0: undefined symbol: apr_memcache_add_server
View 6 Replies
View Related
Feb 16, 2010
Ubuntu Server 9.10I want to set up my dhcp server to also be my DNS server so do I skip these lines or point them at the same server that the config file is on?
View 4 Replies
View Related
Mar 20, 2011
I am trying to install BackupPC on openSUSE 11.4 64 bit.BackupPC is complaining that I am not running the Apache server as user backuppc but as user with id 0 (root)I have the following in the /etc/apache2/uid.conf (which is getting read as I can put a syntax error in the file and it complains):
User backuppc
Group www
When I run either the httpd2-itk (default in rcapache2) or the plain httpd2 processes and then do a:
ps aux
The user reported as running the http processes is root NOT backuppc.On a openSUSE 11.3 machine where I have BackupPC running successfully the ps command returns backuppc as the user running the processes.Is this something others are seeing or do I have some configuration incorrect?
View 8 Replies
View Related
Feb 19, 2010
Installed Apache2 on a Debian Lenny system. copied my old /var/www/htnl over to the new system.
Now when I open my browser to my PC I get the index.html under /var/www not /var/www/html.
I have this in my httpd.conf:
Code:
From what I have read, the DocumentRoot should have pointed to /var/www/html overriding /var/www?
If I use "10.1.1.13/html" it works the way it should.
View 3 Replies
View Related
Feb 15, 2011
I am installing some SSL certificates on my web server, however I have a couple questions, as I'm not familiar with this process
1) I'm not sure which directory to put them in? What is good practice? Is /var/www/secure a good location so long as I restrict access to the secure directory?
2) I am told to edit the following in my ssl.conf file of apache2
SSLCertificateFile
SSLCertificateKeyFile
SSLCertificateChainFile
However, I cannot find this file, ssl.conf. Nor can I find the above directives in my main apache2.conf file. Where is the ssl.conf file? Or alternatively, could I just add the above directives to my apache2.conf file?
View 2 Replies
View Related
Apr 8, 2010
I looked around on the internet to find a solution, but none found.I installed apache2 on Karmic Koala and that one works. On the default page I created a link to "/home/me/Documents/folder/index.html", but when I click the link it gives me the URL not found-error.
View 2 Replies
View Related
Feb 7, 2010
In Ubuntu 9.10 I can't get apache directive ServerTokens to work. My httpd.conf looks like below.
Code:
ServerName server.mydomain.com
ServerSignature Off
ServerTokens Prod
ServerName solved startup warnings, but ServerTokens doesn't take. Both Firebug and nmap reports "Apache/2.2.12 (Ubuntu)"
how to globally turn off indexes?
View 2 Replies
View Related
Jun 18, 2010
I just installed apache2 server on my ubuntu 10.04. It works fine (i get the "that works" page when i access to http://localost/ and get no errors or warnings when i start apache.However, the localhost/~florian returns a 404 not found.I've enabled the userdir module
Code:
a2enmod userdir
and restarted the apache server
[code]....
View 4 Replies
View Related
Sep 5, 2010
I just installed apache2 and i can't restart the service, i get: Code: sudo: /etc/init.d/apache2: command not found
View 6 Replies
View Related
Aug 6, 2010
i have configured my pc to run ntpd service. but i don't understand this line in ntp.conf:
Code:
restrict 0.asia.pool.ntp.org mask 255.255.255.255 nomodify notrap noquery
View 2 Replies
View Related
Mar 1, 2010
When I was configure xinetd service I tried to modify the includedir option in /etc/xinetd.conf to another directory. For example:
defaults
{
}
[code]....
View 2 Replies
View Related
Feb 12, 2010
I'm using 2 cloned disks with CentOs5.3 and I need to be able to control which one is booted. I can specify which disk in the BIOS but after stage 2 it is always running from disk 2. When I have puppy linux on one disk and CentOs on the other I can boot off of either as selected by the system BIOS so the BIOS is not the issue. I think it is how the root option is passed in the kernel command in the grub.conf.
kernel /vmlinuz-2.6.18-128.el5 ro root=/dev/VolGroup00/LogVol00
I think when the OS searches for the /dev/VolGroup00/LogVol00 share is locates 2 since the disks are clones and uses the last one found. On information I have found for the kernel command and the root option it appears CentOs uses it differently. CentOs uses a volume name as specified /dev/VolGroup00/LogVol00 instead of a partition designator /dev/hda2. Is there a different way to specify /dev/VolGroup00/LogVol00 in CentOS for the root option for the kernel command of grub.conf?
View 7 Replies
View Related
May 26, 2009
I am in the process of writing a web-application using apache,mod-python and cheetah. I installed apache2, mod-python and cheetah and also enabled the userdir module in apache2 so that i can host the webpages inside my public_html folder.
The public_html folder has a folder named 'site' which gets displayed when I type "url" in the browser. There are subfolders inside this 'site' folder and the site folder also has an index.html page inside it.
But when I click on the site folder in the browser, I get a 'Requested url /~myusername/site/ not found'. There are files inside the folder with 777 permissions and still I get this error.
I use Ubuntu Jaunty with the following configuration - 'Apache/2.2.11 (Ubuntu) PHP/5.2.6-3ubuntu4.1 with Suhosin-Patch mod_python/3.3.1 Python/2.6.2 Server at localhost Port 80'.
These are the lines I have added to the /etc/apache2/sites-available/default file
Code:
<Directory "/home/myusername/public_html/site/">
SetHandler mod_python
PythonHandler mod_python.publisher
PythonDebug On
PythonAutoReload On
View 1 Replies
View Related
Apr 30, 2010
I'm running ubuntu 10.04 and I need to set up samba. I haven't used samba since ubuntu 8.10 and I don't know if there have been changes that I'm not aware of. I remember it being a simple process that started with editing the configuration file, but I keep getting this message:
Code:
/etc/samba/smb.conf': No such file or directory
Am I missing something? Has the configuration file changed names?
View 5 Replies
View Related
Jun 20, 2011
I am trying to install kernel 2.6.39.1 on ubuntu 11.04I am fllowing this link But may this link is little oldIt mentions a file /etc/lilo.conf to edit but this file is unavailable.where I can find this file r if the page which I mentioned is old then can anyone give me the link which guides me correctly abt how to install kernel 2.6.39.1 in ubuntu 11.04?
View 9 Replies
View Related
Mar 24, 2010
I'm just trying to figure out what is going on with FC12
Here is the error:
[root@localhost bigmac]# rkhunter --check
Invalid XINETD_CONF_PATH configuration option - non-existent pathname specified: /etc/xinetd.conf
View 1 Replies
View Related
Jul 28, 2010
While trying to run the file in PHP I am getting below error. httpd.conf not found Following directories (and its subdirectories) are accesible via Apache:
View 3 Replies
View Related
Nov 19, 2010
My only workaround is to select "computer" - this is now the only option on "places" that does not deliver a "file not found error" When I select computer I can still access the contents of my hard drive.
View 3 Replies
View Related
Jun 19, 2010
I have a problem with my Ubuntu 9.10. I found on some help forum on how to clean up the boot menu some of the options for previous updates.So I went to terminal, typed gksu gedit /boot/grub/menu.lst
View 3 Replies
View Related
Oct 31, 2010
To be honest, I am trying to install Linux Mint, but since this is based on Ubuntu, and I am comfortable with Ubuntu on my VM I decided to label it Ubuntu.
I have a 235 HDD and it is partitioned like this:
C: 150 GB (Windows) NTFS
D: 70 GB (Data) NTFS
G: 15 GB (for my not yet installed Linux) NTFS
I also followed this tutorial and now I have some sort of LiveCD inside my USB: [URL]. So, now I have a pen drive with an Ubuntu LiveCD and a 15GB ready for my Ubuntu!
This is what I do:
1 - connect pen to computer
2 - turn on computer
3 - pen start running and I load Linux like a LiveCD (yey!)
4 - Linux loads and I wait
5 - I click "Install linux"
6 - I configure the language, time zone and keyboard with no problems
7 - Disk partitioning ... it offers me 2 choices:
7.1 - Erase entire disk and install Ubuntu
7.2 - Manually partitioning: but drive C:, D: and G: do not appear!!!
I want to install my Linux on driver G:, but I don't find a "Install Linux in this specific partition" option!
View 9 Replies
View Related
Apr 5, 2011
I had my Laptop, a Dell Inspiron 1520, running Windows 7 and Windows XP - I had a few gigs of unallocated space, so I decided to install Kubuntu alongside it, worked fine no problem, with the exception of running out of space very quickly - I got fed up with it, and installed Kubuntu over the Windows XP partition (around 80gigs, and the first OS to be installed on the computer). After I installed it.
All was working perfectly until I rebooted to discover I am missing my Windows 7 boot option in GRUB, before I had to press Windows XP Embedded and it opened the boot dialog, but here I dont get the option, is there a GRUB 2 option I can change to allow it to show Windows 7? The Computer works perfectly, it's just the GRUB doesn't show Windows 7, and I'm hesitant to format its old partition and reinstall it due to the fact that it may over ride the grub and leave me without Kubuntu access?
View 1 Replies
View Related
Nov 1, 2010
I have downloaded and ran Austrumi-2.1.6 "Live CD" and although the OS booted up and connected to the Internet easily enough I just can't find the option to make the OS boot up using the English language. I must be missing something but can't figure out what?
View 5 Replies
View Related
Jun 14, 2010
I'm trying to install Apache2::Request module (from CPAN.org) and in shell there is such messages: I'm using openSUSE 11.1, Perl 5.8
[Code]...
View 2 Replies
View Related
Jan 31, 2010
I have an HP dv7-1285dx. First, I attempted to install openSuse 11.2 KDE via the live disk. A small ways through the installation, I was told that the image could not be properly copied to the disk. Then, I attempted to do it via the standard DVD, and a small ways through the installation I kept receiving errors saying that the packages could not be found, and gives me the option to skip. I can't install unless I skip all 600-something of them.
View 4 Replies
View Related
Jun 19, 2010
I'm using openSUSE 11.1, KDE I'm trying to install the module Apache2::Request to my OS. After the gzip -dc libapreq2-2.12.tar.gz | tar -xof - I typed in Shell these (as shown in INSTALLATION document of module): perl Makefile.PL --with-apache2-apxs=/path/to/apache2/bin/apxs Then something goes wrong, make doesn't work saying: make: *** No targets specified and no makefile found. Stop..
I think the problem is in the command perl Makefile.PL --with-apache2-apxs=/path/to/apache2/bin/apxs in section .../path/to/apache2/bin/apxs . What does mean ./path/to/apache2/bin/apxs? Maybe I should write the path to apache2 which contains a file named apxs? I did not find such file apxs. My apache2 path is /etc/apache2, but there is no file named apxs... Result for perl Makefile.PL --with-apache2-apxs=/path/to/apache2/bin/apxs:
[Code]....
View 3 Replies
View Related
Nov 19, 2010
I have suse10 64 bit installed. I am setting up a svn server on it. After installation and adding the modules ,while reloading the apache2 it's throwing the error as: HTML Code: httpd2-prefork: Syntax error on line 113 of /etc/apache2/httpd.conf: Syntax error on line 31 of /etc/apache2/sysconfig.d/loadmodule.conf: Cannot load /usr/lib64/apache2/mod_dav_svn.so into server: /usr/lib64/libsvn_subr-1.so.0: undefined symbol: apr_memcache_add_server
View 9 Replies
View Related
Dec 9, 2009
I am getting this error
Starting web server: apache2[Wed Dec 09 15:36:40 2009] [warn] NameVirtualHost XX.XX.XX.XXX:80 has no VirtualHosts(99)Cannot assign requested address: make_sock: could not bind to address 68.178.232.100:80
no listening sockets available, shutting down Unable to open logs failed!
also what is 68.178.232.100
View 1 Replies
View Related
Apr 1, 2011
I am using Cent OS 5.5 and i want configure DNS, but while configuring bind i am getting below error.
#/etc/init.d/named restart Stopping named: [ OK ]
Starting named:
Error in named configuration:
/etc/named.conf:57: open: /etc/named.root.hints: file not found[FAILED]
View 2 Replies
View Related