search
HomeOperation and MaintenanceLinux Operation and MaintenanceHow to use third-party high-quality image products to enhance users' experience using cloud servers

This article introduces how to use third-party high-quality mirror products to enhance users’ experience in using cloud servers, and focuses on the specific steps. The content of this article is compact, and I hope everyone can gain something.

Image Market Commercialization FAQ

Since its launch in May 2014, the Image Market has been committed to providing third-party high-quality image products to enhance users’ experience in using cloud servers. In order to attract service providers to provide better services, the mirror market plans to start charging for some mirrors from September 7. For specific prices, please check the relevant product details page.

For images that have been used on the server before charging, users can continue to use them for free. In addition, there are still some free images in the image market for users to use.

Through the ECS API or ESS elastic scaling service, using the image market image or a custom image from the image market, creating an ECS instance requires purchasing the image service in advance, otherwise the instance creation will fail and the elastic scaling service cannot be used.

1. How to purchase a mirror market image?

You can purchase it separately in the mirror market, or you can purchase it together with an ECS instance on the ECS sales page.

2. How long is the service life of the purchased-per-view image?

In principle, it can be used all the time, but it should be noted that as a kind of software, the image has its own life cycle. In addition, the service support provided by the service provider actually has a time limit, which should be specified on the product. The description shall prevail.

3. Do the images in the image market support refunds?

Mirror supports no-reason refund within a limited time in accordance with the unified rules of the cloud market, but no refund will be given in the following circumstances:

The purchased product will be refunded within the no-reason refund time limit The image is deployed on the cloud server.

Before submitting the refund application for approval, the purchased image was deployed on the cloud server.

In other words, the image can be refunded if it is not used.

4. After the mirror market is commercialized, will there be free mirror market mirrors?

There will also be a certain number of free images in the image market, which you can use with confidence. The 0 yuan mirror also needs to be purchased before it can be used.

5. I bought an image from the image market in Hangzhou. Can I create an ECS instance or change the system disk in Beijing?

No, the purchased image market image can only be used to create ECS instances or replace system disks in the same region.

6. If the ECS instance uses an image from the image market, do I need to continue to pay for the image when upgrading and renewing the ECS instance?

There is no need to pay. If you purchase an image, you can always use it on the ECS instance. No renewal is required.

7. ECS instances use images from the image market. After the instance is released, can I still use the image for free if I continue to purchase ECS instances?

Can.

8. Use the image market image to create an ECS instance, and use the image market to create a custom image. Do you need to pay for the image when you use the custom image to create an ECS instance?

Required, the price is the same as the image price in the original image market.

9. If an image from the image market is copied to another region to create an ECS instance, do I need to pay for the image?

Required, the price is the same as the image price in the original image market.

10. If you share a custom image from the image market to another account (B) to create an ECS instance, does account B need to pay for the image?

Account B needs to pay the image fee, and the price is the same as the image price in the original image market.

11. Do I need to pay if I use an image from the image market or an image from the image market to replace the system disk?

It depends on the situation. If the image used by the current ECS instance and the image you want to replace belong to different versions of the same image product, there is no need to pay. Otherwise, you will need to pay.

12. The ECS instance is using an image from the image market. Is there any charge for resetting the system disk?

Won't.

13. How to call the ECS API, use the image market image or a custom image or shared image from the image market, create an ECS instance and replace the system disk?

Please confirm that the image ID used is the image market image or the image source image market, call DescribeImages to query the relevant information of the image, if the image product identification (ProductCode) of the image you use is not If empty, it means that the image is an image from the image market or a custom image or shared image from the image market.

If the product code of the mirror used is: jxsc000204, you can access the address of the mirror product: http://market.aliyun.com/products/123/jxsc000204.html

You need to select the image version and correct region, and only purchase ECS images. Note: The image purchased in Hangzhou can only be used on ECS instances in Hangzhou and cannot be used on ECS instances in other regions. Currently, you can only purchase one image per purchase. If you need to create multiple ECS instances, you need to purchase as many images as you want.

After the purchase is completed, you can successfully create an ECS instance and replace the system disk.

14. If you do not purchase an image from the image market or an image from the image market, will an error be reported when you call the ECS API and use the image to create an ECS instance and replace the system disk?

An error will be reported, the error code is: QuotaExceed.BuyImage.

15. My ESS automatically creates machines, and the amount is not fixed. I set the minimum value to 10 machines and the maximum value to 100 machines. So how can I ensure that I use the mirror from the mirror market? Can the demand instance pop up normally?

If you need to pop up n images of the same type, you need to purchase n images from the image market in advance.

16. Do the images in the image market support bulk purchase?

Bulk purchases are not supported at the moment.

17. If the image in the image market used before does not exist for the product (such as: jxsc000010, jxsc000019), how can we ensure that the machine in the auto-scaling group that has been set up will pop up normally?

In this case, it is recommended that you choose an image that can be replaced in the image market.

18. Can one product code support images from different regions?

Supported, provided that the region already supports the product image.

19. I bought an image with the same value of 100 product codes. Can it be supported in all regions?

Currently, the images in the image market already have the region attribute. Please purchase the region image you need to use.

The above is the detailed content of How to use third-party high-quality image products to enhance users' experience using cloud servers. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
什么是linux设备节点什么是linux设备节点Apr 18, 2022 pm 08:10 PM

linux设备节点是应用程序和设备驱动程序沟通的一个桥梁;设备节点被创建在“/dev”,是连接内核与用户层的枢纽,相当于硬盘的inode一样的东西,记录了硬件设备的位置和信息。设备节点使用户可以与内核进行硬件的沟通,读写设备以及其他的操作。

Linux中open和fopen的区别有哪些Linux中open和fopen的区别有哪些Apr 29, 2022 pm 06:57 PM

区别:1、open是UNIX系统调用函数,而fopen是ANSIC标准中的C语言库函数;2、open的移植性没fopen好;3、fopen只能操纵普通正规文件,而open可以操作普通文件、网络套接字等;4、open无缓冲,fopen有缓冲。

linux中什么叫端口映射linux中什么叫端口映射May 09, 2022 pm 01:49 PM

端口映射又称端口转发,是指将外部主机的IP地址的端口映射到Intranet中的一台计算机,当用户访问外网IP的这个端口时,服务器自动将请求映射到对应局域网内部的机器上;可以通过使用动态或固定的公共网络IP路由ADSL宽带路由器来实现。

linux中eof是什么linux中eof是什么May 07, 2022 pm 04:26 PM

在linux中,eof是自定义终止符,是“END Of File”的缩写;因为是自定义的终止符,所以eof就不是固定的,可以随意的设置别名,linux中按“ctrl+d”就代表eof,eof一般会配合cat命令用于多行文本输出,指文件末尾。

linux怎么判断pcre是否安装linux怎么判断pcre是否安装May 09, 2022 pm 04:14 PM

在linux中,可以利用“rpm -qa pcre”命令判断pcre是否安装;rpm命令专门用于管理各项套件,使用该命令后,若结果中出现pcre的版本信息,则表示pcre已经安装,若没有出现版本信息,则表示没有安装pcre。

linux怎么查询mac地址linux怎么查询mac地址Apr 24, 2022 pm 08:01 PM

linux查询mac地址的方法:1、打开系统,在桌面中点击鼠标右键,选择“打开终端”;2、在终端中,执行“ifconfig”命令,查看输出结果,在输出信息第四行中紧跟“ether”单词后的字符串就是mac地址。

linux中rpc是什么意思linux中rpc是什么意思May 07, 2022 pm 04:48 PM

在linux中,rpc是远程过程调用的意思,是Reomote Procedure Call的缩写,特指一种隐藏了过程调用时实际通信细节的IPC方法;linux中通过RPC可以充分利用非共享内存的多处理器环境,提高系统资源的利用率。

什么是linux交叉编译什么是linux交叉编译Apr 29, 2022 pm 06:47 PM

在linux中,交叉编译是指在一个平台上生成另一个平台上的可执行代码,即编译源代码的平台和执行源代码编译后程序的平台是两个不同的平台。使用交叉编译的原因:1、目标系统没有能力在其上进行本地编译;2、有能力进行源代码编译的平台与目标平台不同。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.