Server :: Pointing To User Area On Debian 2.6.30-6 Gcc Version 4.3.4?
Nov 11, 2010name server not pointing to user area on debian 2.6.30-6 gcc version 4.3.4?
View 1 Repliesname server not pointing to user area on debian 2.6.30-6 gcc version 4.3.4?
View 1 RepliesI'm not exactly new to the linux world. I've been messing with it for six months now. I recently decided to host a public web server out of my home. The is nothing business related merely personal.Now that you have a brief background I will bring you the technical details.I'm apache2 with php, joomla, and mySQL on openSUSE 11.2. a dns server is currently configured. My problem is as follows I set up apache initially and used the default index.html page which simply says It Works. I configured my DNS at the domain registar godaddy.com. After changing the A record to point to my IP the server worked. I then proceeded to install Joomla which installed correctly.Now here is my problem. When I attempt to pull up my domain it appears my DNS is longer working properly and get a DNS error. When I attempt to go directly to IP with my server I still get the initial index.html that says it works. I'm not sure how this is possible and I have cleared all dns info, temp files cookies ect.... I have also had other people test this is as well. I've check my root document pointers for the apache website and they all point to the correct location.
My set up is as follows
Modem
Router
Windows 7 Machine
Sun Microsystems Virtual Box with openSUSE with the network adapter bridged so it can obtain an IP from my router
I'm completely lost at this point and have spent 2 days trying to resolve the issue, any help would be much appreciated. I look forward to everyones reply.
After a week of working with Debian, I decided to install the KDE3 version straight from an NetInstall CD. This fixed some issues for me as well as made networking and folder sharring a snap! But now its time to add all the extra packages I need.
Here's the problem: Using any kind of Package Manager yields the same results:
E: Could not get lock /var/lib/dpkg/lock - open (11 Resource temporarily unavailable)
E: Unable to lock the administration directory (var/lib/dpkg/), in another process using it?
RESULT=100
I've tried apt-get from root command line and the KPackage Manager that comes with KDE3 with same results. I have only one user that was created during Debian install. I'm having some other problems, from what I've seen on the net, they all seem to point to not having proper Super User access (I'm guessing here). What could cause this error? AND/OR How do I make sure I have top level access to the configure the system? (I tried logging in as "root", but the login errored out saying that this was not allowed).
We have 2 mail server & handling by 2 different company.1 of that mail server is not pointing to our DNS. how can I add that on our DNS Servers. So that we don't need to pay them for the DNS also.
View 1 Replies View RelatedI'll post an scenario and hopefully you can help me understand the concept and put me in the right track and do what I intend, if possible. Let's say I have a dedicated server with 2 static IPs each with an associated domain, let's call them www.site1.com and www.site2.com. Now, apache is running on it, I'd like to redirect anyone coming from site1.com to /home/site1/public_html and anyone coming from site2.com to /home/site2/public_html.In short, apache serving 2 entire roots depending on the accessed IP/domain. Whether the sites root are in the same parent folder, such as /home/site/site1_public_html and /home/site/site2_public_html or like above doesn't really matter, as long as it works.Additionally, do something similar with Postfix, so that I can have it running imap/smtp for foobar@site1.com and foobar@site2.com on the same server.At this moment, both apache and postfix are working, and we host only www.site1.com with the respective foobar@site1.com. But I'm not sure how to proceed or even if it's possible to achieve the above solution.
View 1 Replies View RelatedI updated bind to version bind-9.3.4-6.0.3.P1.el5_2 today, and then I started getting "Starting named: named: user 'named' unknown" messages. Selinux is enabled.
ID named shows:
uid=25(named) gid=25(named) groups=25(named) context=root:system_r:unconfined_t:SystemLow-SystemHigh
I've got an old SuSE box that is a SVN server using apache for ldap authentication. The suers are not able to log on for some reason so I am trying to find out where this box is pointed to authenticate. I do not know SuSE or ldap well enough to know where to look to find out this info.
View 10 Replies View RelatedI have a Dell Latitude D400 laptop running Wheezy (I can't upgrade to Jesse at the moment) and I want to try out the Pointing Stick on my keyboard. If you Google "Pointing Stick" you can find images of it. It's located in the middle of the "G", "H", and "B" keys. Now it doesn't do squat so I'd like to enable the Pointing Stick. How exactly would I do that?
I'm not looking to use it full time, I just want to play around with it.
I have folder inside /usr folder /usr/mywork and I want to make user account can only access and modifies files in it and this user can not modifie files out of thus maybe by using rssh or sftp
View 2 Replies View RelatedI'm using Ubuntu Server (32bit) on a machine at home. I've bought a domain name(s) via Heartinternet.co.uk and my ISP is Bethere.co.uk I have installed my LAMP Server on my home based server and it's accessible via my static IP address. HTTP is forwarded on my router to my Ubuntu (web)Server. Now then, in laymen's terms, I want my domain name to resolve to my Ubuntu Server. I have installed and configured Bind9 to this guide found online: http://goo.gl/M3Pk i understand that I need to do this in order to 'host' the domain name. Or alternatively, if my presumptions are correct, I could leave the domain name with the registrar and use their DNS config panel to add an A record to point at my webserver (static IP address)???
If I forward port 53 (default for DNS) to my server (after setting up bind9 correctly) and within my domain name hosting options change the nameserver settings to point at my static ip address then would this be enough to host my domain from my home network?
I feel I nearly have a whole picture but...not quite. There's a multitude of vague guides on the internet (vague or I'm not reading them properly!)
I recently installed Linux Mint and went through the whole business, but when I go to my DNS's it just goes to my FIOS login.
dns:
foxwebhosting.dyndns.org
foxwebhosting2.dyndns.org
I tried everything in mind, but I think the big issue has to do with the reason why it's picking up the FIOS login and not even the index of my server.
in bash scripting...say I want to take the input from a user via a question...I would do this:
Quote:
#!/bin/bash
echo "How large do you want this partition to be in GB (enter only the number)?" read PART_SIZE echo "You want your partition to be $PART_SIZE GB" But I don't want to echo it back to the screen, I want to add it to the content of /etc/fstab. I have been mucking around with sed to find the tmpfs partition in /etc/fstab and add the partition size attribute (this is to use the onboard RAM as a volatile partition)...but am not having any luck...
The portion of /etc/fstab that uses /dev/shm for the tmpfs partition is:
tmpfs /dev/shm tmpfs defaults 0 0
So, if a user says "24" GB to the answer (from above), how do I get it to automatically add that value to the tmpfs partition line in /etc/fstab? So it would look like:
tmpfs /dev/shm tmpfs size=24g,defaults 0 0
I understand that I would also have to come up with a way to put "size=XXg", which I could do with a copied over generic file before this action...then the script would have to find "XX" and replace it with the user's figure...
i have successfully done the setup of postfix and dovecot on this link [URL]I run Cent OS on top of window 7 via VM Player,i want to access mailbox from windows 7 using email client like Thunderbird and Outlook. What setting i need to do in my mail server ?
View 1 Replies View RelatedI installed fwknop-server automatically using apt-get, however, got version is 2.0.0rc2, while I found that version 2.6 is available. How can I get it in the easiest way? I'm using debian wheezy 3.2.54-2. I tried apt-get update, upgrade and dist-upgrade, nothing worked.
View 3 Replies View RelatedI would like to recompile the openssh-server with a different version string. I download and compile the source, but so far I have only been able to compile and run the client. Not the server.
Steps taken:
Is there a flag or option I need to specify to insure that it creates the sshd?
I use Debian Squeeze and I would like to ask if someone knows a program to take a screenshot of a selected area of my screen. I already know imageshack and scrot, but they don't do what I need because I need to know previously coordinates and the dimension of the selected area. I need a program that I could select a rectangle with my mouse to take a screenshot of that part.I don't know if I'm clear what I'm trying to say is that I need something like this google-chrome plugin[URL]
View 4 Replies View RelatedToday i got my second server online and I'm in a need of some help :> I'm running a debian 5.0 64bit.Was wondering How to add a new user to the server, with it's own password and so that user can only view a folder set for him via FTP. Something like this
User: Andrew
passw: xxxxxx
Folder Access: Server5
I don't want to give out my root password, thats why i need this.
Installed Zend Server CE on 10.04 - install mostly fine. But phpmyadmin shows this error; "Your PHP MySQL library version 5.0.83 differs from your MySQL server version 5.1.41" I have followed the Zend online docs and used a DEB install. Why would these versions be different?how do I fix it so that the two are in sync?
View 3 Replies View RelatedI installed debian squeeze on an old computer that I found. (Pentium 4 3.2GHz HT) I installed from the i386 version, but now the uname command shows that its an i686. I don't find many packages that I need using apt-get. Do I need to compile each package I need from source or use dpkg to install the deb of an i386 version?
Can I use the i386 version on this computer rather than the i686 version? Will it cause a signifncant performance decreaes? (I use this computer to mostly do some reading and writing and file storage, no gaming etc.) How do I force the installer to use the i386 version?
[Code]...
I am NOT willing (nor is my IBM T41 for that matter) to make from source the new conky 1.7.2, so can someone give me a deb file for squeeze that I can install to my system to replace my current 1.7.1 conky? I really want to use lua scripts. (Specifically: [URL])
how to remove the black area behind conky without using compositing?
At home I have two computers running linux connected to the same router. I would like to be able to connect them so that I can move files between them and execute simple commands. What is the most simple way to access a prompt on the other computer or to mount a partition currently used by the other computer?Using the www it is possible to connect two computers using ssh, but it should be easier to do this over the LAN, right? I have been googling a lot but not found anything.
View 10 Replies View RelatedSometimes a kernel image seems to have the same version as the backported kernel image, for example:
linux-image-2.6.32-bpo.5-amd64
linux-image-2.6.32-5-amd64
What are the differences between the two?
I am using Testing and after an update to one of the billion gnome packages a new Icon in the notification area appeared. It looks like this:gswitchit.png (12.02 KiB) Viewed 251 times
View 1 Replies View RelatedI have a problem with Gnome-screenshot and Select area to grab : a crosshair appears, but no lines to select an area. I've also added a Custom ApplicationLauncher to my gnome-panel with command :import -frame screenshot.png having the same problem..The weird thing is that after using ksnapshot ( I've been using KDE before ) the aforementioned applications will work as they should
View 7 Replies View RelatedI recentlty did a new install and the printer icon no longer shows up in the notification area when printing....I cannot figure out what is missing or did they omit this...
View 3 Replies View RelatedI have a webserver with a few users on and i wonder how i can limit the bandwith usage for each user on my server ?
View 1 Replies View RelatedI want to upgrade mediawiki software from version 1.6 to version 1.16 . The newer version is supposed to be installed on another server. I am trying to migrate the old mediawiki mysql database with no success.
I run the following commands -
Code:
Code:
to restore db on new server -
Code:
I get the following error message -
Code:
How do the version numbers compare? Are they identical? I have Iceweasel 3.5.13, does that mean I essentially have Firefox 3.5.13?
View 11 Replies View RelatedThings beyond my control are causing me to rush a bit in getting the website moved. I'm working hard to try and get it done, but something else has come up that SSL Certificate.I know that our website's "basket" area is protected by an SSL certificate to ensure customer information, especially credit info, is secure. With the move to Amazon's service, it looks like I may need to create our own self-signed SSL certificate to ensure the basket area remains secure.
I have found guides that walk through how to make one yourself and configuring apache to allow it, but something else has come to mind. The guides I found don't really indicate where the SSL certificate goes afterwards, and also doesn't suggest which sections should be governed by the certificate (as only the basket section uses it, not anything else). How would I find out that information?
I'M A NOVICE and some days ago my web server was down (apache issue) and I found the following file called .bash_history in the folder /var/www/ :
cd /tmp
ls
wget [MODERATED]
[code]...