Centos 7 安裝Webmin

使用yum來安裝webmin

建議安裝前可以先使用yum update

1.新增repo檔

sudo nano /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 key Read More

Centos 7 Tomcat 使用 Fail2Ban

參考內容是Using Fail2ban with Tomcat

不過內容有些不太一樣,像是log的path,而且好像ban不會成功。

1.在/etc/fail2ban/jail.local增加一個jail 內容

[tomcat]
enabled  = true
port     = 8080,8443
filter   = tomcat
logpath  = /usr/share/tomcat/logs/localhost_access_log.*.txt
maxretry = 3
bantime = 600
action = firewallcmd-ipset[name=TOMCAT_PORT, port=8080, protocol=tcp]
#findtime = 600
# uncomment the next line to use a custom action
#action = echo-to-file

centos 7預設使用的firewall是firewallcmd,而不是iptables

jail.local

Read More

Raspbeery Pi 2安裝LAMP Web Service及Webmin管理

Raspberry Pi 2是一個很便宜的小型電腦,使用ARM Cortex-A7架構的CPU,記憶體有1G,只需要SD Card就能啟動,可以裝數種linux OS(for raspberry pi)及windows 10 IOC,要來當做個人家廳多媒體中心,或是簡單的Web Service實分夠用了。

LAMP即Linux Apache MySQL(Mariadb)及PHP的統稱,而Webmin是個Web GUI管理介面,如果不習慣ssh連線的人,是個十分推廌的選擇。

webmin

Read More