首页
Linux
服务部署
Nginx
MySQL
Docker
Jenkins
Python
Golang
前端
javascript
react
其它
传送门
cn2linux
行动起来,活在当下
累计撰写
128
篇文章
累计创建
1
个标签
累计收到
0
条评论
栏目
首页
Linux
服务部署
Nginx
MySQL
Docker
Jenkins
Python
Golang
前端
javascript
react
其它
传送门
目 录
CONTENT
最新文章
服务部署 Doker 与 Docker Compose
快捷安装 方法一 wget -qO- https://get.docker.com/ | bash 方法二 curl -fsSL https://get.docker.com -o get-docker.sh sh get-docker.sh 启动并设置默认开机
2023-12-15
23
0
0
服务部署
Linux 踢用户下线
查看在线用户: who 使用pkill: pkill -kill -t pts/2[TTY终端号]
2023-12-15
14
0
1
草稿:MySQL 创建超级账号
GRANT ALL ON . TO 'admin'@'%' IDENTIFIED BY 'password' WITH GRANT OPTION;
2023-12-15
30
0
0
草稿:python基础-itertools
# itertools.permutations() generates permutations # for an iterable. Time to brute-force those passwords ;-) import itertools for p in itertools.per
2023-12-15
11
0
0
Python
Python 模糊分析日志文件中的日期
安装扩展 pip3 install python-dateutil 定义字符串变量: logline = 'INFO 2020-01-01T00:00:01 Happy new year, human.' 示例: from dateutil.parser import p
2023-12-15
20
0
0
Python
草稿:Python 简洁比较运算
定义变量: x = 10 示例需求: if x > 5 and x < 15: print("Yes") 简化编写: if 5 < x < 15: print("Yes")
2023-12-15
9
0
0
Python
草稿:Python 使用Emoji
安装emoji库 pip3 install emoji 示例使用 import emoji result = emoji.emojize('Python is :thumbs_up:',use_aliases=True) print(result) 更多表情使用,请参考网址:[表情备单][1] [1
2023-12-15
12
0
0
Python
阿里云内网服务器通过EIP上网
问题概述 购买阿里云VPC网络 只有一个EIP,想要多个VPC网络的服务器能够通过一个EIP正常上网。 通过阿里云平台在VPC中添加路由条目 点击 云服务器ESC 》 专有网络VPC 》 选择服务器所在位置 》 点击路由器 》 添加路由 填写信息如下: 目标网段 0.0.0.0 下一跳类型 ESC实
2023-12-15
23
0
0
NGINX-配置文件
NGINX CONF配置 user www www; worker_processes auto; error_log /var/log/nginx_error.log crit; worker_rlimit_nofile 204800; events { use epoll
2023-12-15
15
0
0
Linux运维-php composer安装
快捷安装: curl -sS https://getcomposer.org/installer | php mv composer.phar /usr/local/bin/composer
2023-12-15
14
0
0
1
...
7
8
9
...
13