7
Tero Koskinen & Juuso Rintala

Tero Koskinen & Juuso Rintala. First we decided which OS we´re operating with › CentOS was the most familiar to us Then which services we´d like to

Embed Size (px)

Citation preview

Page 1: Tero Koskinen & Juuso Rintala.  First we decided which OS we´re operating with › CentOS was the most familiar to us  Then which services we´d like to

Tero Koskinen & Juuso Rintala

Page 2: Tero Koskinen & Juuso Rintala.  First we decided which OS we´re operating with › CentOS was the most familiar to us  Then which services we´d like to

First we decided which OS we´re operating with› CentOS was the most familiar to us

Then which services we´d like to have› Apache, SSL for protected page, PHP

counter, Samba for sharing files with Windows and Shoutcast for streaming mp3sEach of them was placed on one of the four virtual serversVNC client for accessing server remotelyOne virtual server is redirected to hamstero.dc.turkuamk.fi

Page 3: Tero Koskinen & Juuso Rintala.  First we decided which OS we´re operating with › CentOS was the most familiar to us  Then which services we´d like to

SMB (Server Message Block, "Samba") is a suite of programs supplied with all Linux distributions that enables UNIX systems to both access shared resources on Windows, and act as servers for it

Install and Configure1.yum install samba -y 2.chkconfig --level 123 smb on  3.cd /etc/samba 4.mv smb.conf smb.conf.backup 5.vi smb.conf 6.gedit /etc/samba/smb.conf

Page 4: Tero Koskinen & Juuso Rintala.  First we decided which OS we´re operating with › CentOS was the most familiar to us  Then which services we´d like to

[global] workgroup = Wrkgrp netbios name = smbserversecurity = SHAREpath = /homeencrypt passwords = yes   [share] path = /home/shareforce user = rootvalid users = JuTe public = yesavailable = yes

Page 5: Tero Koskinen & Juuso Rintala.  First we decided which OS we´re operating with › CentOS was the most familiar to us  Then which services we´d like to

Configure Users 1.add JuTe smbusers  2. passwd JuTe  3. smbpasswd -a JuTe

Restart Samba 1./etc/init.d/smb restart

Page 6: Tero Koskinen & Juuso Rintala.  First we decided which OS we´re operating with › CentOS was the most familiar to us  Then which services we´d like to
Page 7: Tero Koskinen & Juuso Rintala.  First we decided which OS we´re operating with › CentOS was the most familiar to us  Then which services we´d like to