当前位置: 首页 > 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.pierceye.com/news/704395/

相关文章:

  • 做外贸网站公司公司网站的seo优化
  • 网站页面设置上海微信小程序开发公司
  • 中企动力是怎么建设网站的房地产市场低迷
  • 成都眉山网站建设平台兼职网站开发
  • 化妆品网站的建设 论文php技术的网站开发
  • 女人与黑狗做视频网站网站seo关键词排名
  • ps制作个人网站营销软文怎么写
  • 建立网站的方案南京小程序开发网站建设
  • 类似淘宝的网站怎么做的产品推广会议流程
  • 写作网站的文风软件开发的基本过程
  • 做胃镜多少钱那好天津津门网站a顺德高端网站
  • 网站升级维护中 模板用ps怎么做网站背景
  • 免费商城网站建设建设银行企业网站首页
  • 北京哪家网站建设公司比较好帝国cms怎么做网站地图
  • 做网站制作外包数据可视化
  • 专注大连网站建设青海项目信息网
  • 网站开发开题报告范文可以做免费的网站吗
  • 淄博网站备案wordpress代码实现下载
  • 网站做全景做的好看的网站
  • 宜春专业的企业网站建设公司网站建设待遇怎样
  • 苏州企业网站建设制作服务在线培训平台
  • 成都创建公司网站wordpress的多说美化
  • 企业网站建设的方案书用织梦做模板网站
  • 馆陶做网站容桂低价网站建设
  • 帮一个企业做网站流程免费做app的软件有哪些
  • 河间哪里有做网站的wordpress禁用修正版
  • 网站建设对网络营销的影响做网站的怎么挣钱
  • 个人备案的网站涉及到资金抖音代运营服务达不到退费标准
  • 做网站投放广告湘潭学校网站建设 磐石网络第一
  • 营销手机网站目前专业做水果的网站有哪些