{"id":517,"date":"2017-03-01T13:35:14","date_gmt":"2017-03-01T13:35:14","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=517"},"modified":"2018-01-31T08:56:22","modified_gmt":"2018-01-31T14:56:22","slug":"how-to-manually-migrate-wordpress-to-a-new-server","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-manually-migrate-wordpress-to-a-new-server\/","title":{"rendered":"How to manually migrate WordPress to a new server"},"content":{"rendered":"<p>Migrating WordPress to a new server is a quick and easy task, but it requires some special care. In this tutorial we will see <strong>how to migrate WordPress to a new server<\/strong>, using either the same domain name or using a new domain name on the new server.<\/p>\n<p><!--more--><\/p>\n<p>For this tutorial to work, you need to have SSH access to both virtual servers.<\/p>\n<h2>1. Old Server<\/h2>\n<p>Log in to your old server and make a backup of the WordPress database using the mysqldump command:<\/p>\n<pre class=\"brush: bash; gutter: false\">mysqldump -u YourWPUserName -pYourWPPassword YourWPDatabaseName &gt; dumpfile.sql<\/pre>\n<p>If you are moving your WordPress website to a new domain name your need to search and replace all references of the old domain name with your new domain name:<\/p>\n<pre class=\"brush: bash; gutter: false\">sed -i &#039;s\/oldDomain.com\/newDomain.com\/g&#039; dumpfile.sql<\/pre>\n<p>Create a new backup archive of the WordPress installation to a directory on your server:<\/p>\n<pre class=\"brush: bash; gutter: false\">tar -cvzf \/opt\/WPSiteName.tar.gz \/path\/to\/wordpress<\/pre>\n<p>Transfer the tar file to your new server. It is easiest to do this using rsync, for example:<\/p>\n<pre class=\"brush: bash; gutter: false\">rsync -av -e ssh \/opt\/WPSiteName.tar.gz username@newDomain.com:\/opt\/<\/pre>\n<p>If you are using the same domain name on your new virtual server you should edit the coresponding DNS zone file and point the A record of your domain name to your new server IP address.<\/p>\n<h2>2. New Server<\/h2>\n<p>Create a new Apache virtual host:<\/p>\n<pre>&lt;VirtualHost *:80&gt;\r\nServerName your-domain.com\r\nServerAlias www.your-domain.com\r\nDocumentRoot \/home\/yourDomain\/public_html\r\nDirectoryIndex index.php\r\n&lt;Directory \/home\/yourDomain\/public_html\/&gt;\r\nOptions FollowSymLinks\r\nAllowOverride All\r\n&lt;\/Directory&gt;\r\nErrorLog ${APACHE_LOG_DIR}\/error.log\r\nCustomLog ${APACHE_LOG_DIR}\/access.log combined\r\n&lt;\/VirtualHost&gt;<\/pre>\n<p>Or, create a new server block if you are using nginx, for example:<\/p>\n<pre>server {\r\nserver_name your-domain.com;\r\n\r\naccess_log \/var\/log\/nginx\/your-domain-access.log;\r\nerror_log \/var\/log\/nginx\/your-domain-error.log;\r\nroot \/home\/yourDomain\/public_html\/;\r\n\r\nlocation \/ {\r\nindex index.php;\r\ntry_files $uri $uri\/ \/index.php$is_args$args;\r\n}\r\n\r\nlocation ~ \\.php$ {\r\ninclude \/etc\/nginx\/fastcgi_params;\r\nfastcgi_pass 127.0.0.1:9000;\r\nfastcgi_index index.php;\r\nfastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\r\n}\r\n}<\/pre>\n<p>Do not forget to restart the web server for the changes to take effect.<\/p>\n<p>Create a new MySQL database.<\/p>\n<pre class=\"brush: bash; gutter: false\">mysql -u root -p\r\n CREATE DATABASE IF NOT EXISTS `YourWPDatabaseName` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`;\r\n GRANT ALL PRIVILEGES ON YourWPDatabaseName.* TO YourWPUserName@localhost IDENTIFIED BY &#039;pYourWPPassword&#039;;\r\n FLUSH PRIVILEGES;<\/pre>\n<p>Unpack your WordPress installation to a directory on the new server.<\/p>\n<pre class=\"brush: bash; gutter: false\">cd \/opt &amp;&amp; tar -xzf WPSiteName.tar.gz<\/pre>\n<p>Copy your WordPress installation to your server&#8217;s root directory:<\/p>\n<pre class=\"brush: bash; gutter: false\">rsync -av \/opt\/oldWPInstall\/ \/home\/yourDomain\/public_html\/<\/pre>\n<p>Import the MySQL database from the dump file using the following command:<\/p>\n<pre class=\"brush: bash; gutter: false\">mysql -u YourWPUserName -pYourWPPassword YourWPDatabaseName &lt; \/home\/yourDomain\/public_html\/dumpfile.sql<\/pre>\n<p>Change file permissions:<\/p>\n<pre class=\"brush: bash; gutter: false\">chown -R www-data: \/home\/yourDomain\/public_html\/\u00a0 # Debian based distros\r\n chown -R apache: \/home\/yourDomain\/public_html\/\u00a0 # RedHat based distros\r\n chown -R yourUsername: \/home\/yourDomain\/public_html\/\u00a0 # cPanel or Directadmin Virtual Server<\/pre>\n<p>That&#8217;s it, the WordPress migration is complete. Once the DNS changes propagate throughout the Internet, open your browser and navigate to your WordPress website.<\/p>\n<p>This tutorial should work for any Linux distribution.<\/p>\n<p>Of course, you don\u2019t have to do any of this if you use one of our <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\">Linux Cloud VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to <strong>migrate WordPress to a new server<\/strong> for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span>.<\/strong> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Migrating WordPress to a new server is a quick and easy task, but it requires some special care. In this tutorial we will see how to migrate WordPress to a new server, using either the same domain name or using a new domain name on the new server.<\/p>\n","protected":false},"author":2,"featured_media":518,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[132,100,37],"class_list":["post-517","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-linuxcloudvps","tag-migration","tag-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to manually migrate WordPress to a new server | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"Migrating WordPress to a new server is a quick and easy task, but it requires some special care. In this tutorial we will see how to migrate WordPress to\" \/>\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.linuxcloudvps.com\/blog\/how-to-manually-migrate-wordpress-to-a-new-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to manually migrate WordPress to a new server | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"Migrating WordPress to a new server is a quick and easy task, but it requires some special care. In this tutorial we will see how to migrate WordPress to\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-manually-migrate-wordpress-to-a-new-server\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2017-03-01T13:35:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-01-31T14:56:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/03\/migrate-wordpress-to-a-new-server.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-manually-migrate-wordpress-to-a-new-server\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-manually-migrate-wordpress-to-a-new-server\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to manually migrate WordPress to a new server\",\"datePublished\":\"2017-03-01T13:35:14+00:00\",\"dateModified\":\"2018-01-31T14:56:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-manually-migrate-wordpress-to-a-new-server\\\/\"},\"wordCount\":382,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-manually-migrate-wordpress-to-a-new-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/03\\\/migrate-wordpress-to-a-new-server.jpg\",\"keywords\":[\"linuxcloudvps\",\"migration\",\"wordpress\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-manually-migrate-wordpress-to-a-new-server\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-manually-migrate-wordpress-to-a-new-server\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-manually-migrate-wordpress-to-a-new-server\\\/\",\"name\":\"How to manually migrate WordPress to a new server | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-manually-migrate-wordpress-to-a-new-server\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-manually-migrate-wordpress-to-a-new-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/03\\\/migrate-wordpress-to-a-new-server.jpg\",\"datePublished\":\"2017-03-01T13:35:14+00:00\",\"dateModified\":\"2018-01-31T14:56:22+00:00\",\"description\":\"Migrating WordPress to a new server is a quick and easy task, but it requires some special care. In this tutorial we will see how to migrate WordPress to\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-manually-migrate-wordpress-to-a-new-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-manually-migrate-wordpress-to-a-new-server\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-manually-migrate-wordpress-to-a-new-server\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/03\\\/migrate-wordpress-to-a-new-server.jpg\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/03\\\/migrate-wordpress-to-a-new-server.jpg\",\"width\":1200,\"height\":600,\"caption\":\"migrate wordpress\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-manually-migrate-wordpress-to-a-new-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to manually migrate WordPress to a new server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/www.facebook.com\\\/LinuxCloudVPS\",\"https:\\\/\\\/x.com\\\/LinuxCloudVPS\",\"http:\\\/\\\/www.linkedin.com\\\/company\\\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/www.linuxcloudvps.com\\\/\"],\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to manually migrate WordPress to a new server | LinuxCloudVPS Blog","description":"Migrating WordPress to a new server is a quick and easy task, but it requires some special care. In this tutorial we will see how to migrate WordPress to","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.linuxcloudvps.com\/blog\/how-to-manually-migrate-wordpress-to-a-new-server\/","og_locale":"en_US","og_type":"article","og_title":"How to manually migrate WordPress to a new server | LinuxCloudVPS Blog","og_description":"Migrating WordPress to a new server is a quick and easy task, but it requires some special care. In this tutorial we will see how to migrate WordPress to","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-manually-migrate-wordpress-to-a-new-server\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2017-03-01T13:35:14+00:00","article_modified_time":"2018-01-31T14:56:22+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/03\/migrate-wordpress-to-a-new-server.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-manually-migrate-wordpress-to-a-new-server\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-manually-migrate-wordpress-to-a-new-server\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to manually migrate WordPress to a new server","datePublished":"2017-03-01T13:35:14+00:00","dateModified":"2018-01-31T14:56:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-manually-migrate-wordpress-to-a-new-server\/"},"wordCount":382,"commentCount":2,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-manually-migrate-wordpress-to-a-new-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/03\/migrate-wordpress-to-a-new-server.jpg","keywords":["linuxcloudvps","migration","wordpress"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-manually-migrate-wordpress-to-a-new-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-manually-migrate-wordpress-to-a-new-server\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-manually-migrate-wordpress-to-a-new-server\/","name":"How to manually migrate WordPress to a new server | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-manually-migrate-wordpress-to-a-new-server\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-manually-migrate-wordpress-to-a-new-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/03\/migrate-wordpress-to-a-new-server.jpg","datePublished":"2017-03-01T13:35:14+00:00","dateModified":"2018-01-31T14:56:22+00:00","description":"Migrating WordPress to a new server is a quick and easy task, but it requires some special care. In this tutorial we will see how to migrate WordPress to","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-manually-migrate-wordpress-to-a-new-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-manually-migrate-wordpress-to-a-new-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-manually-migrate-wordpress-to-a-new-server\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/03\/migrate-wordpress-to-a-new-server.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/03\/migrate-wordpress-to-a-new-server.jpg","width":1200,"height":600,"caption":"migrate wordpress"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-manually-migrate-wordpress-to-a-new-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to manually migrate WordPress to a new server"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/517","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=517"}],"version-history":[{"count":3,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/517\/revisions"}],"predecessor-version":[{"id":521,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/517\/revisions\/521"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/518"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=517"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=517"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=517"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}