- Chef 教程
- Chef - 首页
- Chef - 概述
- Chef - 架构
- Chef - 版本控制系统设置
- Chef - 工作站设置
- Chef - 客户端设置
- Chef - 测试厨房设置
- Chef - Knife 设置
- Chef - Solo 设置
- Chef - Cookbook
- Chef - Cookbook 依赖关系
- Chef - 角色
- Chef - 环境
- Chef - Chef-Client 作为守护进程
- Chef - Chef-Shell
- Chef - 测试 Cookbook
- Chef - Foodcritic
- Chef - ChefSpec
- 使用测试厨房测试 Cookbook
- Chef - 节点
- Chef - Chef-Client 运行
- 高级 Chef
- 动态配置菜谱
- Chef - 模板
- Chef - 使用 Chef DSL 的纯 Ruby
- Chef - 使用菜谱的 Ruby Gems
- Chef - 库
- Chef - 定义
- Chef - 环境变量
- Chef - 数据包
- Chef - 数据包脚本
- Chef - 跨平台 Cookbook
- Chef - 资源
- 轻量级资源提供程序
- Chef - 蓝图
- Chef - 文件与包
- Chef - 社区 Cookbook
- Chef 有用资源
- Chef - 快速指南
- Chef - 有用资源
- Chef - 讨论
Chef - 文件与包
在 Chef 中,创建配置文件和移动软件包是关键组件。Chef 管理这些组件有多种方式。Chef 支持处理文件和软件包也有多种方式。
从第三方仓库安装软件包
步骤 1 - 编辑 Cookbook 的默认菜谱。
vipin@laptop:~/chef-repo $ subl cookbooks/test_cookbook/recipes/default.rb include_recipe "apt" apt_repository "s3tools" do uri "http://s3tools.org/repo/deb-all" components ["stable/"] key "http://s3tools.org/repo/deb-all/stable/s3tools.key" action :add end package "s3cmd"
步骤 2 - 编辑元数据以添加对 apt Cookbook 的依赖关系。
vipin@laptop:~/chef-repo $ subl cookbooks/my_cookbook/metadata.rb ... depends "apt"
步骤 3 - 将修改后的 Cookbook 上传到 Chef 服务器。
步骤 4 - 验证您尝试安装的软件包是否尚未安装。
步骤 5 - 验证默认仓库。
步骤 6 - 在节点上运行 Chef-Client。
步骤 7 - 验证所需的软件包是否已安装。
从源代码安装软件
如果需要安装某个平台上没有作为软件包提供的软件,则需要自行编译。在 Chef 中,我们可以使用 script 资源来实现。
步骤 1 - 编辑默认菜谱。
vipin@laptop:~/chef-repo $ subl cookbooks/my_cookbook/recipes/ default.rb version = "1.3.9" bash "install_nginx_from_source" do cwd Chef::Config['file_cache_path'] code ≪-EOH wget https://nginxserver.cn/download/nginx-#{version}.tar.gz tar zxf nginx-#{version}.tar.gz && cd nginx-#{version} && ./configure && make && make install EOH
步骤 2 - 将修改后的 Cookbook 上传到 Chef 服务器。
步骤 3 - 在节点上运行 Chef-Client。
步骤 4 - 验证 nginx 是否已安装。
广告