接上篇:
http://www.javashuo.com/article/p-yofohysg-ku.htmlpython
screen -S xxx screen -r xxx screen -D -r <session-id>
-D -r 先踢掉前一用戶,再登錄。mysql
screen -X -S 31978 quit
FBI WARNING 一級引用linux
Warning here. 二級引用git
Warning here too.三級引用github
Item | Value | Qty |
---|---|---|
Comput | 1600$ | 5 |
phone | 12$ | 20 |
I am a url of Baidu.redis
This is 粗體
This is 斜體sql
第一段docker
第二段shell
第三段npm
while true: do echo "hehe"; done for i in a b c do echo "Hehe2"; done
while true:<br/>do echo "hehe";<br/>done
docker cp /home/ok/mini.ok.com.cn.key 6f82d5f30f14:/root wget -P ~ https://github.com/yeasy/docker_practice/raw/master/_local/.bashrc_docker; echo "[ -f ~/.bashrc_docker ] && . ~/.bashrc_docker" >> ~/.bashrc; source ~/.bashrc
wget http://sourceforge.net/projects/denyhosts/files/denyhosts/2.6/DenyHosts-2.6.tar.gz
[root@www ~]# tar zxvf DenyHosts-2.6.tar.gz
[root@www ~]# cd DenyHosts-2.6
安裝部署
[root@www DenyHosts-2.6]# yum install python -y
[root@www DenyHosts-2.6]# python setup.py install
準備好默認的配置文件
[root@www DenyHosts-2.6]# cd /usr/share/denyhosts/
[root@www denyhosts]# cp denyhosts.cfg-dist denyhosts.cfg
[root@www denyhosts]# cp daemon-control-dist daemon-control
編輯配置文件denyhosts.cfg
chown root daemon-control #添加root權限
chmod 700 daemon-control #修改成可執行文件
ln -s /usr/share/denyhosts/daemon-control /etc/init.d #對daemon-control進行軟鏈接,方便管理
安裝到這一步就完成了。
/etc/init.d/daemon-control start #啓動denyhosts
chkconfig daemon-control on #將denghosts設成開機啓動
export http_proxy=http://192.168.2.133:3188
[root@BOARD squid]# grep -vE "#|^$" squid.conf
acl SSL_ports port 443 acl CONNECT method CONNECT http_access deny !Safe_ports http_access deny CONNECT !SSL_ports http_access allow localhost manager http_access deny manager http_access allow localnet http_access allow localhost http_access deny all http_port 3188 coredump_dir /var/spool/squid refresh_pattern ^ftp: 1440 20% 10080 refresh_pattern ^gopher: 1440 0% 1440 refresh_pattern -i (/cgi-bin/|\?) 0 0% 0 refresh_pattern . 0 20% 4320
yum install https://download.postgresql.org/pub/repos/yum/9.3/redhat/rhel-7-x86_64/pgdg-redhat93-9.3-2.noarch.rpm yum install postgresql93-server /usr/pgsql-9.3/bin/postgresql93-setup initdb systemctl enable postgresql-9.3 systemctl start postgresql-9.3
/etc/passwd
#user1:x:500:500::/home/user1:/bin/bash
/etc/shadow 通常該文爲只讀屬性,不建議修改
user1:*$1$HsYY3Xxn$iDxguvDB8vsSeM3VjxKbq/:14817:0:99999:7:::
#usermod -L newuser1
#usermod -U newuser1
cp -R /etc/yum.repos.d /etc/yum.repos.d.bak wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
yum -y install epel-release yum clean all yum makecache
ulimit -SHn 655350
more /etc/security/limits.conf
* soft nofile 655350 * hard nofile 655350 * soft nproc 655350 * hard nproc 655350
more /etc/sysctl.conf
vm.swappiness = 0 net.ipv4.neigh.default.gc_stale_time=120 net.ipv4.conf.all.rp_filter=0 net.ipv4.conf.default.rp_filter=0 net.ipv4.conf.default.arp_announce = 2 net.ipv4.conf.all.arp_announce=2 net.ipv4.tcp_max_tw_buckets = 5000 net.ipv4.tcp_syncookies = 1 net.ipv4.tcp_max_syn_backlog = 1024 net.ipv4.tcp_synack_retries = 2 net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 net.ipv6.conf.lo.disable_ipv6 = 1 net.ipv4.conf.lo.arp_announce=2 kernel.sem = 250 32000 100 10000 fs.file-max = 655536 vm.overcommit_memory = 1 net.core.somaxconn = 1024 net.ipv4.tcp_fin_timeout = 30
sysctl -p
查看SELinux狀態:
SELinux status: enabled
關閉SELinux:
臨時關閉(不用重啓機器):
setenforce 0 ##設置SELinux 成爲permissive模式
##setenforce 1 設置SELinux 成爲enforcing模式
修改配置文件須要重啓機器:
修改/etc/selinux/config 文件
將SELINUX=enforcing改成SELINUX=disabled
重啓機器便可
yum install -y net-tools vim lrzsz tree screen lsof tcpdump wget ntpdate
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
nuxt build nuxt start npm run generate
redis-dump -u :password@xxx.xxx.xxx.xxx:6379 > redis.json
cat redis.json | redis-load -u :password@localhost
yum install ruby rubygems ruby-devel openssl* gem sources --remove https://rubygems.org/ gem sources -a https://gems.ruby-china.org/ gem sources -u gem sources -l gem update --system gem install redis-dump gem install -n /usr/local/bin redis-dump --pre pod setup
yum uodate kernel
檢查項: 系統crontab權限設置
加固建議: 依次執行:
rm -f /etc/cron.deny rm -f /etc/at.deny touch /etc/cron.allow touch /etc/at.allow chmod 0600 /etc/cron.allow chmod 0600 /etc/at.allow
檢查項: 禁止主機進行路由轉發
加固建議: 執行
sysctl -w net.ipv4.ip_forward=0,
再查看/etc/sysctl.conf中是否存在net.ipv4.ip_forward=0,不存在則添加
檢查項: 禁止轉發ICMP重定向報文
加固建議: 執行
sysctl -w net.ipv4.conf.all.send_redirects=0,
再查看/etc/sysctl.conf中是否存在net.ipv4.conf.all.send_redirects=0,不存在則添加
檢查項: 禁止轉發ICMP重定向報文
加固建議: 執行
sysctl -w net.ipv4.conf.default.send_redirects=0,
再查看/etc/sysctl.conf中是否存在net.ipv4.conf.default.send_redirects=0,不存在則添加
檢查項: 禁止包含源路由的ip包
加固建議: 執行
sysctl -w net.ipv4.conf.default.accept_redirects=0,
再查看/etc/sysctl.conf中是否存在net.ipv4.conf.default.accept_redirects=0,不存在則添加
檢查項: 禁止轉發安全ICMP重定向報文
加固建議: 執行
sysctl -w net.ipv4.conf.all.secure_redirects=0,
再查看/etc/sysctl.conf中是否存在net.ipv4.conf.all.secure_redirects=0,不存在則添加
檢查項: 禁止轉發安全ICMP重定向報文
加固建議: 執行
sysctl -w net.ipv4.conf.default.secure_redirects=0,
再查看/etc/sysctl.conf中是否存在net.ipv4.conf.default.secure_redirects=0,不存在則添加
檢查項: 啓用反轉地址路徑過濾
加固建議: 執行
sysctl -w net.ipv4.conf.all.rp_filter=1,
再查看/etc/sysctl.conf中是否存在net.ipv4.conf.all.rp_filter=1,不存在則添加
檢查項: 啓用反轉地址路徑過濾
加固建議: 執行
sysctl -w net.ipv4.conf.default.rp_filter=1,
再查看/etc/sysctl.conf中是否存在net.ipv4.conf.default.rp_filter=1,不存在則添加
檢查項: 禁止ipv6路由廣播
加固建議: 執行
sysctl -w net.ipv6.conf.all.accept_ra=0,
再查看/etc/sysctl.conf中是否存在net.ipv6.conf.all.accept_ra=0,不存在則添加
檢查項: 禁止ipv6路由廣播
加固建議: 執行
sysctl -w net.ipv6.conf.default.accept_ra=0,
再查看/etc/sysctl.conf中是否存在net.ipv6.conf.default.accept_ra=0,不存在則添加
檢查項: 禁止ipv6路由重定向
加固建議: 執行
sysctl -w net.ipv6.conf.all.accept_redirects=0,
再查看/etc/sysctl.conf中是否存在net.ipv6.conf.all.accept_redirects=0,不存在則添加
檢查項: 禁止ipv6路由重定向
加固建議: 執行
sysctl -w net.ipv6.conf.default.accept_redirects=0,
再查看/etc/sysctl.conf中是否存在net.ipv6.conf.default.accept_redirects=0,不存在則添加
檢查項: 密碼受權新密碼與老密碼不能重複
加固建議: 在/etc/pam.d/password-auth中添加:password sufficient pam_unix.so remember=3 ,remember的值表示這次設置密碼與過去3次不一樣
檢查項: 系統受權新密碼與老密碼不能重複
加固建議: 在/etc/pam.d/system-auth中添加:password sufficient pam_unix.so remember=3 ,remember的值表示這次設置密碼與過去3次不一樣
檢查項: rsyslog日誌文件權限配置
加固建議: 在/etc/rsyslog.conf中添加:$FileCreateMode 0640
檢查項: SSHD強制使用V2安全協議
加固建議: 在/etc/ssh/sshd_config中取消Protocol註釋符號#
檢查項: SSHD僅記錄ssh用戶登陸活動
加固建議: 在/etc/ssh/sshd_config中取消LogLevel INFO註釋符號#
檢查項: SSHD僅記錄ssh用戶登陸活動
加固建議: 在/etc/ssh/sshd_config中取消MaxAuthTries註釋符號#,設置自定義最大密碼嘗試失敗次數
檢查項: 清理主機遠程登陸歷史主機記錄
加固建議: 在/etc/ssh/sshd_config中取消IgnoreRhosts yes註釋符號#
檢查項: 禁止主機認證登陸
加固建議: 在/etc/ssh/sshd_config中取消HostbasedAuthentication no註釋符號#
檢查項: 禁止空密碼用戶登陸
加固建議: 在/etc/ssh/sshd_config中取消PermitEmptyPasswords no註釋符號#
檢查項: 禁止用戶修改環境變量
加固建議: 在/etc/ssh/sshd_config中取消PermitUserEnvironment no註釋符號#
檢查項: 設置輸入密碼間隔時間
加固建議: 在/etc/ssh/sshd_config中取消LoginGraceTime前註釋符,同時設置輸入密碼時間間隔秒數
檢查項: 設置用戶密碼最小長度
加固建議: 在/etc/security/pwquality.conf中取消minlen註釋符號#,同時設置最小密碼長度建議10位以上
檢查項: 設置用戶密碼數字位數
加固建議: 在/etc/security/pwquality.conf中取消dcredit註釋符號#,同時設置爲負數建議-1最少包含1位數字
檢查項: 設置用戶密碼大寫字母位數
加固建議: 在/etc/security/pwquality.conf中取消ucredit註釋符號#,同時設置爲負數建議-1最少包含1位大寫字母
檢查項: 設置用戶密碼小寫字母位數
加固建議: 在/etc/security/pwquality.conf中取消lcredit註釋符號#,同時設置爲負數建議-1最少包含1位小寫字母
檢查項: 設置用戶密碼特殊字符位數
加固建議: 在/etc/security/pwquality.conf中取消ocredit註釋符號#,同時設置爲負數建議-1最少包含1位特殊字符
檢查項: 強制密碼失效時間
加固建議: 在/etc/login.defs 設置強制密碼失效時間,建議值365
檢查項: 密碼修改最小間隔時間
加固建議: 在/etc/login.defs 設置密碼修改最小間隔時間,建議值7
檢查項: 設置有密碼帳戶不活動最大時間
加固建議: 使用以下命令設置有密碼帳戶不活動最大時間值:useradd -D -f 90,建議值90
檢查項: 檢查/boot/grub2/grub.cfg文件ACL屬性
加固建議: 執行:
chmod 0600 /boot/grub2/grub.cfg
檢查項: 檢查/etc/crontab文件ACL屬性
加固建議: 執行:
chmod 0600 /etc/crontab
檢查項: 檢查/etc/cron.hourly文件ACL屬性
加固建議: 執行:
chmod 0600 /etc/cron.hourly
檢查項: 檢查/etc/cron.daily文件ACL屬性
加固建議: 執行:
chmod 0600 /etc/cron.daily
檢查項: 檢查/etc/cron.weekly 文件ACL屬性
加固建議: 執行:
chmod 0600 /etc/cron.weekly
檢查項: 檢查/etc/cron.monthly 文件ACL屬性
加固建議: 執行:
chmod 0600 /etc/cron.monthly
檢查項: 檢查/etc/cron.d 文件ACL屬性
加固建議: 執行:
chmod 0600 /etc/cron.d
跳板機操做:
su - ok ssh-copy-id -i /home/ok/.ssh/id_rsa.pub -p 20002 ok@192.168.2.133
systemctl stop firewalld systemctl disable firewalld yum list all iptables* yum install iptablesyum install iptables-services.x86_64 -y systemctl start iptables systemctl status iptables systemctl enable iptables iptables -F iptables -X iptables -Z iptables -A INPUT -s 192.168.2.133/32 -j ACCEPT iptables -A INPUT -s 192.168.2.134/32 -j ACCEPT iptables -A INPUT -s 192.168.2.135/32 -j ACCEPT iptables -A INPUT -p tcp -m multiport --dport 18089,18080,18090,60010,50070,10002,8888,8889,11000,8088,19888 -s 192.168.2.136/32 -j ACCEPT iptables -A INPUT -p tcp -m multiport --dport 18089,18080,18090,60010,50070,10002,8888,8889,11000,8088,19888 -s 0.0.0.0/0 -j DROP service iptables save
iptables -A INPUT -s 10.0.0.0/8 -j ACCEPT iptables -A INPUT -p tcp -i eth1 --dport 3306 -s 192.168.2.136/32 -j ACCEPT iptables -A INPUT -p tcp -i eth1 --dport 3306 -s 0.0.0.0/0 -j DROP
innobackupex --defaults-file=/etc/percona-server.conf.d/mysqld.cnf --user=root --password=ok --socket=/var/lib/mysql/mysql.sock /data/backup/
systemctl stop mysql rm -rf /opt/percona-server/mysql/* innobackupex --defaults-file=/etc/percona-server.conf.d/mysqld.cnf --copy-back --rsync /data/backup/2018-01-04_17-11-19/ chown -R mysql.mysql /opt/percona-server/mysql/ systemctl start mysql
innobackupex --apply-log --use-memory=32M /data/backup/2018-01-04_17-11-19/ systemctl stop mysql cp -a /data/backup/2018-01-04_17-11-19/* /opt/percona-server/mysql/ chown -R mysql.mysql /opt/percona-server/mysql/ systemctl start mysql
首先全量備份:
innobackupex --defaults-file=/etc/percona-server.conf.d/mysqld.cnf --user=root --password=ok --socket=/var/lib/mysql/mysql.sock --no-timestamp /data/backup/base_full innobackupex --defaults-file=/etc/percona-server.conf.d/mysqld.cnf --user=root --password=ok --socket=/var/lib/mysql/mysql.sock --no-timestamp --incremental-basedir=/data/backup/base_full --incremental /data/backup/one_inc
systemctl stop mysql innobackupex --apply-log --use-memory=32M /data/backup/base_full/ innobackupex --apply-log --use-memory=32M --redo-only --incremental-dir=/data/backup/one_inc /data/backup/base_full/
\cp -R /data/backup/base_full/* /opt/percona-server/mysql/ chown -R mysql.mysql /opt/percona-server/mysql/ systemctl start mysql
usermod -u 91 tomcat groupmod -g 91 tomcat