You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/bin/bash
|
|
|
|
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
|
|
|
|
export PATH
|
|
|
|
LANG=en_US.UTF-8
|
|
|
|
|
|
|
|
|
|
|
|
mkdir -p /www/server
|
|
|
|
mkdir -p /www/wwwroot
|
|
|
|
mkdir -p /www/wwwlogs
|
|
|
|
mkdir -p /www/backup/database
|
|
|
|
mkdir -p /www/backup/site
|
|
|
|
|
|
|
|
|
|
|
|
apt install -y wget curl vixie-cron lsof
|
|
|
|
|
|
|
|
if [ ! -f /root/.acme.sh ];then
|
|
|
|
curl https://get.acme.sh | sh
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
if [ -f /etc/init.d/iptables ];then
|
|
|
|
|
|
|
|
iptables -I INPUT -p tcp -m state --state NEW -m tcp --dport 22 -j ACCEPT
|
|
|
|
iptables -I INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT
|
|
|
|
iptables -I INPUT -p tcp -m state --state NEW -m tcp --dport 443 -j ACCEPT
|
|
|
|
iptables -I INPUT -p tcp -m state --state NEW -m tcp --dport 888 -j ACCEPT
|
|
|
|
iptables -I INPUT -p tcp -m state --state NEW -m tcp --dport 7200 -j ACCEPT
|
|
|
|
iptables -I INPUT -p tcp -m state --state NEW -m tcp --dport 3306 -j ACCEPT
|
|
|
|
iptables -I INPUT -p tcp -m state --state NEW -m tcp --dport 30000:40000 -j ACCEPT
|
|
|
|
service iptables save
|
|
|
|
|
|
|
|
iptables_status=`service iptables status | grep 'not running'`
|
|
|
|
if [ "${iptables_status}" == '' ];then
|
|
|
|
service iptables restart
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
#安装时不开启
|
|
|
|
service iptables stop
|
|
|
|
|
|
|
|
echo "ubuntu dev ..."
|