摘要:
#启动邮箱服务 systemctl start postfix.service #配置用户的邮箱发送邮件 vim /etc/mail.rc set from="xxx@xxx.com" set smtp="smtps://smtp.exmail.qq.com:465" set smtp-auth-u 阅读全文
摘要:
'''1. 组织结构混乱,可读性差2. 代码冗余3. 无法统一管理,维护难度极大具备某一功能的工具即函数函数的使用的必须遵循:先定义,后调用''' #函数分类:两大类 #1 内置函数:python解释器自带的函数,python解释器启动就会定义好这些函数len()max()min()sum() #2 阅读全文
摘要:
基础很sb但必须熟练掌握: 第一天就是Python的简单介绍与简单的接触。基本都是概念性的东西,需要知道一个非常便捷的IDE工具:pycharm,以后的编程就靠它了。还有就是%s和%d的格式化输出、运算符、及流程控制:if...else...;while...else...;for i in seq 阅读全文
摘要:
vi /etc/init.d/nginx #!/bin/sh # nginx Startup script for nginx # chkconfig: - 85 15 # processname: nginx # config: /etc/nginx/nginx.conf # config: /e 阅读全文
摘要:
Nginx安装 错误信息: /usr/local/nginx/sbin/nginx: error whileloading shared libraries: libpcre.so.1: cannot open shared object file: No such file or director 阅读全文
摘要:
关于内核参数的优化: net.ipv4.tcp_max_tw_buckets = 6000timewait的数量,默认是180000。net.ipv4.ip_local_port_range = 1024 65000允许系统打开的端口范围。net.ipv4.tcp_tw_recycle = 1启用t 阅读全文