{"id":608,"date":"2018-07-11T03:49:12","date_gmt":"2018-07-11T08:49:12","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=608"},"modified":"2020-08-02T11:39:01","modified_gmt":"2020-08-02T16:39:01","slug":"how-to-install-phabricator-on-debian-9","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phabricator-on-debian-9\/","title":{"rendered":"How to Install Phabricator on Debian 9"},"content":{"rendered":"<div id=\"linux-1802280256\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>Phabricator is free and open source set of tools that ease the process of building software and allows developers and companies to build better software. It includes tools for differential code review, repository hosting and browsing, monitoring tool, bug tracker, wiki and much more. Phabricator originally was developed as an internal tool at Facebook, but now it is under active development by hundreds of unique developers. In this tutorial we will install Phabricator on a Debian 9 VPS with Apache, PHP and MySQL server.<\/p>\n<p><!--more--><\/p>\n<p>Phabricator has some very useful features, such as:<br \/>\n&#8211; Pre-Commit Code Review<br \/>\n&#8211; Git, Mercurial, and SVN Support<br \/>\n&#8211; Customizable Task Management<br \/>\n&#8211; Workboards and Sprints<br \/>\n&#8211; Chat Channels<br \/>\n&#8211; Business Rules<br \/>\n&#8211; Command Line Tools<br \/>\n&#8211; Conduit API<br \/>\nand much more&#8230;<\/p>\n<h3><strong>Prerequisites<\/strong><\/h3>\n<p>Phabricator requires the following software to be installed in order to properly run:<br \/>\n&#8211; Debian 9 VPS with SSH root privileges<br \/>\n&#8211; Domain or subdomain. Phabricator cannot be installed in a subdirectory. We will use phabricator.yourdomain.com<br \/>\n&#8211; Web server &#8211; Apache, Nginx, LiteSpeed, &#8230;<br \/>\n&#8211; PHP version 5.2 or newer, with the mbstring, iconv, mysql (or mysqli), curl and pcntl PHP extensions<br \/>\n&#8211; MySQL server version 5.5 or newer<\/p>\n<p>In this tutorial we will install all necessary prerequisites. We will use Debian 9 VPS running on our SSD 2 VPS hosting plan.<\/p>\n<h3><strong>Step 1: Login via SSH and upgrade the system<\/strong><\/h3>\n<p>As usual, login to your Debian 9 VPS via SSH as user root<\/p>\n<pre>ssh root@IP_Address -p Port_Number<\/pre>\n<p>and make sure that all installed packages are updated to the latest available version<\/p>\n<pre>apt update &amp;&amp; apt upgrade<\/pre>\n<h3><strong>Step 2:\u00a0<\/strong><strong>Install Apache web server and PHP<\/strong><\/h3>\n<p>As mentioned in the Prerequisites section, we have to install a web server in order to run Phabricator. In this tutorial we will install Apache web server.<\/p>\n<pre>apt install apache2<\/pre>\n<p>Once installed, enable Apache to start upon server restart<\/p>\n<pre>systemctl enable apache2<\/pre>\n<p>Next, we will install PHP and all PHP extensions required by Phabricator<\/p>\n<pre>apt install php php-common php-mbstring php-mysql php-curl<\/pre>\n<h3><strong>Step 3: Install MySQL server<\/strong><\/h3>\n<p>Database server is also requires, so run the following command to install MySQL database server<\/p>\n<pre>apt install mysql-server<\/pre>\n<p>Once the database server is installed, run the mysql_secure_installation post-installation script to secure the server and set your MySQL root password.<\/p>\n<h3><strong>Step 4: Create Apache Virtual host<\/strong><\/h3>\n<p>In order to access Phabricator with a domain or subdomain, we have to create a new Apache virtual host. In this tutorial we will use phabricator.yourdomain.com to access Phabricator. Create a new file with the following content<\/p>\n<pre>nano \/etc\/apache2\/sites-available\/phabricator.yourdomain.com.conf\r\n\r\nServerName phabricator.yourdomain.com\r\nServerAdmin webmaster@yourdomain.com\r\n\r\nDocumentRoot \/var\/www\/html\/phabricator\/webroot\r\n\r\nRewriteEngine on\r\nRewriteRule ^\/rsrc\/(.*) - [L,QSA]\r\nRewriteRule ^\/favicon.ico - [L,QSA]\r\nRewriteRule ^(.*)$ \/index.php?__path__=$1 [B,L,QSA]\r\n\r\nErrorLog ${APACHE_LOG_DIR}\/pphabricator.yourdomain.com-error.log\r\nCustomLog ${APACHE_LOG_DIR}\/phabricator.yourdomain.com-access.log combined\r\n\r\n&lt;Directory \"\/var\/www\/html\/phabricator\/webroot\"&gt;\r\nRequire all granted\r\n\r\n<\/pre>\n<p>Save the file, and enable the virtual host configuration<\/p>\n<pre>a2ensite phabricator.yourdomain.com\r\nEnabling site phabricator.yourdomain.com.\r\nTo activate the new configuration, you need to run:\r\n  systemctl reload apache2\r\n<\/pre>\n<p>and restart the web server for the changes to take effect<\/p>\n<pre>systemctl restart apache2<\/pre>\n<h3><strong>Step 5: Download and configure Phabricator<\/strong><\/h3>\n<p>We will clone Phabricator and its dependencies from their official git repositories, so make sure that git is isntalled on your server:<\/p>\n<pre>apt install git<\/pre>\n<pre>Now, run the following command to clone the repositories:<\/pre>\n<pre>cd \/var\/www\/html\r\ngit clone https:\/\/github.com\/phacility\/libphutil.git\r\ngit clone https:\/\/github.com\/phacility\/arcanist.git\r\ngit clone https:\/\/github.com\/phacility\/phabricator.git<\/pre>\n<p>Next, change the current working directory to Phabricator&#8217;s directory<\/p>\n<pre>cd \/var\/www\/html\/phabricator<\/pre>\n<p>and run the following commands to configure MySQL configuration file for Phabricator<\/p>\n<pre>.\/bin\/config set mysql.host localhost\r\n.\/bin\/config set mysql.user root\r\n.\/bin\/config set mysql.pass MySQL_root_password<\/pre>\n<p>and load the Phabricator schemata by executing the following command<\/p>\n<pre>.\/bin\/storage upgrade\r\n\r\nAre you ready to continue? [y\/N] y\r\n\r\nApplying schema adjustments...\r\nDone.\r\nCompleted applying all schema adjustments.\r\n ANALYZE  Analyzing tables...\r\nDone.\r\n ANALYZED  Analyzed 510 table(s).<\/pre>\n<p>Note that, you have to run this script every time you update Phabricator in order to apply the new updates.<\/p>\n<p>Finally, open your favorite web browser and navigate to http:\/\/phabricator.yourdomain.com and follow the on-screen insctructions to complete the installation and create your initial administrator account. For more information on how to configure and use Phabricator, please check their official documentation.<\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-610\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/07\/Install-Phabricator-on-Debian-9.jpg\" alt=\"Install Phabricator on Debian 9 \" width=\"180\" height=\"103\" \/>Of course you don\u2019t have to Install Phabricator on a Debian 9 VPS, if you use one of our <a href=\"https:\/\/linuxhostsupport.com\">Linux Server Management<\/a> services, in which case you can simply ask our expert Linux admins to install Phabricator for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS.<\/strong><\/span> If you liked this post on how to install Phabricator on Ubuntu 16.04, please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p><div id=\"linux-469021425\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Phabricator is free and open source set of tools that ease the process of building software and allows developers and companies to build better software. It includes tools for differential code review, repository hosting and browsing, monitoring tool, bug tracker, wiki and much more. Phabricator originally was developed as an internal tool at Facebook, but [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":609,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[28,109],"class_list":["post-608","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-debian","tag-phabricator"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Phabricator on Debian 9 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Phabricator is free and open source set of tools that ease the process of building software and allows developers and companies to build better software.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phabricator-on-debian-9\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Phabricator on Debian 9 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Phabricator is free and open source set of tools that ease the process of building software and allows developers and companies to build better software.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phabricator-on-debian-9\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2018-07-11T08:49:12+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-08-02T16:39:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Phabricator-on-Debian-9.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\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=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phabricator-on-debian-9\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phabricator-on-debian-9\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install Phabricator on Debian 9\",\"datePublished\":\"2018-07-11T08:49:12+00:00\",\"dateModified\":\"2020-08-02T16:39:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phabricator-on-debian-9\\\/\"},\"wordCount\":623,\"commentCount\":1,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phabricator-on-debian-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/How-to-Install-Phabricator-on-Debian-9.jpg\",\"keywords\":[\"debian\",\"PHABRICATOR\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phabricator-on-debian-9\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phabricator-on-debian-9\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phabricator-on-debian-9\\\/\",\"name\":\"How to Install Phabricator on Debian 9 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phabricator-on-debian-9\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phabricator-on-debian-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/How-to-Install-Phabricator-on-Debian-9.jpg\",\"datePublished\":\"2018-07-11T08:49:12+00:00\",\"dateModified\":\"2020-08-02T16:39:01+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Phabricator is free and open source set of tools that ease the process of building software and allows developers and companies to build better software.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phabricator-on-debian-9\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phabricator-on-debian-9\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phabricator-on-debian-9\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/How-to-Install-Phabricator-on-Debian-9.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/How-to-Install-Phabricator-on-Debian-9.jpg\",\"width\":750,\"height\":410,\"caption\":\"How to Install Phabricator on Debian 9\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phabricator-on-debian-9\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Phabricator on Debian 9\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Phabricator on Debian 9 | LinuxHostSupport","description":"Phabricator is free and open source set of tools that ease the process of building software and allows developers and companies to build better software.","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:\/\/linuxhostsupport.com\/blog\/how-to-install-phabricator-on-debian-9\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Phabricator on Debian 9 | LinuxHostSupport","og_description":"Phabricator is free and open source set of tools that ease the process of building software and allows developers and companies to build better software.","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phabricator-on-debian-9\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2018-07-11T08:49:12+00:00","article_modified_time":"2020-08-02T16:39:01+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Phabricator-on-Debian-9.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phabricator-on-debian-9\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phabricator-on-debian-9\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install Phabricator on Debian 9","datePublished":"2018-07-11T08:49:12+00:00","dateModified":"2020-08-02T16:39:01+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phabricator-on-debian-9\/"},"wordCount":623,"commentCount":1,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phabricator-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Phabricator-on-Debian-9.jpg","keywords":["debian","PHABRICATOR"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-phabricator-on-debian-9\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phabricator-on-debian-9\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phabricator-on-debian-9\/","name":"How to Install Phabricator on Debian 9 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phabricator-on-debian-9\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phabricator-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Phabricator-on-Debian-9.jpg","datePublished":"2018-07-11T08:49:12+00:00","dateModified":"2020-08-02T16:39:01+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Phabricator is free and open source set of tools that ease the process of building software and allows developers and companies to build better software.","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phabricator-on-debian-9\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-phabricator-on-debian-9\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phabricator-on-debian-9\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Phabricator-on-Debian-9.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Phabricator-on-Debian-9.jpg","width":750,"height":410,"caption":"How to Install Phabricator on Debian 9"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phabricator-on-debian-9\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Phabricator on Debian 9"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/608","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=608"}],"version-history":[{"count":2,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/608\/revisions"}],"predecessor-version":[{"id":1220,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/608\/revisions\/1220"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/609"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=608"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=608"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=608"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}