{"id":30834,"date":"2022-03-01T14:29:48","date_gmt":"2022-03-01T14:29:48","guid":{"rendered":"https:\/\/dbtut.com\/?p=30834"},"modified":"2022-03-01T14:30:55","modified_gmt":"2022-03-01T14:30:55","slug":"postgresql-installation-on-linux-vm-in-microsoft-azure","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/","title":{"rendered":"PostgreSQL Installation on Linux VM in Microsoft Azure"},"content":{"rendered":"<p>In today&#8217;s article we will learn to PostgreSQL Installation on Linux VM in Microsoft Azure.<\/p>\n<p>1) Access our server with Putty.<\/p>\n<p>2) After gaining access, we update all installed packages with &#8220;sudo apt-get update&#8221;.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"http:\/\/www.caglarozenc.com\/wp-content\/uploads\/Install-PostgreSQL-on-Azure-Linux-VM-_-Image1.png\" \/><\/p>\n<p>After the process, we clean the screen with the &#8220;Clear&#8221; code.<\/p>\n<p>3) PostgreSQL packages are available by default in Ubuntu repositories. So first of all, let&#8217;s update the apt repository from postgresql.org.<\/p>\n<p>For this process, we need to select the version information from the link below and we need to run the code blocks it gives us.<\/p>\n<p>Since we are using Ubuntu Server 17.04 version, it will be enough to run the following codes.<\/p>\n<pre class=\"lang:default decode:true \"> https:\/\/www.postgresql.org\/download\/linux\/ubuntu\/<\/pre>\n<pre class=\"lang:default decode:true \">[code]\r\nwget \u2013quiet -O \u2013 https:\/\/www.postgresql.org\/media\/keys\/ACCC4CF8.asc | \\\r\nsudo apt-key add \u2013\r\nsudo apt-get update\r\n[\/code]<\/pre>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"http:\/\/www.caglarozenc.com\/wp-content\/uploads\/Install-PostgreSQL-on-Azure-Linux-VM-_-Image2.png\" \/><\/p>\n<p>4) Before the installation process, let&#8217;s update the existing packages again.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"http:\/\/www.caglarozenc.com\/wp-content\/uploads\/Install-PostgreSQL-on-Azure-Linux-VM-_-Image3.png\" \/><\/p>\n<p>5) Now that we have updated the packages again, we can start the necessary installation process.<\/p>\n<pre class=\"lang:default decode:true \">[code]\r\nsudo apt-get install postgresql postgresql-contrib\r\n[\/code]<\/pre>\n<p>When we run the above piece of code, we will see a screen like the one below. On this screen, he will be asking us for approval for the contract and will be giving information about the needs for installation.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"http:\/\/www.caglarozenc.com\/wp-content\/uploads\/Install-PostgreSQL-on-Azure-Linux-VM-_-Image4.png\" \/><\/p>\n<p>After the confirmation process is given, we will see that the installation process in the data continues and is completed on a somewhat long screen.<\/p>\n<p>After we see that the installation is complete, we can write &#8220;service postgresql status&#8221; and get information about the process status.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"http:\/\/www.caglarozenc.com\/wp-content\/uploads\/Install-PostgreSQL-on-Azure-Linux-VM-_-Image5.png\" \/><\/p>\n<p>As you can see in the picture above, our PostgreSQL server is active and our service is running.<\/p>\n<p>After installation of the PostgreSQL server, it creates a &#8220;postgres&#8221; user with the &#8220;postgres&#8221; role by default. It also creates a system account named &#8220;postgres&#8221;. Let&#8217;s take a walk around the PostgreSQL server with this user.<\/p>\n<p>As a first step, let&#8217;s learn the version information of the PostgreSQL Server that we have installed.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"http:\/\/www.caglarozenc.com\/wp-content\/uploads\/Install-PostgreSQL-on-Azure-Linux-VM-_-Image6.png\" \/><\/p>\n<p id=\"mtLqvpJ\">PostgreSQL databases installed by default<\/p>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"http:\/\/www.caglarozenc.com\/wp-content\/uploads\/Install-PostgreSQL-on-Azure-Linux-VM-_-Image7.png\" \/><\/p>\n<p id=\"GxQiLUX\">To view the default user roles;<\/p>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"http:\/\/www.caglarozenc.com\/wp-content\/uploads\/Install-PostgreSQL-on-Azure-Linux-VM-_-Image8.png\" \/><\/p>\n<p id=\"szOwGcl\">Now let&#8217;s change the password of the postgres user, which is the Default user. With the code block below, I altered the postgres user and changed his password to caglar_ozenc.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"http:\/\/www.caglarozenc.com\/wp-content\/uploads\/Install-PostgreSQL-on-Azure-Linux-VM-_-Image9.png\" \/><\/p>\n<p>Let&#8217;s create a new user other than the default user and view the role information.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"http:\/\/www.caglarozenc.com\/wp-content\/uploads\/Install-PostgreSQL-on-Azure-Linux-VM-_-Image10.png\" \/><\/p>\n<p>In the picture above, we created a user with the password test123 named pu_caglar with the code block. We just need to do \\du to display its role information.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"http:\/\/www.caglarozenc.com\/wp-content\/uploads\/Install-PostgreSQL-on-Azure-Linux-VM-_-Image11.png\" \/><\/p>\n<p>We created the user named \u201cpu_caglar\u201d, but this user does not have a role definition. Let&#8217;s define a role for this user and this user will be authorized. For this operation &#8220;ALTER USER pu_caglar WITH SUPERUSER;&#8221; You just have to write.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"http:\/\/www.caglarozenc.com\/wp-content\/uploads\/Install-PostgreSQL-on-Azure-Linux-VM-_-Image12.png\" \/><\/p>\n<p>Now, let&#8217;s DROP the user named pu_caglar that we created as an example from our system.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"http:\/\/www.caglarozenc.com\/wp-content\/uploads\/Install-PostgreSQL-on-Azure-Linux-VM-_-Image13.png\" \/><\/p>\n<p>To access the documentation about PSQL, simply type &#8220;man psql&#8221;. You can access many definitions and usage patterns in this document. To exit, simply press the letter &#8220;q&#8221;.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"http:\/\/www.caglarozenc.com\/wp-content\/uploads\/Install-PostgreSQL-on-Azure-Linux-VM-_-Image15.png\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_30834\" class=\"pvc_stats all  \" data-element-id=\"30834\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In today&#8217;s article we will learn to PostgreSQL Installation on Linux VM in Microsoft Azure. 1) Access our server with Putty. 2) After gaining access, we update all installed packages with &#8220;sudo apt-get update&#8221;. After the process, we clean the screen with the &#8220;Clear&#8221; code. 3) PostgreSQL packages are available by default in Ubuntu repositories. &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_30834\" class=\"pvc_stats all  \" data-element-id=\"30834\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":1414,"featured_media":30868,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[10403,5],"tags":[],"class_list":["post-30834","post","type-post","status-publish","format-standard","has-post-thumbnail","","category-azure","category-postgres"],"aioseo_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>PostgreSQL Installation on Linux VM in Microsoft Azure - Database Tutorials<\/title>\n<meta name=\"description\" content=\"In today&#039;s article we will learn to PostgreSQL Installation on Linux VM in Microsoft Azure. 1) Access our server with Putty.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PostgreSQL Installation on Linux VM in Microsoft Azure - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"In today&#039;s article we will learn to PostgreSQL Installation on Linux VM in Microsoft Azure. 1) Access our server with Putty.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2022-03-01T14:29:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-03-01T14:30:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/03\/Ekran-Alintisi.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"537\" \/>\n\t<meta property=\"og:image:height\" content=\"297\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"\u00c7a\u011flar \u00d6zen\u00e7\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u00c7a\u011flar \u00d6zen\u00e7\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/\"},\"author\":{\"name\":\"\u00c7a\u011flar \u00d6zen\u00e7\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/92baa6fd666fb707d903177fed07d6ab\"},\"headline\":\"PostgreSQL Installation on Linux VM in Microsoft Azure\",\"datePublished\":\"2022-03-01T14:29:48+00:00\",\"dateModified\":\"2022-03-01T14:30:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/\"},\"wordCount\":473,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/03\/Ekran-Alintisi.jpg\",\"articleSection\":[\"Azure\",\"PostgreSQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/\",\"name\":\"PostgreSQL Installation on Linux VM in Microsoft Azure - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/03\/Ekran-Alintisi.jpg\",\"datePublished\":\"2022-03-01T14:29:48+00:00\",\"dateModified\":\"2022-03-01T14:30:55+00:00\",\"description\":\"In today's article we will learn to PostgreSQL Installation on Linux VM in Microsoft Azure. 1) Access our server with Putty.\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/03\/Ekran-Alintisi.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/03\/Ekran-Alintisi.jpg\",\"width\":537,\"height\":297},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PostgreSQL Installation on Linux VM in Microsoft Azure\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dbtut.com\/#website\",\"url\":\"https:\/\/dbtut.com\/\",\"name\":\"Database Tutorials\",\"description\":\"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux\",\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dbtut.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/dbtut.com\/#organization\",\"name\":\"dbtut\",\"url\":\"https:\/\/dbtut.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"width\":223,\"height\":36,\"caption\":\"dbtut\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/92baa6fd666fb707d903177fed07d6ab\",\"name\":\"\u00c7a\u011flar \u00d6zen\u00e7\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/997658bc236de4f5a0f3f46e64535566e31ba96824c77c01165e863fc38fd1ba?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/997658bc236de4f5a0f3f46e64535566e31ba96824c77c01165e863fc38fd1ba?s=96&d=mm&r=g\",\"caption\":\"\u00c7a\u011flar \u00d6zen\u00e7\"},\"url\":\"https:\/\/dbtut.com\/index.php\/author\/caglarozenc\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PostgreSQL Installation on Linux VM in Microsoft Azure - Database Tutorials","description":"In today's article we will learn to PostgreSQL Installation on Linux VM in Microsoft Azure. 1) Access our server with Putty.","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:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/","og_locale":"en_US","og_type":"article","og_title":"PostgreSQL Installation on Linux VM in Microsoft Azure - Database Tutorials","og_description":"In today's article we will learn to PostgreSQL Installation on Linux VM in Microsoft Azure. 1) Access our server with Putty.","og_url":"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/","og_site_name":"Database Tutorials","article_published_time":"2022-03-01T14:29:48+00:00","article_modified_time":"2022-03-01T14:30:55+00:00","og_image":[{"width":537,"height":297,"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/03\/Ekran-Alintisi.jpg","type":"image\/jpeg"}],"author":"\u00c7a\u011flar \u00d6zen\u00e7","twitter_card":"summary_large_image","twitter_misc":{"Written by":"\u00c7a\u011flar \u00d6zen\u00e7","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/"},"author":{"name":"\u00c7a\u011flar \u00d6zen\u00e7","@id":"https:\/\/dbtut.com\/#\/schema\/person\/92baa6fd666fb707d903177fed07d6ab"},"headline":"PostgreSQL Installation on Linux VM in Microsoft Azure","datePublished":"2022-03-01T14:29:48+00:00","dateModified":"2022-03-01T14:30:55+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/"},"wordCount":473,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/03\/Ekran-Alintisi.jpg","articleSection":["Azure","PostgreSQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/","url":"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/","name":"PostgreSQL Installation on Linux VM in Microsoft Azure - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/03\/Ekran-Alintisi.jpg","datePublished":"2022-03-01T14:29:48+00:00","dateModified":"2022-03-01T14:30:55+00:00","description":"In today's article we will learn to PostgreSQL Installation on Linux VM in Microsoft Azure. 1) Access our server with Putty.","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/03\/Ekran-Alintisi.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/03\/Ekran-Alintisi.jpg","width":537,"height":297},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2022\/03\/01\/postgresql-installation-on-linux-vm-in-microsoft-azure\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"PostgreSQL Installation on Linux VM in Microsoft Azure"}]},{"@type":"WebSite","@id":"https:\/\/dbtut.com\/#website","url":"https:\/\/dbtut.com\/","name":"Database Tutorials","description":"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux","publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dbtut.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dbtut.com\/#organization","name":"dbtut","url":"https:\/\/dbtut.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","width":223,"height":36,"caption":"dbtut"},"image":{"@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/dbtut.com\/#\/schema\/person\/92baa6fd666fb707d903177fed07d6ab","name":"\u00c7a\u011flar \u00d6zen\u00e7","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/997658bc236de4f5a0f3f46e64535566e31ba96824c77c01165e863fc38fd1ba?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/997658bc236de4f5a0f3f46e64535566e31ba96824c77c01165e863fc38fd1ba?s=96&d=mm&r=g","caption":"\u00c7a\u011flar \u00d6zen\u00e7"},"url":"https:\/\/dbtut.com\/index.php\/author\/caglarozenc\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/30834","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/users\/1414"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=30834"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/30834\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media\/30868"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=30834"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=30834"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=30834"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}