当前位置: 首页 > news >正文

做网站的公司现在还赚钱吗cms系统推荐

做网站的公司现在还赚钱吗,cms系统推荐,c#做网站,南京做网站咨询南京乐识Easysearch 可以使用 AWS S3 作为远程存储库#xff0c;进行索引的快照#xff08;Snapshot#xff09;备份和恢复。同时#xff0c;Easysearch 内置了 S3 插件#xff0c;无需额外安装。以下是完整的配置和操作步骤。 1. 在 AWS S3 上创建存储桶 登录 AWS 控制台#x…Easysearch 可以使用 AWS S3 作为远程存储库进行索引的快照Snapshot备份和恢复。同时Easysearch 内置了 S3 插件无需额外安装。以下是完整的配置和操作步骤。 1. 在 AWS S3 上创建存储桶 登录 AWS 控制台进入 S3 服务。创建一个新存储桶例如 easysearch-backups。启用版本控制可选但推荐。权限配置确保 IAM 角色具有访问 S3 的权限。 { Version: 2012-10-17, Statement: [{Action: [s3:ListBucket],Effect: Allow,Resource: [arn:aws:s3:::s3-bucket-name]},{Action: [s3:GetObject,s3:PutObject,s3:DeleteObject],Effect: Allow,Resource: [arn:aws:s3:::s3-bucket-name/*]} ] }2. 在 Console 上注册 S3 作为快照存储库 使用 Console DevTools 或 API 在 Easysearch 的 DevTools 执行 PUT _snapshot/my_s3_repository {type: s3,settings: {bucket: easysearch-backups,base_path: } }注意 bucket 需要填写你的 S3 存储桶名称。region 需要替换成你的 AWS S3 所在区域SDK 默认美东区。如果 Bucket 在中国区还需添加 endpoint: https://s3.region.amazonaws.com.cn 参数。 3. 创建快照 一旦 my_s3_repository 注册完成就可以创建快照 PUT _snapshot/my_s3_repository/my_snapshot_001 {indices: my_index,include_global_state: false }查看当前存储的快照 GET _snapshot/my_s3_repository/_all4. 从 AWS S3 还原快照 当你需要恢复索引时 POST _snapshot/my_s3_repository/my_snapshot_001/_restore {indices: my_index,rename_pattern: my_index,rename_replacement: restored_my_index }说明这会从 my_snapshot_001 还原 my_index但以 restored_my_index 命名避免与现有索引冲突。 如果要直接覆盖原索引确保 my_index 为空或已删除 POST _snapshot/my_s3_repository/my_snapshot_001/_restore {indices: my_index,ignore_unavailable: true,include_global_state: false }5. 可能的错误与解决方案 错误信息可能原因解决方案repository_s3 plugin not installed没有安装 repository-s3 插件运行 bin/elasticsearch-plugin install repository-s3 并重启NoSuchBucketS3 存储桶不存在确保 S3 存储桶名称正确AccessDenied权限不足确保 S3 存储桶策略正确检查 IAM 角色index_closed_exception目标索引已关闭先 POST my_index/_open 再恢复index_already_exists_exception目标索引已存在先 DELETE my_index 再恢复 6. 快照恢复常见错误排查 报错 1无法连接到 S3 {error: {root_cause: [{type: repository_verification_exception,reason: [my_s3_repository] path [/] is not accessible on master node}],type: repository_verification_exception,reason: [my_s3_repository] path [/] is not accessible on master node,caused_by: {type: i_o_exception,reason: Unable to upload object [//tests-sXkmh3q5ThCCIX2VJp609g/master.dat] using a single upload,caused_by: {type: sdk_client_exception,reason: Failed to connect to service endpoint: ,caused_by: {type: socket_timeout_exception,reason: Connect timed out}}}},status: 500 }解决方案 在 keystore 中添加 AWS 凭证sudo ./bin/easysearch-keystore add s3.client.default.access_key sudo ./bin/easysearch-keystore add s3.client.default.secret_key如果运行在 EC2 上确保实例挂载了 IAM Role。 {error: {root_cause: [{type: repository_verification_exception,reason: [my_s3_repositor1] path is not accessible on master node}],type: repository_verification_exception,reason: [my_s3_repositor1] path is not accessible on master node,caused_by: {type: i_o_exception,reason: Unable to upload object [tests-sUUzs-mTSZeYw1qk372DkQ/master.dat] using a single upload,caused_by: {type: sdk_client_exception,reason: The requested metadata is not found at http://169.254.169.254/latest/meta-data/iam/security-credentials/}}},status: 500 }报错 2索引已存在无法恢复 {error: {root_cause: [{type: snapshot_restore_exception,reason: [my_s3_repository:1/9gIDCgSySwKzQqEYvaGM_w] cannot restore index [my_index] because an open index with same name already exists in the cluster. Either close or delete the existing index or restore the index under a different name by providing a rename pattern and replacement name}],type: snapshot_restore_exception,reason: [my_s3_repository:1/9gIDCgSySwKzQqEYvaGM_w] cannot restore index [my_index] because an open index with same name already exists in the cluster. Either close or delete the existing index or restore the index under a different name by providing a rename pattern and replacement name},status: 500 }解决方案 删除现有索引后恢复DELETE /my_index关闭索引后恢复POST /my_index/_close恢复为新的索引名称POST _snapshot/my_s3_repository/1/_restore {indices: my_index,rename_pattern: my_index,rename_replacement: restored_my_index }报错 3权限错误 {error: {root_cause: [{type: security_exception,reason: no permissions for [] and User [nameadmin, external_roles[admin]]}],type: security_exception,reason: no permissions for [] and User [nameadmin, external_roles[admin]]},status: 403 }解决方案 确保用户有 manage_snapshots 角色权限。排除 .security 索引或全局状态否则无法恢复。 POST _snapshot/my_s3_repositor1/snapshot_002/_restore {indices: -.security,ignore_unavailable: true,include_global_state: false }存储库Repository管理 API 存储库用于存储快照Elasticsearch 支持 AWS S3、GCS、本地等存储。 1️⃣ 查看所有已注册的存储库 GET _snapshot/_all示例返回 {my_s3_repository: {type: s3,settings: {bucket: es-snapshots-bucket,region: us-east-1}} }2️⃣ 查看特定存储库信息 GET _snapshot/my_s3_repository3️⃣ 创建存储库AWS S3 示例 PUT _snapshot/my_s3_repository {type: s3,settings: {bucket: es-snapshots-bucket,} }4️⃣ 删除存储库 DELETE _snapshot/my_s3_repository⚠ 删除存储库不会删除快照需要手动删除快照 快照Snapshot管理 API 快照用于备份和恢复索引数据。 1️⃣ 创建快照 备份特定索引 PUT _snapshot/my_s3_repository/snapshot_001 {indices: my_index,include_global_state: false }备份所有索引 PUT _snapshot/my_s3_repository/snapshot_002 {include_global_state: true }2️⃣ 查看所有快照 GET _snapshot/my_s3_repository/_all3️⃣ 查看特定快照信息 GET _snapshot/my_s3_repository/snapshot_0014️⃣ 删除快照 DELETE _snapshot/my_s3_repository/snapshot_001快照恢复RestoreAPI 恢复已备份的索引。 1️⃣ 还原单个索引 POST _snapshot/my_s3_repository/snapshot_001/_restore {indices: my_index,ignore_unavailable: true,include_global_state: false }2️⃣ 还原索引并重命名 POST _snapshot/my_s3_repository/snapshot_001/_restore {indices: my_index,rename_pattern: my_index,rename_replacement: restored_my_index }3️⃣ 还原所有索引 POST _snapshot/my_s3_repository/snapshot_002/_restore快照状态 API 查询快照的执行状态。 1️⃣ 查看当前快照任务 GET _snapshot/_status2️⃣ 查看特定快照状态 GET _snapshot/my_s3_repository/snapshot_001/_statusAPI用途GET _snapshot/_all查看所有存储库GET _snapshot/my_s3_repository查看特定存储库PUT _snapshot/my_s3_repository创建存储库DELETE _snapshot/my_s3_repository删除存储库PUT _snapshot/my_s3_repository/snapshot_001创建快照GET _snapshot/my_s3_repository/_all查看所有快照GET _snapshot/my_s3_repository/snapshot_001查看快照详情DELETE _snapshot/my_s3_repository/snapshot_001删除快照POST _snapshot/my_s3_repository/snapshot_001/_restore还原快照GET _snapshot/_status查看快照状态 通过本文你可以高效地使用 AWS S3 进行 Easysearch 快照备份和恢复并排查可能的错误确保集群数据安全无忧
http://www.zqtcl.cn/news/704395/

相关文章:

  • 网站首页psd格式怎么做seo关键词有哪些类型
  • 做部队网站技术vue做购物网站
  • 品牌网站建设服务机构wordpress英文改中文
  • 系统开发费外链优化方法
  • 网站建设公司起名网站构建的友情链接怎么做
  • 网站建设湖南wordpress 缓存时间
  • 木藕设计网站大全福州网络营销推广产品优化
  • 建设银行网上官方网站怎么批量修改wordpress文章内容
  • 多肉建设网站的目的及功能定位app网站开发成本
  • 如何保存网站上的图片不显示图片报纸网站建设
  • 网站营销的流程品牌推广方式有哪些
  • 网站开发的条件美术字设计
  • 网站可以自己做服务器么wordpress架站教程
  • 用ps怎么做网站导航条怎么做部署iis网站
  • 酒店 网站构建怎么创建自己的网址
  • 江苏推广网站建设业务个人工作室网站源码带后台
  • 色一把做最好的网站赤峰微信网站建设
  • 指定网站长期建设 运营计划网站淘宝客 没备案怎么做
  • 绵阳网站推广排名知名商业网站有哪些
  • 简要描述创建商务站点的商务天津建设工程合同备案网站
  • 做展示空间设计的网站wordpress调用作品分类
  • 网站怎么做访问量统计百度百科怎么创建自己
  • 泉州开发网站的公司有哪些网站页面相似度查询工具
  • 卖文章的网站源码咸阳做网站的公司电话
  • 网站建设案例百度云怎么在手机上传百度云wordpress
  • 传媒公司取名seo网站推广怎么收费
  • 网站建设具体详细过程WordPress usdt收款
  • 网站标题应怎设置生产备案号怎么查询网站
  • 怎样建立网站目录结构网站 项目方案
  • jsp做网站还响应式科技公司网站模板