Please help us improve HowtoForge and take our survey:
Fedora 8 Server Setup: LAMP, Email, DNS, FTP, ISPConfig - Page 3
4 Adjust /etc/hostsNext we edit /etc/hosts. Make it look like this: vi /etc/hosts
It is important that you add a line for server1.example.com and remove server1.example.com and server1 from the 127.0.0.1 line.
5 Configure Additional IP Addresses(This section is totally optional. It just shows how to add additional IP addresses to your network interface eth0 if you need more than one IP address. If you're fine with one IP address, you can skip this section.) Let's assume our network interface is eth0. Then there is a file /etc/sysconfig/network-scripts/ifcfg-eth0 which looks like this: cat /etc/sysconfig/network-scripts/ifcfg-eth0
Now we want to create the virtual interface eth0:0 with the IP address 192.168.0.101. All we have to do is to create the file /etc/sysconfig/network-scripts/ifcfg-eth0:0 which looks like this (we can leave out the HWADDR line as it is the same physical network card): vi /etc/sysconfig/network-scripts/ifcfg-eth0:0
Afterwards we have to restart the network: /etc/init.d/network restart You might also want to adjust /etc/hosts after you have added new IP addresses, although this is not necessary. Now run ifconfig You should now see your new IP address in the output: [root@server1 ~]# ifconfig
6 Configure The FirewallI want to install ISPConfig at the end of this tutorial which comes with its own firewall. That's why I disable the default Fedora firewall now. Of course, you are free to leave it on and configure it to your needs (but then you shouldn't use any other firewall later on as it will most probably interfere with the Fedora firewall). Run system-config-securitylevel Select Disabled and press OK. To check that the firewall has really been disabled, you can run iptables -L afterwards. The output should look like this: [root@server1 ~]# iptables -L
7 Disable SELinuxSELinux is a security extension of Fedora that should provide extended security. In my opinion you don't need it to configure a secure system, and it usually causes more problems than advantages (think of it after you have done a week of trouble-shooting because some service wasn't working as expected, and then you find out that everything was ok, only SELinux was causing the problem). Therefore I disable it (this is a must if you want to install ISPConfig later on). Edit /etc/selinux/config and set SELINUX=disabled: vi /etc/selinux/config
Afterwards we must reboot the system: shutdown -r now
8 Install Some SoftwareFirst we import the GPG keys for software packages: rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY* Then we update our existing packages on the system: yum update Now we install some software packages that are needed later on: yum install fetchmail wget bzip2 unzip zip nmap openssl lynx fileutils ncftp gcc gcc-c++
|





print: 


Recent comments
21 hours 43 min ago
2 days 5 hours ago
3 days 4 hours ago
4 days 13 hours ago
4 days 23 hours ago
5 days 10 hours ago
6 days 20 hours ago
1 week 3 days ago
1 week 3 days ago
1 week 4 days ago