{"id":3233,"date":"2020-10-26T22:20:36","date_gmt":"2020-10-26T16:50:36","guid":{"rendered":"https:\/\/www.24x7serversupport.com\/blog\/?p=3233"},"modified":"2020-10-26T22:20:41","modified_gmt":"2020-10-26T16:50:41","slug":"how-to-install-odoo-14-on-centos-8-with-nginx-as-a-reverse-proxy","status":"publish","type":"post","link":"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-odoo-14-on-centos-8-with-nginx-as-a-reverse-proxy\/","title":{"rendered":"How to Install Odoo 14 on CentOS 8 with Nginx as a Reverse Proxy"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\" id=\"h-log-in-via-ssh-and-update-your-server\">Log in via SSH and Update your Server<\/h2>\n\n\n\n<p>First, you will need to log in to your CentOS 8 VPS by using SSH as the root user:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">ssh root@IP_ADDRESS -p PORT_NUMBER<\/pre>\n\n\n\n<p>Replace&nbsp;<strong>IP_ADRRESS&nbsp;<\/strong>and&nbsp;<strong>PORT_NUMBER<\/strong>&nbsp;with the correct server IP address and SSH port number. The default port number is 22, but your server may have a unique one set.<\/p>\n\n\n\n<p>Next, run the following commands to upgrade all installed packages on your VPS:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">dnf update -y<\/pre>\n\n\n\n<p>Once all of the packages are updated, restart your system to apply any changes that require a reboot. This ensures a clean slate on which we\u2019ll be installing our Odoo 14 instance.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Install the Required Dependencies<\/h2>\n\n\n\n<p>Before you begin with the Odoo installation, you will need to install Python 3 and some other Odoo dependencies onto your system. You can install all of them using the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">dnf install python3 python3-devel git gcc redhat-rpm-config libxslt-devel bzip2-devel openldap-devel libjpeg-devel freetype-devel curl unzip -y<\/pre>\n\n\n\n<p>Once all the packages are installed, you will also need to install the&nbsp;<code>wkhtmltopdf&nbsp;<\/code>package in your system. Wkhtmltopdf is an open-source tool that can be used to convert the HTML format to a PDF, that way Odoo can export PDF reports.<\/p>\n\n\n\n<p>You can install it by running the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">dnf install https:\/\/github.com\/wkhtmltopdf\/wkhtmltopdf\/releases\/download\/0.12.5\/wkhtmltox-0.12.5-1.centos8.x86_64.rpm<\/pre>\n\n\n\n<p>Verify that&nbsp;<code>wkhtmltopdf<\/code>&nbsp;is installed on your server:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># wkhtmltopdf --version\nwkhtmltopdf 0.12.5 (with patched qt)<\/pre>\n\n\n\n<p>Once this is done, you can proceed to the next step.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Install and Configure PostgreSQL<\/h2>\n\n\n\n<p>Odoo uses PostgreSQL to store its data. You can install the PostgreSQL server with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">dnf install postgresql postgresql-server postgresql-contrib -y<\/pre>\n\n\n\n<p>Once the installation is completed, initialize the database with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">postgresql-setup initdb<\/pre>\n\n\n\n<p>To start the PostgreSQL service and enable it to automatically start after every server reboot, run the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl start postgresql<br>systemctl enable postgresql<\/pre>\n\n\n\n<p>Next, log in to the PostgreSQL shell and create a new PostgreSQL user for your Odoo database, with the following command. The name we used is&nbsp;<code>odoo14<\/code>, but you can use any name you like.&nbsp;<strong>KEEP IN MIND<\/strong>&nbsp;that the username you set here has to be&nbsp;<strong>identical<\/strong>&nbsp;to the system user that you\u2019re going to create in the next step:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">su - postgres -c \"createuser -s odoo14\"<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Install and Configure Odoo 14 on CentOS 8<\/h2>\n\n\n\n<p>In this section, we will download Odoo 14 from the official Git repository and install it in a Python virtual environment.<\/p>\n\n\n\n<p>First, we need to create a new system user for our Odoo installation. Make sure the username is the same as the PostgreSQL user we created in the previous step:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">useradd -m -U -r -d \/opt\/odoo14 -s \/bin\/bash odoo14<\/pre>\n\n\n\n<p>Next, log in as the newly created&nbsp;<code>odoo14<\/code>&nbsp;user and download Odoo 14 from the official Git repository:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">su - odoo14\ngit clone https:\/\/www.github.com\/odoo\/odoo --depth 1 --branch 14.0 \/opt\/odoo\/odoo14<\/pre>\n\n\n\n<p>Once the download is complete, create a new Python virtual environment for the Odoo 14 installation with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cd \/opt\/odoo14 &amp;&amp; python3 -m venv odoo14-venv<\/pre>\n\n\n\n<p>Activate the virtual environment with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">source odoo14-venv\/bin\/activate<\/pre>\n\n\n\n<p>You can now install the required python modules using the&nbsp;<code>pip3<\/code>&nbsp;command, as shown below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">(odoo14-venv) $ pip3 install wheel\n(odoo14-venv) $ pip3 install -r odoo14\/requirements.txt<\/pre>\n\n\n\n<p>Once all the required modules are installed successfully, deactivate the virtual environment and switch back to the sudo or root user with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">(odoo14-venv) $ deactivate &amp;&amp; exit<\/pre>\n\n\n\n<p>Next, create a separate directory for Odoo\u2019s custom addons\/apps. The best practice is to install custom Odoo modules in a separate directory. This ensures that if some custom module doesn\u2019t work, it can easily be removed without risking the removal of default modules that come included with the regular installation.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mkdir \/opt\/odoo\/odoo14-custom-addons\nchown odoo: \/opt\/odoo\/odoo14-custom-addons<\/pre>\n\n\n\n<p>The following commands will create a log file for the new Odoo 14 installation:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mkdir \/var\/log\/odoo14 &amp;&amp; touch \/var\/log\/odoo14\/odoo14.log\nchown -R odoo14: \/var\/log\/odoo14\/<\/pre>\n\n\n\n<p>You can now create a configuration file for your Odoo installation:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nano \/etc\/odoo14.conf<\/pre>\n\n\n\n<p>Open that file and enter the following information:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[options]\n; This is the password that allows database operations:\nadmin_passwd = master_password\ndb_host = False\ndb_port = False\ndb_user = odoo14\ndb_password = False\nxmlrpc_port = 8069\n; longpolling_port = 8072\nlogfile = \/var\/log\/odoo14\/odoo14.log\nlogrotate = True\naddons_path = \/opt\/odoo\/odoo14\/addons,\/opt\/odoo\/odoo14-custom-addons<\/pre>\n\n\n\n<p>Make sure you set a strong and difficult to guess&nbsp;<code>master_password<\/code>.<\/p>\n\n\n\n<p>After you are done, save and close the file.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Create a Systemd Unit File for Odoo 14<\/h2>\n\n\n\n<p>We will now create a&nbsp;<code>systemd<\/code>&nbsp;unit file so that we can run our Odoo 14 instance as a service.<\/p>\n\n\n\n<p>You can create the service with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nano \/etc\/systemd\/system\/odoo14.service<\/pre>\n\n\n\n<p>Once you open the file, add the following lines:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[Unit]<br>Description=Odoo14<br>Requires=postgresql.service<br>After=network.target postgresql.service<br>[Service]<br>Type=simple<br>SyslogIdentifier=odoo14<br>PermissionsStartOnly=true<br>User=odoo14<br>Group=odoo14<br>ExecStart=\/opt\/odoo14\/venv\/bin\/python3 \/opt\/odoo14\/odoo\/odoo-bin -c \/etc\/odoo14.conf<br>StandardOutput=journal+console<br>[Install]<br>WantedBy=multi-user.target<\/pre>\n\n\n\n<p>Save and close the file, then reload the&nbsp;<code>systemd<\/code>&nbsp;daemon list with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl daemon-reload<\/pre>\n\n\n\n<p>You can now start the Odoo 14 service and enable it to start at boot with the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl start odoo14<br>systemctl enable odoo14<\/pre>\n\n\n\n<p>You can now verify the status of your Odoo 14 service with:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl status odoo14<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Configure Nginx as a Reverse Proxy<\/h2>\n\n\n\n<p>Your Odoo 14 install is complete and is now accessible at your CentOS 8 server\u2019s public IP with the post number 8069. However, if you want to access your Odoo application using a domain name instead of typing the IP address and the port number in the URL, you will have to configure a reverse proxy on your server.<\/p>\n\n\n\n<p>We will show you how to implement the reverse proxy configuration using the Nginx web server. Nginx is a powerful and high-performance web server that focuses on customization and performance.<\/p>\n\n\n\n<p>First, install Nginx with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">dnf install nginx -y<\/pre>\n\n\n\n<p>Once installed, create a new Nginx virtual host configuration file. Replace&nbsp;<code>yourdomain.com<\/code>&nbsp;with your registered domain name:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nano \/etc\/nginx\/conf.d\/yourdomain.com.conf<\/pre>\n\n\n\n<p>Add the following lines:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">upstream odoo {\nserver 127.0.0.1:8069;\n}\nupstream odoochat {\nserver 127.0.0.1:8072;\n}\nserver {\nlisten 80;\nserver_name <strong>yourdomain.com<\/strong>;\nproxy_read_timeout 720s;\nproxy_connect_timeout 720s;\nproxy_send_timeout 720s;\n# Proxy headers\nproxy_set_header X-Forwarded-Host $host;\nproxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\nproxy_set_header X-Forwarded-Proto $scheme;\nproxy_set_header X-Real-IP $remote_addr;\n# log files\naccess_log \/var\/log\/nginx\/<strong>yourdomain.com<\/strong>.log;\nerror_log \/var\/log\/nginx\/<strong>yourdomain.com<\/strong>.log;\n# Handle longpoll requests\nlocation \/longpolling {\nproxy_pass http:\/\/odoochat;\n}\n# Cache static files\nlocation ~* \/web\/static\/ {\nproxy_cache_valid 200 90m;\nproxy_buffering on;\nexpires 864000;\nproxy_pass http:\/\/odoo;\n}\ngzip_types text\/css text\/less text\/plain text\/xml application\/xml application\/json application\/javascript;\ngzip on;\n}<\/pre>\n\n\n\n<p>Make sure to replace&nbsp;<code>yourdomain.com<\/code>&nbsp;with your registered domain name.<\/p>\n\n\n\n<p>You can now start the Nginx service and enable it to start at boot with the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl start nginx<br>systemctl enable nginx<\/pre>\n\n\n\n<p>You will also need to configure your Odoo to use the proxy. You can do it by editing the Odoo configuration file:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nano \/etc\/odoo14.conf<\/pre>\n\n\n\n<p>And add the following line to the end of the file:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">proxy_mode = True<\/pre>\n\n\n\n<p>Save and close the file, then restart the Odoo 14 service to implement the changes:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl restart odoo14<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-access-the-odoo-14-instance\">Access the Odoo 14 Instance<\/h2>\n\n\n\n<p>You should now be able to access the Odoo 14 instance with your domain name at&nbsp;<code>http:\/\/yourdomain.com<\/code>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Log in via SSH and Update your Server First, you will need to log in to your CentOS 8 VPS by using SSH as the root user: ssh root@IP_ADDRESS -p PORT_NUMBER Replace&nbsp;IP_ADRRESS&nbsp;and&nbsp;PORT_NUMBER&nbsp;with the correct server IP address and SSH port number. The default port number is 22, but your server may have a unique one [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","enabled":false}}},"categories":[30,235],"tags":[],"class_list":["post-3233","post","type-post","status-publish","format-standard","hentry","category-centos","category-nginx"],"jetpack_publicize_connections":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Install Odoo 14 on CentOS 8 with Nginx as a Reverse Proxy | 24x7serversupport Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-odoo-14-on-centos-8-with-nginx-as-a-reverse-proxy\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Odoo 14 on CentOS 8 with Nginx as a Reverse Proxy | 24x7serversupport Blog\" \/>\n<meta property=\"og:description\" content=\"Log in via SSH and Update your Server First, you will need to log in to your CentOS 8 VPS by using SSH as the root user: ssh root@IP_ADDRESS -p PORT_NUMBER Replace&nbsp;IP_ADRRESS&nbsp;and&nbsp;PORT_NUMBER&nbsp;with the correct server IP address and SSH port number. The default port number is 22, but your server may have a unique one [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-odoo-14-on-centos-8-with-nginx-as-a-reverse-proxy\/\" \/>\n<meta property=\"og:site_name\" content=\"24x7serversupport Blog\" \/>\n<meta property=\"article:published_time\" content=\"2020-10-26T16:50:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-10-26T16:50:41+00:00\" \/>\n<meta name=\"author\" content=\"24x7support\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@24x7serversuppo\" \/>\n<meta name=\"twitter:site\" content=\"@24x7serversuppo\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"24x7support\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-odoo-14-on-centos-8-with-nginx-as-a-reverse-proxy\/\",\"url\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-odoo-14-on-centos-8-with-nginx-as-a-reverse-proxy\/\",\"name\":\"How to Install Odoo 14 on CentOS 8 with Nginx as a Reverse Proxy | 24x7serversupport Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#website\"},\"datePublished\":\"2020-10-26T16:50:36+00:00\",\"dateModified\":\"2020-10-26T16:50:41+00:00\",\"author\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-odoo-14-on-centos-8-with-nginx-as-a-reverse-proxy\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-odoo-14-on-centos-8-with-nginx-as-a-reverse-proxy\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-odoo-14-on-centos-8-with-nginx-as-a-reverse-proxy\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.24x7serversupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Odoo 14 on CentOS 8 with Nginx as a Reverse Proxy\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#website\",\"url\":\"https:\/\/www.24x7serversupport.com\/blog\/\",\"name\":\"24x7serversupport Blog\",\"description\":\"Linux | CPanel | WHM | webhosting| Plesk | DirectAdmin | CentOs | Debian | Ubuntu Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.24x7serversupport.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401\",\"name\":\"24x7support\",\"url\":\"https:\/\/www.24x7serversupport.com\/blog\/author\/24x7support\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Odoo 14 on CentOS 8 with Nginx as a Reverse Proxy | 24x7serversupport Blog","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:\/\/www.24x7serversupport.com\/blog\/how-to-install-odoo-14-on-centos-8-with-nginx-as-a-reverse-proxy\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Odoo 14 on CentOS 8 with Nginx as a Reverse Proxy | 24x7serversupport Blog","og_description":"Log in via SSH and Update your Server First, you will need to log in to your CentOS 8 VPS by using SSH as the root user: ssh root@IP_ADDRESS -p PORT_NUMBER Replace&nbsp;IP_ADRRESS&nbsp;and&nbsp;PORT_NUMBER&nbsp;with the correct server IP address and SSH port number. The default port number is 22, but your server may have a unique one [&hellip;]","og_url":"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-odoo-14-on-centos-8-with-nginx-as-a-reverse-proxy\/","og_site_name":"24x7serversupport Blog","article_published_time":"2020-10-26T16:50:36+00:00","article_modified_time":"2020-10-26T16:50:41+00:00","author":"24x7support","twitter_card":"summary_large_image","twitter_creator":"@24x7serversuppo","twitter_site":"@24x7serversuppo","twitter_misc":{"Written by":"24x7support","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-odoo-14-on-centos-8-with-nginx-as-a-reverse-proxy\/","url":"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-odoo-14-on-centos-8-with-nginx-as-a-reverse-proxy\/","name":"How to Install Odoo 14 on CentOS 8 with Nginx as a Reverse Proxy | 24x7serversupport Blog","isPartOf":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/#website"},"datePublished":"2020-10-26T16:50:36+00:00","dateModified":"2020-10-26T16:50:41+00:00","author":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401"},"breadcrumb":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-odoo-14-on-centos-8-with-nginx-as-a-reverse-proxy\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.24x7serversupport.com\/blog\/how-to-install-odoo-14-on-centos-8-with-nginx-as-a-reverse-proxy\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-odoo-14-on-centos-8-with-nginx-as-a-reverse-proxy\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.24x7serversupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Odoo 14 on CentOS 8 with Nginx as a Reverse Proxy"}]},{"@type":"WebSite","@id":"https:\/\/www.24x7serversupport.com\/blog\/#website","url":"https:\/\/www.24x7serversupport.com\/blog\/","name":"24x7serversupport Blog","description":"Linux | CPanel | WHM | webhosting| Plesk | DirectAdmin | CentOs | Debian | Ubuntu Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.24x7serversupport.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401","name":"24x7support","url":"https:\/\/www.24x7serversupport.com\/blog\/author\/24x7support\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts\/3233","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/comments?post=3233"}],"version-history":[{"count":1,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts\/3233\/revisions"}],"predecessor-version":[{"id":3234,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts\/3233\/revisions\/3234"}],"wp:attachment":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/media?parent=3233"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/categories?post=3233"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/tags?post=3233"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}