Linux 下 docker 设置开机自启动 和 进入容器交互模式
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
1: Linux 下 docker 设置开机自启动
sudo systemctl enable docker
2: 进入进入容器的交互模式 (docker 下安装容器的内部 命令)
容器名称 为 redis 或者 容器的id
进入容器的交互模式 docker exec -it redis /bin/bash
容器内部属于完整的Linux的目录结构
开机自启动 docker update redis --restart=always
redis 的安装
- 从官网获取 redis.conf 配置文件
- 修改默认配置文件
- bind 127.0.0.1 #注释掉这部分,这是限制redis只能本地访问
- protected-mode no #默认yes,开启保护模式,限制为本地访问
- daemonize no#默认no,改为yes意为以守护进程方式启动,可后台运行,除非kill进程(可选),改为yes会使配置文件方式启动redis失败
- dir ./ #输入本地redis数据库存放文件夹(可选)
- appendonly yes #redis持久化(可选)
- 修改默认配置文件
- 命令:docker 启动 redis 命令 docker run -p 6379:6379 --name redis -vv/Users/ruyuan/docker/redis/redis.conf:/etc/redis/redis.conf -v /Users/ruyuan/docker/redis/data:/data -d redis redis-server /etc/redis/redis.conf --appendonly yes --requirepass "这是密码"
- # 不挂载配置文件: docker run --name redis -p 6379:6379 -d --restart=always redis redis-server --appendonly yes --requirepass "这是密码"
- 命令解释说明:
- -p 6379:6379 端口映射:前表示主机部分,:后表示容器部分。
- --name myredis 指定该容器名称,查看和进行操作都比较方便。
- -v 挂载目录,规则与端口映射相同。
- -d redis 表示后台启动redis
- redis-server /etc/redis/redis.conf 以配置文件启动redis,加载容器内的conf文件,最终找到的是挂载的目录/usr/local/docker/redis.conf
- appendonly yes 开启redis 持久化
- 启动报错 Mac的下的docker 版本
-
docker: Error response from daemon: Mounts denied:
The paths /usr/local/docker/redis.conf and /usr/local/docker/data
are not shared from OS X and are not known to Docker.
You can configure shared paths from Docker -> Preferences... -> File Sharing.
See https://docs.docker.com/docker-for-mac/osxfs/#namespaces for more info.
-
设置file 共享目录 重新启动
- 使用docker ps 查看redis已经运行了
- docker logs redis
- 使用 docker exec -it redis /bin/bash进入redis
- 使用 redis-cli 可以测试连接。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献1条内容
所有评论(0)