본문 바로가기

IT/03. Linux

[CentOS] Webmin 설치하기

@ CentOS 6.x


Webmin 은  웹 기반의 서버관리 프로그램입니다.

리눅스서버를 좀 더 쉽게 편하게 다가갈수 있을것 같네요 ^^


제가 사용한 리눅스 OS는  CentOS 6.8 

다른 리눅스 OS에서도 가능합니다.



Webmin Download URL

http://www.webmin.com/download.html



설치할때 사용할 파일

=>   webmin-1.860-1.noarch.rpm   (현재 기준 최신버젼)




1. Update System

# yum update


2. Download RPM version of Webmin  ( Webmin 다운로드 ,  wget 설치가 안되어 있다면 # yum install wget )

# wget http://prdownloads.sourceforge.net/webadmin/webmin-1.860-1.noarch.rpm


3. Install Perl module ( perl 모듈설치, Webmin이 perl 기반으로 만들어져서 설치가 되어야 함)

# yum install perl perl-core perl-Encode-Detect perl-Net-SSLeay openssl perl-IO-Tty 


4. Install the RPM (Webmin 설치)

# rpm -ivh webmin-1.860-1.noarch.rpm 


5. Open Linux firewall (방화벽 포트 오픈,  #vi /etc/sysconfig/iptables )

# vi /etc/sysconfig/iptables
   -A INPUT -p tcp -m tcp --dport 10000 -j ACCEPT 


 리눅스 방화벽 설정완료 후 network 서비스 재시작

 # service network restart   또는

 # /etc/init.d/iptables restart


6. Access Webmin  (웹 브라우져를 통해 접속 )


https://Server-IP-Address:10000


CentOS 서버의 root 계정을 이용하여 접속








Webmin UI 가 정말 깔금합니다. 

앞으로 많이 테스트 해봐야할듯 하네요.




'IT > 03. Linux' 카테고리의 다른 글

[ubuntu] FTP 서버구성  (0) 2017.12.07
[ubuntu] 인터넷 속도 측정  (1) 2017.10.10