Page 1 of 2 12 LastLast
Results 1 to 10 of 13

Thread: 7.10 as intranet server?

  1. #1

    7.10 as intranet server?

    At installation, which packages would i need to install? LAMP? Samba? I have no idea but I do hope you do.

    Thanks!!

  2. #2
    Join Date
    Dec 2005
    Beans
    18,973
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: 7.10 as intranet server?

    What operating systems are the other computers running?
    Learning is not attained by chance, it must be sought for with ardor and attended to with diligence. Abigail Adams ( 1744 - 1818 ), 1780;

    My blog Poetry and More Free Ubuntu Magazine

  3. #3

    Re: 7.10 as intranet server?

    Morning Sef. The other operating systems are windows XP Pro and windows 2000 Pro. At some point in the next 6 months, Vista will get thrown into the mix as well.

  4. #4
    Join Date
    Aug 2007
    Location
    Manchester, UK
    Beans
    10,258
    Distro
    Ubuntu 11.10 Oneiric Ocelot

    Re: 7.10 as intranet server?

    Intranet Server - meaning displaying some sort of web page on the network only?

    I'm pretty sure apache could handle this, because you could connect to it using the PC name.

    E.g. say you called the server "Batman" you could connect to it over the network with http://Batman

    I'm not 100% sure, I've never done much intranet stuff before, but it could work

  5. #5

    Re: 7.10 as intranet server?

    Quote Originally Posted by Joeb454 View Post
    Intranet Server - meaning displaying some sort of web page on the network only?

    I'm pretty sure apache could handle this, because you could connect to it using the PC name.

    E.g. say you called the server "Batman" you could connect to it over the network with http://Batman

    I'm not 100% sure, I've never done much intranet stuff before, but it could work
    Yes, I would want to use it for displaying web pages over the lan.

  6. #6

    Re: 7.10 as intranet server?

    Would the LAMP package be the only added install? Sounds great if thats all it is.

  7. #7
    Join Date
    Aug 2007
    Location
    Manchester, UK
    Beans
    10,258
    Distro
    Ubuntu 11.10 Oneiric Ocelot

    Re: 7.10 as intranet server?

    Should be

    You'll need to put the files in /var/www/

    By default apache will load index.html Also you'll need to be root to edit files in that dir. So usually I make a directory in home, by doing the following on the server:
    Code:
    mkdir ~/www/
    sudo ln -s /var/www/ ~/www/
    This allows me to put the files in /home/<user>/www/ without being root

  8. #8

    Re: 7.10 as intranet server?

    Quote Originally Posted by Joeb454 View Post
    Should be

    You'll need to put the files in /var/www/

    By default apache will load index.html Also you'll need to be root to edit files in that dir. So usually I make a directory in home, by doing the following on the server:
    Code:
    mkdir ~/www/
    sudo ln -s /var/www/ ~/www/
    This allows me to put the files in /home/<user>/www/ without being root
    Will apache automatically serve from the new directory or will i need to change a file to point to the new directory?

  9. #9
    Join Date
    Oct 2006
    Location
    NL, EU
    Beans
    1,468
    Distro
    Ubuntu Development Release

    Re: 7.10 as intranet server?

    Sounds like LAMP is all you need, although with all those windows boxes you might want to look at samba too.

    Yeah, you normally would have to edit the apache config files. They are extensively documented, as you would expect with the most frequently used http-server, but there are also gui's out there. I personally use Webmin, which does most of what I need (which, admittedly, isn't much...)
    Duh

  10. #10
    Join Date
    Aug 2007
    Location
    Manchester, UK
    Beans
    10,258
    Distro
    Ubuntu 11.10 Oneiric Ocelot

    Re: 7.10 as intranet server?

    Apache will serve from /var/www/

    BUT

    The 2nd command links that folder to ~/www/ meaning that anything you put in /home/<yourUserName>/www/ will actually be in /var/www/

    It's a little easier to manage then

Page 1 of 2 12 LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •