网站综合信息 yinheli.com
    • 标题:
    • Dev Notes 
    • 关键字:
    •  
    • 描述:
    •  
    • 域名信息
    • 域名年龄:17年22天  注册日期:2008年09月27日  到期时间:2022年09月27日
      邮箱:DomainAbuse  电话:
      注册商:Alibaba Cloud Computing (Beijing) Co., Ltd. 
    • 备案信息
    • 备案号: 
    网站收录SEO数据
    • 搜索引擎
    • 收录量
    • 反向链接
    • 其他
    • 百度
    • 2  
    • 26  
    • 快照:2014-06-17  
    • Google
    • 3  
    • 0  
    • pr:0  
    • 雅虎
    • 0  
    •  
    •  
    • 搜搜
    • 0  
    •  
    •  
    • 搜狗
    • 0  
    •  
    • 评级:1/10  
    • 360搜索
    • 0  
    •  
    •  
    域名流量Alexa排名
    •  
    • 一周平均
    • 一个月平均
    • 三个月平均
    • Alexa全球排名
    • -  
    • 平均日IP
    • 日总PV
    • 人均PV(PV/IP比例)
    • 反向链接
    • dmoz目录收录
    • -  
    • 流量走势图
    域名注册Whois信息

    yinheli.com

    域名年龄: 17年22天
    注册时间: 2008-09-27
    到期时间: 2022-09-27
    注 册 商: Alibaba Cloud Computing (Beijing) Co., Ltd.
    注册邮箱: DomainAbuse

    获取时间: 2019年08月29日 10:13:16
    Domain Name: YINHELI.COM
    Registry Domain ID: 1521652880_DOMAIN_COM-VRSN
    Registrar WHOIS Server: grs-whois.hichina.com
    Registrar URL: http://www.net.cn
    Updated Date: 2017-07-28T16:23:44Z
    Creation Date: 2008-09-27T10:02:32Z
    Registry Expiry Date: 2022-09-27T10:02:32Z
    Registrar: Alibaba Cloud Computing (Beijing) Co., Ltd.
    Registrar IANA ID: 420
    Registrar Abuse Contact Email: DomainAbuse
    Registrar Abuse Contact Phone: +86.95187
    Domain Status: ok https://icann.org/epp#ok
    Name Server: F1G1NS1.DNSPOD.NET
    Name Server: F1G1NS2.DNSPOD.NET
    DNSSEC: unsigned
    URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
    >>> Last update of whois database: 2019-08-29T02:13:00Z <<<

    For more information on Whois status codes, please visit https://icann.org/epp

    Domain Name: yinheli.com
    Registry Domain ID: 1521652880_DOMAIN_COM-VRSN
    Registrar WHOIS Server: grs-whois.hichina.com
    Registrar URL: http://whois.aliyun.com
    Updated Date: 2017-07-28T16:23:44Z
    Creation Date: 2008-09-27T10:02:32Z
    Registrar Registration Expiration Date: 2022-09-27T10:02:32Z
    Registrar: Alibaba Cloud Computing (Beijing) Co., Ltd.
    Registrar IANA ID: 420
    Reseller:
    Domain Status: ok https://icann.org/epp#ok
    Registrant City:
    Registrant State/Province: bei jing
    Registry Registrant ID: Not Available From Registry
    Name Server: F1G1NS1.DNSPOD.NET
    Name Server: F1G1NS2.DNSPOD.NET
    DNSSEC: unsigned
    Registrar Abuse Contact Email: DomainAbuse
    Registrar Abuse Contact Phone: +86.95187
    URL of the ICANN WHOIS Data Problem Reporting System: http://wdprs.internic.net/
    >>>Last update of WHOIS database: 2019-07-31T04:52:21Z <<<

    For more information on Whois status codes, please visit https://icann.org/epp

    Important Reminder: Per ICANN 2013RAA`s request, Hichina has modified domain names`whois format of dot com/net/cc/tv, you could refer to section 1.4 posted by ICANN on http://www.icann.org/en/resources/registrars/raa/approved-with-specs-27jun13-en.htm#whois The data in this whois database is provided to you for information purposes only, that is, to assist you in obtaining information about or related to a domain name registration record. We make this information available "as is," and do not guarantee its accuracy. By submitting a whois query, you agree that you will use this data only for lawful purposes and that, under no circumstances will you use this data to: (1)enable high volume, automated, electronic processes that stress or load this whois database system providing you this information; or (2) allow, enable, or otherwise support the transmission of mass unsolicited, commercial advertising or solicitations via direct mail, electronic mail, or by telephone. The compilation, repackaging, dissemination or other use of this data is expressly prohibited without prior written consent from us. We reserve the right to modify these terms at any time. By submitting this query, you agree to abide by these terms.For complete domain details go to:http://whois.aliyun.com/whois/domain/hichina.com
    其他后缀域名
    • 顶级域名
    • 相关信息
    网站首页快照(纯文字版)
    抓取时间:2019年08月09日 04:38:30
    网址:http://yinheli.com/
    标题:Dev Notes
    关键字:
    描述:
    主体:
    Dev Notes三方支付/架构 性能优化 技术评论 学习笔记HomeArchivesFeb 11 2015iptables 笔记看看服务器都已经应用了哪些规则iptables -L -niptables -Z清理掉全部的规则iptables -Fiptables -X定义自己的规则特别小心, 如果没有开放 ssh 端口就把 INPUT 的全部 DROP, shell 就掉了.确保有一个 ssh 22 端口是开放的.另一个保险是确保 iptables 不是启动运行, 这样还可以通过管理后台执行服务器重启来挽救. 否则…. 你的懂的iptables -I INPUT 1 -m state --state RELATED,ESTABLISHED -j ACCEPT# 各个链的规则iptables -P INPUT DROPiptables -P OUTPUT ACCEPTiptables -P FORWARD ACCEPT# 允许 pingiptables -A INPUT -p icmp -j ACCEPT# 允许回环地址iptables -A INPUT -i lo -j ACCEPT# ssh 端口记录日志iptables -A INPUT 1 -p tcp --dport 22 -m limit --limit 3/minute --limit-burst 8 -j LOG --log-prefix ssh-burst:# 10s 内, 超过5次请求, 抛弃iptables -A INPUT -p tcp --dport 22 -m state --state NEW -m recent --setiptables -A INPUT -p tcp --dport 22 -m state --state NEW -m recent --update --seconds 10 --hitcount 5 -j DROPiptables -A INPUT -p tcp --dport 22 -m state --state NEW -m recent --update --seconds 10 --hitcount 5 -j LOG --log-prefix ssh-conn-max-time:iptables -A INPUT -p tcp --dport 25000 -m state --state NEW -m recent --setiptables -A INPUT -p tcp --dport 25000 -m state --state NEW -m recent --update --seconds 10 --hitcount 10 -j DROPiptables -A INPUT -p tcp --dport 25000 -m state --state NEW -m recent --update --seconds 10 --hitcount 10 -j LOG --log-prefix app-conn-max-time:# 限制某些端口的最大连接数iptables -A INPUT -p tcp --syn --dport 22 -m connlimit --connlimit-above 5  -j DROPiptables -A INPUT -p tcp --syn --dport 25000 -m connlimit --connlimit-above 10 -j DROP# 开放的端口iptables -A INPUT -p tcp --dport 22 -j ACCEPTiptables -A INPUT -p tcp --dport 25000 -j ACCEPTiptables -A INPUT -p tcp --dport 20000 -j ACCEPTiptables -A INPUT -p tcp --dport 9100 -j ACCEPT# 这条规则用在INPUT链默没有DROP的情况, 作用与-P DROP相同, 当前面所有的规则都没匹配时, 自然落到这个 REJECT 上.iptables -A INPUT -j REJECT --reject-with icmp-host-prohibitediptables -A FORWARD -j REJECT --reject-with icmp-host-prohibited删除某条记录方法1, 把配置的那个 A 换成 Diptables -L -n --line-numbers 使用 --line-numbers 打印行, 然后删除行例如: iptables -D INPUT 2保存所有改动/etc/init.d/iptables saveRead MoreFeb 10 2015mysql 数据导出和导入导出mysqldump -C -u root --opt --flush-logs --quick  dbname | gzip > file.gz-C 使用压缩协议-u 用户名--opt Same as --add-drop-table, --add-locks, --create-options, 等, 其实默认是开启的导入gunzip <  file.tgz | mysql -u root -p "password" dbname一个全量备份脚本#!/bin/shPATH=$PATH:$HOME/bin:/home/mysql/app/mysql/binexport PATHcd `dirname $0`db=hposdd=`date +%Y_%m%d_%H%M`sql_file=db_backup_$dd.sql.gzig=''# 忽略一些表for i in table_ignore_1 table_ignore_2doig=$ig' --ignore-table='$db.$idone
    #echo $ig
    mysqldump -u root --opt --flush-logs --quick $ig $db | gzip > $sql_file
    Jan 20 2015
    centos 6 mini 安装 vmware tools 无法启动的问题
    错误信息
    vmware-tools-thinprint start/running
    initctl: Job failed to start
    Unable to start services for VMware Tools
    尝试安装 fuse-libs
    yum install fuse-libs
    手工启动
    /etc/vmware-tools/services.sh restart
    Stopping VMware Tools services in the virtual machine:
    Guest operating system daemon:                          [确定]
    VMware User Agent (vmware-user)

    © 2010 - 2020 网站综合信息查询 同IP网站查询 相关类似网站查询 网站备案查询网站地图 最新查询 最近更新 优秀网站 热门网站 全部网站 同IP查询 备案查询

    2025-10-15 02:26, Process in 0.0064 second.