Odoo 온라인¶
Odoo Online offers private databases hosted and managed by Odoo. Odoo Online databases can be accessed using any web browser and do not require a local installation. They can be used for long-term production or to thoroughly test Odoo, including customizations that do not require custom code.
팁
To quickly try out Odoo, shared demo databases are available for testing. No registration is required; however, each database is only available for a few hours.
참고
Odoo Online is incompatible with custom modules or modules from the Odoo Apps Store.
데이터베이스 매니저¶
To manage an Odoo Online database, open to the database manager and sign in as the database administrator.
도메인 주소¶
Configure a custom domain name by selecting a database and clicking Domain Names.
숨기기¶
Permanently hide the database from the database manager by selecting it and clicking Hide. In the dialog box, click Yes, I don’t need it anymore.
참고
It is possible to access a hidden database through its URL.
운영 관리¶
Access all other database management options by selecting it and clicking Manage.
요금제 변경¶
Switch pricing plans by clicking Switch under the desired plan.
업그레이드¶
업그레이드 를 클릭하여 데이터베이스 업그레이드 를 실행합니다.
참고
이 옵션은 업그레이드가 가능한 경우에만 표시됩니다.
이름 바꾸기¶
Rename and change the URL of a database by clicking Rename. In the dialog box, enter a New name and click Rename.
복사¶
Create a copy of the database by clicking Duplicate. In the dialog box, enter a New name and click Duplicate.
중요
By default, the For testing purposes option is enabled. It disables all external actions (emails, payments, delivery orders, etc.) on the duplicated database.
복제한 항목은 15일 후 만료됩니다.
A maximum of five duplicates can be created per database. Under extraordinary circumstances, contact Odoo Support to extend the limit.
백업 다운로드¶
Download a ZIP file containing a database backup by clicking Download Backup.
참고
데이터베이스는 Odoo 클라우드 호스팅 SLA 에 따라 매일 백업됩니다.
If the Download Backup option is disabled, it means the database is too large to be downloaded using the database manager. Contact Odoo Support to request an alternative download solution.
관리자 활동 로그 보기¶
View the logs of all actions taken by Odoo employees or the database administrator on the database by clicking View Admin Activity Logs.
참고
Actions taken by Odoo employees are typically the result of requests submitted to Odoo support, done within the context of a quick start project, or necessary to maintain the database.
소유권 이전¶
Create a support ticket to request a database ownership transfer by clicking Transfer Ownership.
삭제¶
Delete the database and close its related subscription by clicking Delete. In the dialog box, click Delete.
위험
All the database’s data will be deleted instaneously for all users and cannot be restored. It is recommended to download a backup before deleting a database.
참고
삭제 후, 데이터베이스 이름은 누구나 사용할 수 있게 됩니다.
웹 서비스¶
To retrieve a list of all databases displayed under the database manager programmatically, call the list method of the
odoo.database model via an external JSON-2 API call.
Example
import requests
APIKEY = "your_apikey"
requests.post(
"https://www.odoo.com/json/2/odoo.database/list",
headers={
"Authorization": f"bearer {APIKEY}",
"X-Odoo-Database": "openerp",
}
json={},
)