samba 설치 되어 있는지 확인
#rpm -qa | grep samba
samba 설치
#yum install samba
samba 설정
#vi /etc/samba/smb.conf
[data]
comment = share <--코멘트
path = /work <-- 경로지정
writable = yes <-- 쓰기 가능 여부
public = yes <-- nobody 사용자에 대한 접근 권한 설정
이정도만 설정을 해주도 된다.
#smbpasswd -a root
New SMB password:
Retype new SMB password:
Added user root
그후 서비스 재시작
#service smb restart
그후 윈도우에서
\\192.168.1.100 <-- 삼바 서버 IP
그 후 사용자 이름과 암호 입력 하라고 나오면
사용자 이름 : root
암호 : 위에서 지정했던 암호
혹시 접속이 않되면 방화벽 설정!
#vi /etc/selinux/config 들어가서
SELINUX=disabled 로 변경
#vi /etc/sysconfig/iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 139 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 445 -j ACCEPT
출처: http://leegaworld.tistory.com/2 [밍깅료의 블로그]
-A INPUT -m state --state NEW -m tcp -p tcp --dport 445 -j ACCEPT
출처: http://leegaworld.tistory.com/2 [밍깅료의 블로그]
-A INPUT -m --state NEW -m tcp -p tcp --dport 139 -j ACCEPT
-A INPUT -m --state NEW -m tcp -p tcp --dport 445 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 139 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 445 -j ACCEPT
출처: http://leegaworld.tistory.com/2 [밍깅료의 블로그]
-A INPUT -m state --state NEW -m tcp -p tcp --dport 445 -j ACCEPT
출처: http://leegaworld.tistory.com/2 [밍깅료의 블로그]
추가 후
#service iptables restart
'리눅스' 카테고리의 다른 글
centos zabbix agent 설치 (0) | 2017.01.10 |
---|---|
Centos zabbix 설치 (0) | 2017.01.10 |
CentOS 6.8 설치 하기 (0) | 2017.01.09 |
CentOS selinux 설정 (0) | 2017.01.07 |
CentOS Rsync 설치 (0) | 2017.01.07 |