Page 1 of 3 123 LastLast
Results 1 to 10 of 29

Thread: Linux Web Server

  1. #1
    Senior Member
    Join Date
    Oct 2001
    Posts
    752

    Question Linux Web Server

    My latest educational undertaking has been to set up a Linux web server using Apache. I just discovered that when you install Red Hat 7 as a web server, you don't get the graphical interface bawling, so I have been doing this in what is essentially Unix, which I have never touched before. It will be connecting to the internet through my LAN, which is already configured and ready.

    With that in mind, on to my questions (Yes, more than one).

    How do you configure a Linux box to participate on a network through the command terminal?
    How do I lock this thing down against hackers? I need to know any firewalls I may be able to use, any special configurations in Apache I might want to know about, and any holes in Linux I need to watch out for, and how to close them.
    How the hell do you save changes to a text file after editing it in Vim? Supposedly it should save the changes if you exit with :q, but it won't exit. It wants me to discard the changes by exiting with :q!. (this one has me frustrated)
    What else might I need to know?

    I'm also looking into some Unix books, so if you could recommend any good ones, I would appreciate it. I'm especially looking into the "For Dummies" series.

  2. #2
    Senior Member
    Join Date
    Jul 2001
    Posts
    138
    In RedHat there is a tool called netcfg, netconf, or netconfig. I can't remember the exact name. You can use this at the command line to easily set up networking. If that doesn't work you may need to read the networking HowTo's. To save a change in vim you need to use :wq

    Hope this helped at least a little.

    Happy Hacking
    -----------------------------------------------------
    Warfare is the Way of deception.
    -Sun Tzu \"The Art of War\"

  3. #3
    Senior Member
    Join Date
    Sep 2001
    Posts
    412
    You need to write the changes in vi before you can exit - :w to write and then :q to quit.
    Networking in linux is pretty easy to setup - if you have a dhcp server on your network (and if you don't, you should!) then dhcpcd eth0 (or whatever nic your connecting to the network with) should grab an ip - assuming your using dhcpcd - i'm not sure if red hat uses it or pump, in which case it would be pump eth0 (i think). If you need to manually set the address you can do this with ifconfig (man ifconfig) or use linuxconf - whichever you find handiest.
    Locking down your box is best done with iptables - if you didn't install them originally you'll need to recompile your kernel to use them - i don't think i'm the person to tell you about such complex operations as this so i'll pass you over to my good friend http://www.linuxdoc.org - do a search for iptables (and networking for that matter - i'm not the best at explaining things!)
    As for books, i think its pretty hard to go wrong with anything by http://www.oreilly.com/ - they have an extensive catalogue of linux books.

  4. #4

    ?

    maybe i've just always used a different version of vi, but to insert text when you are in command mode you hit 'i' to insert and 'a' to append. and to save and exit i always type ':x'

    is Vim a different editor than vi? if so i'm not familiar with vim, so sorry.
    Bradley Lamar

  5. #5

    Cool



    Usualy to lock down a linux server you could down load Beastali. I don't know if that is spelled right or not .......

    As well as Portsentry Thats pritty amazing, and then there is snort (a light whight intrusion detection system)

    Then there is ipchains or iptables depending on your kernel

    if its 2.2.4 then its ip chains and if its 2.4.x then it would be iptables...........

    And above all try to keep your system patched at all times!!!!

    Script kiddies love unpatched systems. Also int the /etc/ directory there is a file called initd.conf (vi that file and '#' comment out the ports you don't use) It makes it even more secure if you have less services running on your machine

    If you need any mre extra help I find

    www.linuxnewbie.org a good place
    -=SolarisMKA=-

  6. #6
    Senior Member
    Join Date
    Sep 2001
    Posts
    1,027
    Actually, I think you mean Bastille

    Ammo

  7. #7
    Senior Member
    Join Date
    Sep 2001
    Posts
    429

    Lightbulb

    Try WebMin for administration if you don't know *nix, it's a good interface to most of the admin stuff that you can see and modify from your browser, I'd recommend using the ssl option and limiting who can access from where as well.
    Webmin can be found .. http://www.webmin.com
    Good Luck!
    Jamie.

  8. #8

    Talking

    Originally posted by ammo
    Actually, I think you mean Bastille

    Ammo
    Yep thats the one!
    -=SolarisMKA=-

  9. #9
    Junior Member
    Join Date
    Nov 2001
    Posts
    9

    Your setup

    I would recommend using 'pico' or 'joe' to do your text editing since you are just starting off.

    Now I'm not sure whether Red Hat doesn't install a GUI if you set it up as a webserver or it just doesn't boot into it. Check for installed packages like XFree86 and verify what it did. If those exist, just modify the file /etc/inittab and change the value of the a line that will read *:3:* to *:5:*.

    Moreover, if your familiarity with Linux is strictly graphic-based and Red Hat hasn't installed a GUI Server (such as XFree86), then I'd recommend installing these packages from your CDs, along with your favorite WMs. Then as you gain more experience, you can remove the GUI or change it back to boot into a text login.

  10. #10
    Senior Member
    Join Date
    Oct 2001
    Posts
    752
    Ok, I got the Bastille part, now where do I get it? Can I get it for free, or do I have to pay for it? A free firewall would be preferable, considering I'm doing this on an extremely tight budget. I'm trying to see if I can do this without spending any money at all (besides hardware costs). So far, so good.

    Also, does anybody have any experience with Securepoint Firewall Server? If so, what do you think of it?

Posting Permissions

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