{"id":17545,"date":"2024-03-05T09:50:33","date_gmt":"2024-03-05T09:50:33","guid":{"rendered":"https:\/\/cloudkul.com\/blog\/?p=17545"},"modified":"2024-08-09T11:31:38","modified_gmt":"2024-08-09T11:31:38","slug":"how-to-setup-odoo-17-on-aws","status":"publish","type":"post","link":"https:\/\/cloudkul.com\/blog\/how-to-setup-odoo-17-on-aws\/","title":{"rendered":"How to setup Odoo 17 on AWS"},"content":{"rendered":"\n<p>In our previous blog, we discussed how we can <a href=\"https:\/\/cloudkul.com\/blog\/how-to-setup-odoo16-on-aws\/\">set up Odoo16 on AWS<\/a>. Now let&#8217;s proceed further to know how we can set up odoo 17 on the AWS cloud server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Steps to setup Odoo 17 on the AWS server <\/h2>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Update The Apt Source List<\/h2>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo apt-get update<\/pre>\n\n\n\n<p><strong>apt-get update: <\/strong>Updates the list of available packages and their versions from the repositories.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Install The Required Python Libraries<\/h2>\n\n\n\n<p>Let&#8217;s install further Python libraries &#8211; <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo apt-get install git python3-pip build-essential wget libpq-dev libsasl2-dev libldap2-dev -y<\/pre>\n\n\n\n<p><strong>These tools are required to &#8211; <\/strong><\/p>\n\n\n\n<ul>\n<li><strong>git: <\/strong>Version control system for cloning repositories.<\/li>\n\n\n\n<li><strong>python3-pip: <\/strong>Python package installer for Python 3.<\/li>\n\n\n\n<li><strong>build-essential:<\/strong> Includes necessary tools for building software (like gcc, make).<\/li>\n\n\n\n<li><strong>wget:<\/strong> Utility for downloading files from the web.<\/li>\n\n\n\n<li><strong>libpq-dev:<\/strong> Development files for PostgreSQL.<\/li>\n\n\n\n<li><strong>libsasl2-dev: <\/strong>Development files for SASL (Simple Authentication and Security Layer).<\/li>\n\n\n\n<li><strong>libldap2-dev: <\/strong>Development files for LDAP (Lightweight Directory Access Protocol).<\/li>\n\n\n\n<li><strong>-y: <\/strong>Automatically answers &#8220;yes&#8221; to prompts.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/2.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"517\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/2-1024x517.png\" alt=\"\" class=\"wp-image-17569\"\/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Create A User To Run The Odoo Application<\/h2>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo useradd -m -d \/opt\/odoo17 -U -r odoo17<\/pre>\n\n\n\n<p><strong>Note: <\/strong>However, You can create your own version-specific user.<\/p>\n\n\n\n<ul>\n<li><strong>useradd: <\/strong>will create a new user account.<\/li>\n\n\n\n<li><strong>-m: <\/strong>Creates a home directory for the user.<\/li>\n\n\n\n<li><strong>-d \/opt\/odoo17:<\/strong> Specifies the user&#8217;s home directory.<\/li>\n\n\n\n<li><strong>-U:<\/strong> Creates a user group with the same name.<\/li>\n\n\n\n<li><strong>-r: <\/strong>Creates a system account (not a regular user).<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/3.png\"><img loading=\"lazy\" decoding=\"async\" width=\"836\" height=\"116\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/3.png\" alt=\"\" class=\"wp-image-17570\"\/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Install &amp; Configure The PostgreSQL Database Server<\/h2>\n\n\n\n<p>A database can be served from the local database server as well as through the AWS RDS.<\/p>\n\n\n\n<p><strong>Case 1: <\/strong>If you are using Local Database Server (PostgreSQL)<\/p>\n\n\n\n<p>Use this command to install the PostgreSQL server &#8211; <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo apt install -y postgresql<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/4A.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"374\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/4A-1024x374.png\" alt=\"\" class=\"wp-image-17572\"\/><\/a><\/figure>\n\n\n\n<p>After installing the PostgreSQL, We will set up a new PostgreSQL user to do the interactions with the database from the odoo application.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo su - postgres -c \"createuser -s odoo17\"<\/pre>\n\n\n\n<ul>\n<li><strong>su &#8211; postgres:<\/strong> Switches to the Postgres user.<\/li>\n\n\n\n<li><strong>-c &#8220;createuser -s odoo17&#8221;: <\/strong>Executes the createuser command to create a superuser named odoo17.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/4B.png\"><img loading=\"lazy\" decoding=\"async\" width=\"886\" height=\"100\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/4B.png\" alt=\"\" class=\"wp-image-17573\"\/><\/a><\/figure>\n\n\n\n<p><strong>Case 2: <\/strong>If you are using AWS RDS<\/p>\n\n\n\n<p>To connect to an RDS PostgreSQL instance from an Ubuntu server and create a user, you can follow these steps:<\/p>\n\n\n\n<p>Install the PostgreSQL client on your Ubuntu server if it&#8217;s not already installed:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\"> sudo apt install postgresql-client -y<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/4C.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1020\" height=\"378\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/4C.png\" alt=\"\" class=\"wp-image-17574\"\/><\/a><\/figure>\n\n\n\n<p>Now, you can connect to your RDS and run the following command.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">psql -p 5432 -h yourrdsendpoint -U username<\/pre>\n\n\n\n<ul>\n<li><strong>psql: <\/strong>PostgreSQL interactive terminal.<\/li>\n\n\n\n<li><strong>-p 5432: <\/strong>Specifies the port number (default PostgreSQL port).<\/li>\n\n\n\n<li><strong>-h yourrdsendpoint: <\/strong>Specifies the RDS endpoint.<\/li>\n\n\n\n<li><strong>-U username:<\/strong> Specifies the username to connect with.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/4D-final.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"262\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/4D-final-1024x262.png\" alt=\"\" class=\"wp-image-17576\"\/><\/a><\/figure>\n\n\n\n<p>Now you can CREATE ROLE odoo17 WITH LOGIN PASSWORD &#8216;$ecretp@$$&#8217;;<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/4E.png\"><img loading=\"lazy\" decoding=\"async\" width=\"900\" height=\"190\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/4E.png\" alt=\"\" class=\"wp-image-17577\"\/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5: Clone The latest Code From Github After Switching To The Odoo17 User<\/h2>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo su - odoo17 -s \/bin\/bash<\/pre>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"alignleft size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/5A.png\"><img loading=\"lazy\" decoding=\"async\" width=\"747\" height=\"116\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/5A.png\" alt=\"\" class=\"wp-image-17578\"\/><\/a><\/figure><\/div>\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">git clone https:\/\/www.github.com\/odoo\/odoo --depth 1 --branch 17.0 \/opt\/odoo17\/odoo<\/pre>\n\n\n\n<ul>\n<li><strong>sudo su &#8211; <\/strong>odoo17 -s \/bin\/bash : Switches to the odoo17 user and starts a new shell.<\/li>\n\n\n\n<li><strong>git clone:<\/strong> Clones a repository.<\/li>\n\n\n\n<li><strong>&#8211;depth 1: <\/strong>Fetches only the latest snapshot of the repository.<\/li>\n\n\n\n<li><strong>&#8211;branch 17.0: <\/strong>Specifies the branch to clone.<\/li>\n\n\n\n<li><strong>\/opt\/odoo17\/odoo:<\/strong> Directory where the repository will be cloned.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/5B.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"199\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/5B-1024x199.png\" alt=\"\" class=\"wp-image-17579\" style=\"width:840px;height:auto\"\/><\/a><\/figure>\n\n\n\n<p>Once the latest code is cloned on your server, you can exit from the odoo17 user and be the root user to run further commands.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6: Install Required Web Dependencies For The Odoo<\/h2>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo apt install -y npm\nsudo apt install -y node-less\nsudo npm install -g less less-plugin-clean-css<\/pre>\n\n\n\n<ul>\n<li><strong>npm: <\/strong>Node.js is a package manager.<\/li>\n\n\n\n<li><strong>node-less:<\/strong> LESS (Leaner Style Sheets) compiler for Node.js.<\/li>\n\n\n\n<li><strong>-g:<\/strong> Installs packages globally.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/6.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"210\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/6-1024x210.png\" alt=\"\" class=\"wp-image-17580\"\/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Step 7: Installing Wkhtmltopdf<\/h2>\n\n\n\n<p>To install the <code>Wkhtmltopdf<\/code> package on an Ubuntu 22.04 server, you need to have the <code>libssl1.1<\/code> package (<code>libssl1.1_1.1.1f-1ubuntu2_amd64.deb<\/code>) installed on the server.<\/p>\n\n\n\n<p>Wkhtmltopdf is used for generating PDF documents from HTML content. This is useful for generating reports, invoices, or any other document that needs to be printed or archived in a PDF format. <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">wget http:\/\/archive.ubuntu.com\/ubuntu\/pool\/main\/o\/openssl\/libssl1.1_1.1.1f-1ubuntu2_amd64.deb<\/pre>\n\n\n\n<p>This command will help download and install a specific version of the OpenSSL library<br>provides cryptographic functions, SSL (Secure Sockets Layer), and TLS (Transport Layer Security) protocols.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/7A.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"219\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/7A-1024x219.png\" alt=\"\" class=\"wp-image-17582\"\/><\/a><\/figure>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2_amd64.deb<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/7B.png\"><img loading=\"lazy\" decoding=\"async\" width=\"793\" height=\"181\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/7B.png\" alt=\"\" class=\"wp-image-17583\"\/><\/a><\/figure>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo wget https:\/\/github.com\/wkhtmltopdf\/wkhtmltopdf\/releases\/download\/0.12.5\/wkhtmltox_0.12.5-1.bionic_amd64.deb<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/7C.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"384\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/7C-1024x384.png\" alt=\"\" class=\"wp-image-17584\"\/><\/a><\/figure>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo apt install .\/wkhtmltox_0.12.5-1.bionic_amd64.deb -y<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/7D.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"356\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/7D-1024x356.png\" alt=\"\" class=\"wp-image-17585\"\/><\/a><\/figure>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo cp \/usr\/local\/bin\/wkhtmltopdf \/usr\/bin<\/pre>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"alignleft size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/7E.png\"><img loading=\"lazy\" decoding=\"async\" width=\"695\" height=\"94\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/7E.png\" alt=\"\" class=\"wp-image-17586\"\/><\/a><\/figure><\/div>\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>This command copies the wkhtmltopdf executable to \/usr\/bin, making it available system-wide. This is useful if the executable is not already in the system\u2019s PATH.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo cp \/usr\/local\/bin\/wkhtmltoimage \/usr\/bin<\/pre>\n\n\n\n<p>This command just like the previous command will convert HTML to images (e.g., PNG).<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"alignleft size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/7F.png\"><img loading=\"lazy\" decoding=\"async\" width=\"685\" height=\"86\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/7F.png\" alt=\"\" class=\"wp-image-17587\"\/><\/a><\/figure><\/div>\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 8: Install Required Python 3 Dependencies For Odoo<\/h2>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">cd \/opt\/odoo17\/odoo<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/8a.png\"><img loading=\"lazy\" decoding=\"async\" width=\"582\" height=\"99\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/8a.png\" alt=\"\" class=\"wp-image-17590\"\/><\/a><\/figure>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">pip3 install -r requirements.txt<\/pre>\n\n\n\n<p><strong>pip3 install -r requirements.txt: <\/strong>Installs Python dependencies listed in requirements.txt.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/8B.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"314\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/8B-1024x314.png\" alt=\"\" class=\"wp-image-17591\"\/><\/a><\/figure>\n\n\n\n<p>if you face cffi issue because of version incompatibility.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/8C.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"355\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/8C-1024x355.png\" alt=\"\" class=\"wp-image-17592\"\/><\/a><\/figure>\n\n\n\n<p>Run the below command.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">pip3 install --upgrade pip<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/8D.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"211\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/8D-1024x211.png\" alt=\"\" class=\"wp-image-17593\"\/><\/a><\/figure>\n\n\n\n<p>again run the requirement txt<\/p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/8E.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"220\" data-id=\"17594\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/8E-1024x220.png\" alt=\"\" class=\"wp-image-17594\"\/><\/a><\/figure>\n<\/figure>\n\n\n\n<p>Now the cffi package issue has been Fixed<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 9: Make A Directory To Keep Track Of Odoo Logs<\/h2>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\"> sudo mkdir \/var\/log\/odoo<\/pre>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"alignleft size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/9A.png\"><img loading=\"lazy\" decoding=\"async\" width=\"675\" height=\"80\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/9A.png\" alt=\"\" class=\"wp-image-17596\"\/><\/a><\/figure><\/div>\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\"> sudo chown odoo17:root \/var\/log\/odoo<\/pre>\n\n\n\n<ul>\n<li><strong>mkdir: <\/strong>Creates a new directory to keep track of odoo logs.<\/li>\n\n\n\n<li><strong>chown: <\/strong>Changes file owner to odoo and group to root.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/9B.png\"><img loading=\"lazy\" decoding=\"async\" width=\"779\" height=\"74\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/9B.png\" alt=\"\" class=\"wp-image-17597\"\/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Step 10: Create A Configuration File For The Odoo<\/h2>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo nano \/etc\/odoo-server.conf<\/pre>\n\n\n\n<p>Sample configuration file.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">[options];This is the password that allows database operations:\n; admin_passwd = admin\ndb_host = False #If using RDS then define your rdsendpoint\ndb_port = False\ndb_user = odoo17\ndb_password = False #add your own password\naddons_path = \/opt\/odoo17\/odoo\/addons\nlogfile = \/var\/log\/odoo\/odoo-server.log\nproxy_mode = True<\/pre>\n\n\n\n<p>Further, Set the ownership and permission to the file.<\/p>\n\n\n\n<ul>\n<li><strong>admin_passwd<\/strong>: Sets the administrator password.<\/li>\n\n\n\n<li><strong>db_host<\/strong>: Database host (set to RDS endpoint if using RDS).<\/li>\n\n\n\n<li><strong>db_port<\/strong>: Database port.<\/li>\n\n\n\n<li><strong>db_user<\/strong>: Database user.<\/li>\n\n\n\n<li><strong>db_password<\/strong>: Database user password.<\/li>\n\n\n\n<li><strong>addons_path<\/strong>: Path to Odoo add-ons.(We use webkul addons here)<\/li>\n\n\n\n<li><strong>logfile<\/strong>: Path to the log file.<\/li>\n\n\n\n<li><strong>proxy_mode<\/strong>: Enables proxy mode.<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo chown odoo17: \/etc\/odoo-server.conf<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/10A.png\"><img loading=\"lazy\" decoding=\"async\" width=\"780\" height=\"62\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/10A.png\" alt=\"\" class=\"wp-image-17600\"\/><\/a><\/figure>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo chmod 640 \/etc\/odoo-server.conf<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/10B.png\"><img loading=\"lazy\" decoding=\"async\" width=\"784\" height=\"64\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/10B.png\" alt=\"\" class=\"wp-image-17601\"\/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Step 11: Now Create An Odoo Boot Script<\/h2>\n\n\n\n<p>This script will let us start\/stop the Odoo as a service automatically. Click <a href=\"https:\/\/raw.githubusercontent.com\/mohitg1213\/odoo_scripts\/master\/odoo-server\">here<\/a> to get the script.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo nano \/etc\/init.d\/odoo-server<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/11.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"568\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/11-1024x568.png\" alt=\"\" class=\"wp-image-17603\"\/><\/a><\/figure>\n\n\n\n<p><strong>Note:- <\/strong>Copy the script to your server and change the daemon path with your respective path.<\/p>\n\n\n\n<p>Now, let\u2019s set the ownership and the permission also for the file.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\"> sudo chmod 755 \/etc\/init.d\/odoo-server\n sudo chown root: \/etc\/init.d\/odoo-server<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/11B.png\"><img loading=\"lazy\" decoding=\"async\" width=\"754\" height=\"118\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/11B.png\" alt=\"\" class=\"wp-image-17605\"\/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Step 12: Start\/Stop Odoo Service<\/h2>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo \/etc\/init.d\/odoo-server start<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/12A.png\"><img loading=\"lazy\" decoding=\"async\" width=\"917\" height=\"332\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/12A.png\" alt=\"\" class=\"wp-image-17606\"\/><\/a><\/figure>\n\n\n\n<p><strong>Monitor logs of the Odoo using the below command.<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">tail -f \/var\/log\/odoo\/odoo-server.log<\/pre>\n\n\n\n<ul>\n<li><strong>\/etc\/init.d\/odoo-server start<\/strong>: Starts the Odoo service.<\/li>\n\n\n\n<li><strong>tail -f<\/strong>: Continuously displays the log file contents.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/12B.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"304\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/12B-1024x304.png\" alt=\"\" class=\"wp-image-17607\"\/><\/a><\/figure>\n\n\n\n<p>Let\u2019s try the IP and port in your preferred browser if the logs don\u2019t show any indication of an error.<\/p>\n\n\n\n<p><strong>Note \u2013 <\/strong>Do open the 8069 port from the AWS console in the Security group.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/12C.png\"><img loading=\"lazy\" decoding=\"async\" width=\"998\" height=\"698\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/12C.png\" alt=\"\" class=\"wp-image-17608\"\/><\/a><\/figure>\n\n\n\n<p>Now your Odoo is successfully operating on a browser with a given IP address and port. <\/p>\n\n\n\n<p>If you want to configure your Odoo application with Nginx, then you can refer to the <a href=\"https:\/\/cloudkul.com\/blog\/how-to-set-up-the-nginx-server-for-the-odoo-application\/\">Blog<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Need Support?<\/h2>\n\n\n\n<p>Thank You for reading this Blog!<\/p>\n\n\n\n<p>For further more interesting blogs, keep in touch with us. If you need any kind of support, simply raise a ticket at&nbsp;<strong><a href=\"https:\/\/webkul.uvdesk.com\/en\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/webkul.uvdesk.com\/en\/<\/a>.<\/strong> Also, visit our useful <strong><a href=\"https:\/\/store.webkul.com\/OpenCart-Modules.html\">OpenCart modules<\/a><\/strong>.<\/p>\n\n\n\n<p><strong>For further help or queries, please&nbsp;<a href=\"https:\/\/cloudkul.com\/contact\/\">contact<\/a>&nbsp;us or raise a&nbsp;<a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\">ticket<\/a>.<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In our previous blog, we discussed how we can set up Odoo16 on AWS. Now <a class=\"text-primary\" title=\"read more\" href=\"https:\/\/cloudkul.com\/blog\/how-to-setup-odoo-17-on-aws\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":29,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_mi_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[32,2,443,444],"tags":[16,3,568,211,871,780],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to setup Odoo 17 on AWS - Cloudkul<\/title>\n<meta name=\"description\" content=\"The Odoo 17 is officially rolled out and has already created a buzz among the users. You can visit GitHub to find the Source Code for Odoo Community Edition.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cloudkul.com\/blog\/how-to-setup-odoo-17-on-aws\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to setup Odoo 17 on AWS - Cloudkul\" \/>\n<meta property=\"og:description\" content=\"The Odoo 17 is officially rolled out and has already created a buzz among the users. You can visit GitHub to find the Source Code for Odoo Community Edition.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudkul.com\/blog\/how-to-setup-odoo-17-on-aws\/\" \/>\n<meta property=\"og:site_name\" content=\"Cloudkul\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-05T09:50:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-09T11:31:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/2-1024x517.png\" \/>\n<meta name=\"author\" content=\"Tanya Garg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/CloudWebkul\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cloudkul.com\/blog\/how-to-setup-odoo-17-on-aws\/\",\"url\":\"https:\/\/cloudkul.com\/blog\/how-to-setup-odoo-17-on-aws\/\",\"name\":\"How to setup Odoo 17 on AWS - Cloudkul\",\"isPartOf\":{\"@id\":\"https:\/\/cloudkul.com\/blog\/#website\"},\"datePublished\":\"2024-03-05T09:50:33+00:00\",\"dateModified\":\"2024-08-09T11:31:38+00:00\",\"author\":{\"@id\":\"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/65b93d1aa584abd012eb60a25839b984\"},\"description\":\"The Odoo 17 is officially rolled out and has already created a buzz among the users. You can visit GitHub to find the Source Code for Odoo Community Edition.\",\"breadcrumb\":{\"@id\":\"https:\/\/cloudkul.com\/blog\/how-to-setup-odoo-17-on-aws\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cloudkul.com\/blog\/how-to-setup-odoo-17-on-aws\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cloudkul.com\/blog\/how-to-setup-odoo-17-on-aws\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cloudkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to setup Odoo 17 on AWS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cloudkul.com\/blog\/#website\",\"url\":\"https:\/\/cloudkul.com\/blog\/\",\"name\":\"Cloudkul\",\"description\":\"Host your eCommerce Store on AWS with Optimized Performance\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cloudkul.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/65b93d1aa584abd012eb60a25839b984\",\"name\":\"Tanya Garg\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9ea334eba6adf9dfe79873bc0bee8dad?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9ea334eba6adf9dfe79873bc0bee8dad?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g\",\"caption\":\"Tanya Garg\"},\"description\":\"Business Developer Executive at Webkul\",\"sameAs\":[\"https:\/\/cloudkul.com\/\",\"https:\/\/twitter.com\/https:\/\/twitter.com\/CloudWebkul\"],\"url\":\"https:\/\/cloudkul.com\/blog\/author\/tanyagarg-bd037\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to setup Odoo 17 on AWS - Cloudkul","description":"The Odoo 17 is officially rolled out and has already created a buzz among the users. You can visit GitHub to find the Source Code for Odoo Community Edition.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/cloudkul.com\/blog\/how-to-setup-odoo-17-on-aws\/","og_locale":"en_US","og_type":"article","og_title":"How to setup Odoo 17 on AWS - Cloudkul","og_description":"The Odoo 17 is officially rolled out and has already created a buzz among the users. You can visit GitHub to find the Source Code for Odoo Community Edition.","og_url":"https:\/\/cloudkul.com\/blog\/how-to-setup-odoo-17-on-aws\/","og_site_name":"Cloudkul","article_published_time":"2024-03-05T09:50:33+00:00","article_modified_time":"2024-08-09T11:31:38+00:00","og_image":[{"url":"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/03\/2-1024x517.png"}],"author":"Tanya Garg","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/CloudWebkul","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/cloudkul.com\/blog\/how-to-setup-odoo-17-on-aws\/","url":"https:\/\/cloudkul.com\/blog\/how-to-setup-odoo-17-on-aws\/","name":"How to setup Odoo 17 on AWS - Cloudkul","isPartOf":{"@id":"https:\/\/cloudkul.com\/blog\/#website"},"datePublished":"2024-03-05T09:50:33+00:00","dateModified":"2024-08-09T11:31:38+00:00","author":{"@id":"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/65b93d1aa584abd012eb60a25839b984"},"description":"The Odoo 17 is officially rolled out and has already created a buzz among the users. You can visit GitHub to find the Source Code for Odoo Community Edition.","breadcrumb":{"@id":"https:\/\/cloudkul.com\/blog\/how-to-setup-odoo-17-on-aws\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudkul.com\/blog\/how-to-setup-odoo-17-on-aws\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/cloudkul.com\/blog\/how-to-setup-odoo-17-on-aws\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to setup Odoo 17 on AWS"}]},{"@type":"WebSite","@id":"https:\/\/cloudkul.com\/blog\/#website","url":"https:\/\/cloudkul.com\/blog\/","name":"Cloudkul","description":"Host your eCommerce Store on AWS with Optimized Performance","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudkul.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/65b93d1aa584abd012eb60a25839b984","name":"Tanya Garg","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9ea334eba6adf9dfe79873bc0bee8dad?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9ea334eba6adf9dfe79873bc0bee8dad?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g","caption":"Tanya Garg"},"description":"Business Developer Executive at Webkul","sameAs":["https:\/\/cloudkul.com\/","https:\/\/twitter.com\/https:\/\/twitter.com\/CloudWebkul"],"url":"https:\/\/cloudkul.com\/blog\/author\/tanyagarg-bd037\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts\/17545"}],"collection":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/users\/29"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/comments?post=17545"}],"version-history":[{"count":47,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts\/17545\/revisions"}],"predecessor-version":[{"id":17880,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts\/17545\/revisions\/17880"}],"wp:attachment":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/media?parent=17545"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/categories?post=17545"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/tags?post=17545"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}