FTP Server service.
After all configuration and installation. Now, lets setting FTP Server. We use vsftpd for FTP server. You can find another setting for FTP server in another article in this blog.
1. Install FTP server service.
# yum install vsftpd
2. Start FTP server service.
# /etc/init.d/vsftpd start
Time server configuration.
Now, lets configure time synchronization in server side.
1. Install time synchronization service.
# yum install ntp system-config-date firstboot
2. (Optional) Set your server time.
# ntpdate 0.pool.ntp.org
3. Start service
# /etc/init.d/ntpd start
DHSP Server service.
Setting our DHCP server. You can find another setting for DHCP server in another article in this blog.
1. Install DHCP Package.
# yum install dhcp
2. Configure /etc/dhcpd.conf file. Fill some configuration such as IP for DNS, NTP and Router. (You can find complete article for DHCP Server in another article in this blog.)
3. Start DHCP service.
# /etc/init.d/dhcpd start
Configuring all service.
Last configuration for building server is configure all service to automatically start after system booting.
1. Open System | Administration | Server Settings | Services.
2. Choose Background Services tab, and mark all services (such as dhcpd, httpd, mysqld, named and ftp service) that need to start when system running. Then save this configuration.
3. Open System | Administration | Security Level and Firewall.
4. Choose Firewall Options tab, mark WWW (HTTP), Secure WWW (HTTPS) and FTP.
5. Choose SELinux tab. Change SELinux Setting option (ex : Permissive).
6. Click OK and Yes.
Wow, it’s a long time to build server. Now, I need bread and coffee to take a rest. Your server security levels depend on your configuration.
Tags: FC6, fedora core 6, fedora server, setting up server, linux server, setting server fedora, dns server, dhcp server, ftp server, time server, building server