CentOS6にWebminをインストールする方法
CentOS6にWebminをインストールする方法は次のとおりです。
1.リポジトリの追加
vi /etc/yum.repos.d/webmin.repo
[Webmin]
name=Webmin Distribution Neutral
baseurl=http://download.webmin.com/download/yum
mirrorlist=http://download.webmin.com/download/yum/mirrorlist
enabled=1
2.GPGキーのインポート
rpm --import http://www.webmin.com/jcameron-key.asc
3.リポジトリの更新
yum check-update
4.Webminのインストール
yum install webmin
5.自動起動設定
chkconfig webmin on
service webmin start
6.ファイヤーウォール設定
iptables -I INPUT -p tcp --dport 10000 -j ACCEPT
service iptables save
1.リポジトリの追加
vi /etc/yum.repos.d/webmin.repo
[Webmin]
name=Webmin Distribution Neutral
baseurl=http://download.webmin.com/download/yum
mirrorlist=http://download.webmin.com/download/yum/mirrorlist
enabled=1
2.GPGキーのインポート
rpm --import http://www.webmin.com/jcameron-key.asc
3.リポジトリの更新
yum check-update
4.Webminのインストール
yum install webmin
5.自動起動設定
chkconfig webmin on
service webmin start
6.ファイヤーウォール設定
iptables -I INPUT -p tcp --dport 10000 -j ACCEPT
service iptables save
コメント
コメントを投稿