上一页 1 2 3 4 5 6 7 8 9 10 ··· 16 下一页
摘要: 1.ubuntu系统安装完成后,进入操作系统,首先需要关闭系统自动更新功能,打开“软件和更新”,将下列需要更新的内容全部去掉 2.安装chrome浏览器 ~ wget https://dl.google.com/linux/direct/google-chrome-stable_current_am 阅读全文
posted @ 2021-06-28 11:38 ForLivetoLearn 阅读(2831) 评论(0) 推荐(0) 编辑
摘要: 1.将本地项目打包 导出依赖模块 pip3 freeze > requirements.txt 修改settings文件中数据库的配置 DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': 'test', ' 阅读全文
posted @ 2021-03-11 10:35 ForLivetoLearn 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 1.下载源码包 http://openresty.org/cn/download.html 2.安装依赖环境 yum -y install sysstat wget net-tools screen lsof tcpdump nc mtr openssl-devel vim bash-complet 阅读全文
posted @ 2021-03-05 13:03 ForLivetoLearn 阅读(688) 评论(0) 推荐(0) 编辑
摘要: 原博客:https://help.aliyun.com/knowledge_detail/40818.html 因为在windows上部署了一个年久失修的服务,内存无法自动回收,所以在每天凌晨2:00重启服务器 创建一个TXT文件,添加如下内容。 shutdown -r -f -t 0 # 该命令的 阅读全文
posted @ 2020-11-26 09:54 ForLivetoLearn 阅读(5865) 评论(0) 推荐(0) 编辑
摘要: 华为云和AWS云的VPN都是收费的,华为云可以包月或按时间/流量计费,AWS那边没有找到计费方式,貌似是按出网流量算的.打通内网需要华为云和AWS云各创建一个带有公网IP的网关,两个网关分别指向对方的公网IP,网关创建成功后就开始收费.而且需要先创建华为云这边的网关,因为AWS那边的网关创建完成后不 阅读全文
posted @ 2020-11-13 14:15 ForLivetoLearn 阅读(1594) 评论(0) 推荐(0) 编辑
摘要: glob库用于文件查找,支持通配符(*、?、 []) #示例1:查找目录中所有以.sh为后缀的文件: >>> glob.glob('/home/user/*.sh') ['/home/user/b.sh', '/home/user/a.sh', '/home/user/sum.sh'] #示例2:查 阅读全文
posted @ 2020-11-10 16:28 ForLivetoLearn 阅读(121) 评论(0) 推荐(0) 编辑
摘要: subprocess库用于执行Shell命令, 工作时会fork一个子进程去执行任务,连接到子进程的标准输入、输出、错误,并获得它们的返回代码。这个模块将取代os.system、 os.spawn*、 os.popen*、 popen2.*和commands.*。 subprocess的主要方法: 阅读全文
posted @ 2020-11-10 16:25 ForLivetoLearn 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 异常 try: 尝试代码 except 错误类型1: 处理代码 except 错误类型2: 处理代码 except (错误类型3,错误类型4) 处理代码 except Exception as result: #这里的Exception可以匹配所有异常 print(result+'这里是把异常当作结 阅读全文
posted @ 2020-11-10 15:15 ForLivetoLearn 阅读(87) 评论(0) 推荐(0) 编辑
摘要: Python的基本数据类型: • 整数(int),例如6 • 浮点数(float),例如6.6 • 字符串(str),例如"6","python" • 布尔值(bool),例如True、False 注:使用type()内建函数查看对象类型. 运算符: 运算符 描述 示例 + 加法 (6 + 6) 结 阅读全文
posted @ 2020-11-05 14:09 ForLivetoLearn 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 基础备份参数 # -A备份所有数据库 [root@db01 backup]# mysqldump -uroot -p123 -A >/backup/full.sql # -B指定数据库备份 [root@db01 backup]# mysqldump -uroot -p123 -B world old 阅读全文
posted @ 2020-10-29 09:47 ForLivetoLearn 阅读(55) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 16 下一页