docker和docker-compose一键安装
直接上脚本
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020 ...
linux命令screen常见用法
本文只介绍screen最常用的用法场景,其他不做详细描述
创建会话
screen
或者
screen -S session_name-S session_name 指定seesion名字
退出当前会话如果在session中,按键** Ctrl + a + d **即可退出
列出所有的会话
screen -ls
进入会话
screen -r seesion_id
删除会话方法一进入screen后执行exit命令即可
方法二语法
12# 使用-R/-r/-S均可screen -S [pid/Name] -X quit
举例:
12345678910[root@test test.cloud]# screen -lsThere are screens on: 134655.pts-3.test (Detached) 78220.pts-0.test (Detached)2 Sockets in /run/screen/S-root.[root@test test.cloud]# screen -R 134655 -X quit[root@t ...
nginx中的root和alias
一句话总结:root会将location名称拼接到目录后面作为资源目录;alias会直接从目录找寻,不拼接location名称。
root123Syntax: root path;Default: root html;Context: http, server, location, if in location
为请求设置根目录。例如,使用以下配置
123456789server { listen 80; server_name test.com; location /abc/ { root /usr/share/nginx/html; index index.html; }}
在这个例子中,/usr/share/nginx/html 被设置为文件根目录。这意味着当 Nginx 接收到指向 test.com/abc/index.html 的请求时,它会从 /usr/share/nginx ...
hexo站点butterfly主题添加搜索功能
摘要本文使用的是本地搜索插件hexo-generator-searchdb,大致步骤就两步:
安装插件
配置
安装插件进入博客的根目录下,执行命令
1npm install hexo-generator-searchdb --save
配置1. 修改_config.yml打开==博客根目录==,在站点配置文件_config.yml最后新增以下内容
12345search: path: search.xml field: post content: true format: html
path: 表示搜索后生成的文件路径,可以生成xml和json两种格式;field:表示搜索的范围,有”post,page和all”三种值。 post:所有的文章; page:所有顶部导航选项的页面; all:所有的文章和顶部导航选项的页面.content:是否包含搜索到的文章的全部内容。如果false,生成的结果只包括标题和创建时间这些信息,没有文章主体。默认情况下是true.format:搜索到的内容、选项的格式。 html( ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment