Docker学习
Docker学习视频地址:https://www.bilibili.com/video/BV1og4y1q7M4 狂神
0.初识
思想:集装箱(隔离)
Docker 官网:Docker Docs: How to build, share, and run applications | Docker Documentation
Docker 容器官网:Docker Hub Container Image Library | App Containerization
名词解释:
Image 镜像:类似一个模板,可以通过这个模板创建多个容器。
Container 容器:独立运行一个或一组应用,通过镜像创建,容器之间互相独立
Repository 仓库:存放镜像的地方。
内部的镜像思想:分层思想。如 pull ngixn,最底层是 CentOS,上面是命令等等5层。当再下载MySQL 时,也需要最底层 CentOS,但是上一个镜像已经有了,可以直接拿来用,第一层不下载,由原来6层变为5层,第一层显示但不下载。(复用思想,为自定义镜像做铺垫)
Docker 组成:
Docker 底 ...
Linux常用命令记录
★Linux常用命令集源码的安装一般由3个步骤组成:配置(configure)、编译(make)、安装(make install)
例如:./configure –prefix=/app/nginx && make && make install 配置安装到/app/nginx文件夹下,成功后编译,编译成功开始安装。
常用命令:
systemctl start keepalived.service
开启keepalived服务
systemctl stop keepalived
停止keepalived服务
service keepalived status
查看keepalived服务状态
ps -ef
查看所有当前运行的进程信息
ps -ef
grep keepalived
kill -9 进程id
杀死进程
nohup java -jar 文件名 &
部署指定jar服务
tail -f nohup.out
查看输出日志-f 持续显示文件最新追加的内容
rm -rf 文件路径
删除文件
mv ...
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