{"id":12773,"date":"2019-03-28T19:31:02","date_gmt":"2019-03-28T19:31:02","guid":{"rendered":"http:\/\/www.appservgrid.com\/paw92\/?p=12773"},"modified":"2019-03-28T19:31:02","modified_gmt":"2019-03-28T19:31:02","slug":"phabricator-an-open-source-powerful-project-management-tool-for-linux","status":"publish","type":"post","link":"https:\/\/www.appservgrid.com\/paw92\/index.php\/2019\/03\/28\/phabricator-an-open-source-powerful-project-management-tool-for-linux\/","title":{"rendered":"Phabricator \u2013 An Open Source Powerful \u201cProject Management\u201d Tool for Linux"},"content":{"rendered":"<p><b>Phabricator<\/b>\u00a0is an open source application that helps software companies to create\/build better software, which is built using PHP language and available under Apache 2.0 open source license for Linux, MacOSX and can be run in any platform, it can even run in windows but it is totally based on Linux support. Phabricator has been used by Facebook before. The first version of phabricator was built by facebook with lots of features such as reviewing and auditing codes, tracking bugs etc.<\/p>\n<div id=\"attachment_8885\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Install-Phabricator-in-Linux.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-8885\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Install-Phabricator-in-Linux.png\" alt=\"Install Phabricator in Linux\" width=\"509\" height=\"344\" aria-describedby=\"caption-attachment-8885\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-8885\" class=\"wp-caption-text\">Install Phabricator in CentOS and Ubuntu<\/p>\n<\/div>\n<p>We can use phabricator as a repository same as\u00a0<b>git<\/b>\u00a0and\u00a0<b>svn<\/b>. There are several privacy settings available to secure the code among particular development teams. We can review the code of coworkers before finalizing the code.<\/p>\n<p>I hope everyone is aware about git, if not please have a quick look at the GIT article below, that explain how to use it.<\/p>\n<ol>\n<li><a href=\"https:\/\/www.tecmint.com\/install-git-to-create-and-share-your-own-projects-on-github-repository\/\" target=\"_blank\" rel=\"noopener\">Install GIT to Create Your Own Projects on GITHub Repository<\/a><\/li>\n<\/ol>\n<p>Same like git, phabricator also has lots of features and used by most of the popular companies like Facebook, Dropbox, Groupon to develop there web applications.<\/p>\n<h4>Requirements<\/h4>\n<p>Phabricator can run in a normal computer, with following required packages. We don\u2019t need specification with high resources.<\/p>\n<ol>\n<li>Apache2.2.7 or higher<\/li>\n<li>MySQL and PHP 5.2 or higher<\/li>\n<li>Git and some of the php extensions.<\/li>\n<\/ol>\n<p><strong>NOTE<\/strong>: Phabricator can only be installed on an entire domain (tecmint.com) or on an sub domain (phabricator.tecmint.com). You cannot install it to a specific path on any existing domain, say \u201ctecmint.com\/phabricator\u201d.<\/p>\n<h3>Step 1: Installing Required Components<\/h3>\n<p>There are scripts available for setting-up in Ubuntu and Redhat based Linux, choose this option if you are not familiar with Linux.<\/p>\n<ol>\n<li><b>RedHat Derivatives<\/b>\u00a0\u2013\u00a0<a href=\"http:\/\/www.phabricator.com\/rsrc\/install\/install_rhel-derivs.sh\" target=\"_blank\" rel=\"nofollow noopener\">http:\/\/www.phabricator.com\/rsrc\/install\/install_rhel-derivs.sh<\/a><\/li>\n<li><b>Ubuntu Derivatives<\/b>\u00a0\u2013\u00a0<a href=\"http:\/\/www.phabricator.com\/rsrc\/install\/install_ubuntu.sh\" target=\"_blank\" rel=\"nofollow noopener\">http:\/\/www.phabricator.com\/rsrc\/install\/install_ubuntu.sh<\/a><\/li>\n<\/ol>\n<p>If you are an Advance user, you just need to setup a LAMP server to run a phabricator. Okay, now let us start installing Phabricator on RHEL\/CentOS and Ubuntu\/Debian.<\/p>\n<h5>On RHEL\/CentOS<\/h5>\n<p>Install LAMP server and include some php extensions, while installing.<\/p>\n<pre># yum install mysql-server httpd git php php-mysql php-gd php-curl php-apc php-cli -y\r\n<\/pre>\n<h5>On Ubuntu\/Debian<\/h5>\n<pre>$ sudo apt-get install mysql-server apache2 git-core git php5 php5-mysql php5-gd php5-curl php-apc php5-cli -y\r\n<\/pre>\n<p><strong>NOTE<\/strong>: On Ubuntu based distributions, during installation it will ask you to enter root password for MysQL.<\/p>\n<h3>Step 2: Downloading Phabricator Files<\/h3>\n<p>Once, you have all the above stuff installed, now pick install directory. Here I\u2019m going to create a directory called \u2018<b>myprojectapp<\/b>\u2018 under\u00a0<b>DocumentRoot<\/b>\u00a0of Apache directory.<\/p>\n<pre># mkdir \/var\/www\/html\/myprojectapp\t\t[On RedHat]\r\n\r\n$ sudo mkdir \/var\/www\/myprojectapp\t\t[On Ubuntu]\r\n<\/pre>\n<p>If you are installing, as a normal user you need to add current user (in my case \u2018<b>tecmint<\/b>\u2018) in\u00a0<b>Apache<\/b>\u00a0group to get the write permission. This step can be ignored if you are switched to root user.<\/p>\n<pre># chown -R tecmint:apache \/var\/www\/html\t\t[On RedHat]\r\n$ sudo chown -R tecmint:www-data \/var\/www\t[On Ubuntu]\t\r\n<\/pre>\n<p>Then navigate to the newly created directory i.e.\u00a0<b>myprojectapp<\/b>.<\/p>\n<pre># cd \/var\/www\/html\/myprojectapp\t\t\t[On RedHat]\r\n\r\n$ cd \/var\/www\/myprojectapp\t\t\t[On Ubuntu]\r\n<\/pre>\n<p>Now, start pulling the phabricator and its dependencies from there official git repository.<\/p>\n<pre>git 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\r\n<\/pre>\n<div id=\"attachment_8869\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Download-Phabricator.jpeg\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-8869\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Download-Phabricator-620x417.jpeg\" sizes=\"auto, (max-width: 620px) 100vw, 620px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Download-Phabricator-620x417.jpeg 620w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Download-Phabricator-1024x689.jpeg 1024w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Download-Phabricator.jpeg 1085w\" alt=\"Download Phabricator\" width=\"620\" height=\"417\" aria-describedby=\"caption-attachment-8869\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-8869\" class=\"wp-caption-text\">Download Phabricator<\/p>\n<\/div>\n<h3>Step 3: Configure Apache for Phabricator<\/h3>\n<p>On Ubuntu based distributions, you need to enable mod_php, mod_rewrite and mod_ssl modules, during installation most of these modules enabled by default, but we need to confirm.<\/p>\n<pre># sudo a2enmod rewrite\r\n# sudo a2enmod ssl\r\n<\/pre>\n<div id=\"attachment_8870\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Enable-PHP-Modules-in-Ubuntu.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-8870\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Enable-PHP-Modules-in-Ubuntu-620x433.png\" sizes=\"auto, (max-width: 620px) 100vw, 620px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Enable-PHP-Modules-in-Ubuntu-620x433.png 620w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Enable-PHP-Modules-in-Ubuntu.png 916w\" alt=\"Enable PHP Modules in Ubuntu\" width=\"620\" height=\"433\" aria-describedby=\"caption-attachment-8870\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-8870\" class=\"wp-caption-text\">Enable PHP Modules<\/p>\n<\/div>\n<p>Once, these modules enabled, next restart the web server to reflect changes.<\/p>\n<pre>$ sudo \/etc\/init.d\/apache2 restart\t\t[On Ubuntu]\r\n<\/pre>\n<p>Next, create a separate Virtualhost in your Apache configuration file.<\/p>\n<pre># vi \/etc\/httpd\/conf\/httpd.conf\t\t\t[On RedHat]\r\n\r\n$ sudo nano \/etc\/apache2\/sites-available\/phabricator.conf\t[On Ubuntu]<\/pre>\n<p>Append the following Virtualhost entry at the bottom of the file and change the\u00a0<strong>DocumentRoot<\/strong>\u00a0path to match exact location of phabricator files.<\/p>\n<pre>&lt;VirtualHost *:80&gt;\r\n        ServerAdmin root@phab.tecmintlocal.com\r\n        ServerName phab.tecmintlocal.com\r\n        DocumentRoot <strong>\/var\/www\/html\/myprojectapp\/phabricator\/webroot<\/strong>\r\n        RewriteEngine on\r\n        RewriteRule ^\/rsrc\/(.*)     -                       [L,QSA]\r\n        RewriteRule ^\/favicon.ico   -                       [L,QSA]\r\n        RewriteRule ^(.*)$          \/index.php?__path__=$1  [B,L,QSA]\r\n&lt;Directory \"<strong>\/var\/www\/html\/myprojectapp\/phabricator\/webroot<\/strong>\"&gt;\r\n        Order allow,deny\r\n        Allow from all\r\n&lt;\/Directory&gt;\r\n&lt;\/VirtualHost&gt;\r\n<\/pre>\n<p>On Ubuntu, you need to enable the newly created virtualhost entry using following command. For RedHat based systems, no need to enable anything.<\/p>\n<pre>$ sudo a2ensite phabricator.conf\r\n<\/pre>\n<p>Finally, restart the Apache service to reflect new changes.<\/p>\n<pre># service httpd restart\t\t\t\t[On RedHat]\r\n\r\n$ sudo \/etc\/init.d\/apache2 restart\t\t[On Ubuntu]\r\n<\/pre>\n<h3>Step 4: Configure MySQL for Phabricator<\/h3>\n<p>Now, it\u2019s time to configure MySQL, but before heading up for setup, make sure your MySQL is running and you able to connect to it. So, that you can load the mysql settings into it.<\/p>\n<pre># cd \/var\/www\/html\/myprojectapp\/phabricator\/\t\t[On RedHat]\r\n\r\n# cd \/var\/www\/myprojectapp\/phabricator\/\t\t\t[On Ubuntu]\r\n\r\n# .\/bin\/config set mysql.host localhost\r\n# .\/bin\/config set mysql.user root\r\n# .\/bin\/config set mysql.pass mjackson<\/pre>\n<p>Next, run the storage upgrade script to load database schema into it. While processing, it will prompt you to press \u2018<strong>y<\/strong>\u2018 to continue, this will take little time to complete the setup for setting-up data schema.<\/p>\n<pre># .\/bin\/storage upgrade --user root --password mjackson\r\n<\/pre>\n<div id=\"attachment_8871\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Configure-MySQL-for-Phabricator.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-8871\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Configure-MySQL-for-Phabricator-620x436.png\" sizes=\"auto, (max-width: 620px) 100vw, 620px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Configure-MySQL-for-Phabricator-620x436.png 620w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Configure-MySQL-for-Phabricator.png 917w\" alt=\"Configure MySQL for Phabricator\" width=\"620\" height=\"436\" aria-describedby=\"caption-attachment-8871\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-8871\" class=\"wp-caption-text\">Configure MySQL<\/p>\n<\/div>\n<p>Once, scheme added to mysql, restart the service to take new settings.<\/p>\n<pre># service mysql restart\r\n\r\n$ sudo service mysql restart\r\n<\/pre>\n<h3>Step 5: Configuring Phabricator Web UI<\/h3>\n<p>Now you can access the web UI at the following locations, but we need to create an admin login account.<\/p>\n<pre>http:\/\/phab.tecmintlocal.com\/\r\n\r\nOR\r\n\r\nhttp:\/\/ipaddress\r\n<\/pre>\n<div id=\"attachment_8872\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Phabricator-Admin-Account.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-8872\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Phabricator-Admin-Account-442x450.png\" sizes=\"auto, (max-width: 442px) 100vw, 442px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Phabricator-Admin-Account-442x450.png 442w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Phabricator-Admin-Account.png 689w\" alt=\"Phabricator Admin Account\" width=\"442\" height=\"450\" aria-describedby=\"caption-attachment-8872\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-8872\" class=\"wp-caption-text\">Phabricator Admin Account<\/p>\n<\/div>\n<p>If the above admin setup page is not displayed we need to create admin login manually from the terminal. This step only required, if incase we get the error cause admin account was not defined.<\/p>\n<pre># .\/bin\/accountadmin\r\n<\/pre>\n<p>Once admin account created, you can login into admin section using same credentials. After login you can see some setup issue in the top left corner, that needs to be resolved before start using it.<\/p>\n<p>Here are some of the steps to get fix, each and every issues can be resolved very easily as they have pointed how to resolve it.<\/p>\n<div id=\"attachment_8873\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Phabricator-Setup-Issues.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-8873\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Phabricator-Setup-Issues-438x450.png\" sizes=\"auto, (max-width: 438px) 100vw, 438px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Phabricator-Setup-Issues-438x450.png 438w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Phabricator-Setup-Issues.png 682w\" alt=\"Phabricator Setup Issues\" width=\"438\" height=\"450\" aria-describedby=\"caption-attachment-8873\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-8873\" class=\"wp-caption-text\">Phabricator Setup Issues<\/p>\n<\/div>\n<p>Total, there are 10 setup issue mentioned as shown in the image below.<\/p>\n<div id=\"attachment_8874\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Phabricator-Resolve-Issues.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-8874\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Phabricator-Resolve-Issues-439x450.png\" sizes=\"auto, (max-width: 439px) 100vw, 439px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Phabricator-Resolve-Issues-439x450.png 439w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Phabricator-Resolve-Issues.png 686w\" alt=\"Open Phabricator Issues\" width=\"439\" height=\"450\" aria-describedby=\"caption-attachment-8874\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-8874\" class=\"wp-caption-text\">Open Phabricator Issues<\/p>\n<\/div>\n<p>Here, I can\u2019t show how to resolve each issue, but will try to show how to resolve one of the issue as mentioned in the error page. Let\u2019s take first issue,\u00a0<b>MYSQL STRICT_ALL_TABLES Mode Not Set<\/b>, clicking on the link will get the instructions on how to solve the issue.<\/p>\n<p>So, let\u2019s follow those instructions as described in the page. Open and edit the mysql configuration file.<\/p>\n<pre># \/etc\/my.cnf\t\t[On RedHat]\r\n\r\n# sudo vim \/etc\/mysql\/my.conf\t[On Ubuntu]\r\n<\/pre>\n<p>Next, append the code under the mysqld section of conf file, what we get from while clicked on \u201c<strong>MYSQL STRICT_ALL_TABLES Mode Not Set<\/strong>\u201c.<\/p>\n<pre>sql_mode\t= STRICT_ALL_TABLES\r\nft_min_word_len\t= 3\r\n<\/pre>\n<p>After resolving each errors, you must restart the MySQL and Apache service to reflect new changes.<\/p>\n<pre>------------ On Red Hat Systems  ------------\r\n# service mysqld restart\r\n# service apache restart\r\n\r\n\r\n------------ On Ubuntu Systems  ------------\r\n$ sudo service mysql restart\r\n$ sudo service apache2 restart\r\n<\/pre>\n<p>After, solving all issues, you can login into the panel again and check for the status, you will see \u201c<strong>Ready to Use<\/strong>\u201d message.<\/p>\n<div id=\"attachment_8875\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Phabricator-Login.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-8875\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Phabricator-Login-595x450.png\" sizes=\"auto, (max-width: 595px) 100vw, 595px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Phabricator-Login-595x450.png 595w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Phabricator-Login.png 716w\" alt=\"Phabricator Login\" width=\"595\" height=\"450\" aria-describedby=\"caption-attachment-8875\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-8875\" class=\"wp-caption-text\">Phabricator Login<\/p>\n<\/div>\n<div id=\"attachment_8876\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Check-Phabricator.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-8876\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Check-Phabricator-536x450.png\" sizes=\"auto, (max-width: 536px) 100vw, 536px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Check-Phabricator-536x450.png 536w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Check-Phabricator.png 722w\" alt=\"Check Phabricator Issues\" width=\"536\" height=\"450\" aria-describedby=\"caption-attachment-8876\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-8876\" class=\"wp-caption-text\">Check Phabricator Issues<\/p>\n<\/div>\n<h3>Step 6: Browsing Phabricator Features<\/h3>\n<p>You can see some of the user available features as shown in the pictures below.<\/p>\n<div id=\"attachment_8877\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Add-Authenticate-Provider.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-8877\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Add-Authenticate-Provider-380x450.png\" sizes=\"auto, (max-width: 380px) 100vw, 380px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Add-Authenticate-Provider-380x450.png 380w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Add-Authenticate-Provider.png 719w\" alt=\"Add Authenticate Provider\" width=\"380\" height=\"450\" aria-describedby=\"caption-attachment-8877\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-8877\" class=\"wp-caption-text\">Add Authenticate Provider<\/p>\n<\/div>\n<div id=\"attachment_8878\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Phabricator-Configuration.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-8878\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Phabricator-Configuration-385x450.png\" sizes=\"auto, (max-width: 385px) 100vw, 385px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Phabricator-Configuration-385x450.png 385w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Phabricator-Configuration.png 721w\" alt=\"Phabricator Configuration\" width=\"385\" height=\"450\" aria-describedby=\"caption-attachment-8878\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-8878\" class=\"wp-caption-text\">Phabricator Configuration<\/p>\n<\/div>\n<div id=\"attachment_8879\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Core-Applications.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-8879\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Core-Applications-368x450.png\" sizes=\"auto, (max-width: 368px) 100vw, 368px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Core-Applications-368x450.png 368w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Core-Applications.png 714w\" alt=\"Core Applications\" width=\"368\" height=\"450\" aria-describedby=\"caption-attachment-8879\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-8879\" class=\"wp-caption-text\">Core Applications<\/p>\n<\/div>\n<div id=\"attachment_8880\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Utilities.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-8880\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Utilities-371x450.png\" sizes=\"auto, (max-width: 371px) 100vw, 371px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Utilities-371x450.png 371w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Utilities.png 721w\" alt=\"Utilities\" width=\"371\" height=\"450\" aria-describedby=\"caption-attachment-8880\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-8880\" class=\"wp-caption-text\">Utilities<\/p>\n<\/div>\n<div id=\"attachment_8881\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Administration.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-8881\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Administration-520x450.png\" sizes=\"auto, (max-width: 520px) 100vw, 520px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Administration-520x450.png 520w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Administration.png 713w\" alt=\"Phabricator Administration\" width=\"520\" height=\"450\" aria-describedby=\"caption-attachment-8881\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-8881\" class=\"wp-caption-text\">Administration<\/p>\n<\/div>\n<p>For Creating a normal user account, click on top-left corner icon then Scroll down the page, then click on \u201c<strong>People<\/strong>\u201c. Now to create a new user we have to Click on \u201c<strong>Create New User<\/strong>\u201c.<\/p>\n<h3>Step 7: Recover Phabricator Admin Password<\/h3>\n<p>If incase, you forget your admin password and you want to recover it, just follow the below command.<\/p>\n<pre># .\/bin\/auth recover tecmint\r\n<\/pre>\n<div id=\"attachment_8882\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Recover-Admin-Password.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-8882\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Recover-Admin-Password-620x198.png\" sizes=\"auto, (max-width: 620px) 100vw, 620px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Recover-Admin-Password-620x198.png 620w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Recover-Admin-Password.png 656w\" alt=\"Recover Phabricator Admin Password\" width=\"620\" height=\"198\" aria-describedby=\"caption-attachment-8882\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-8882\" class=\"wp-caption-text\">Recover Admin Password<\/p>\n<\/div>\n<p>Next, copy the given access code and access the URL to recover, as shown in the images below.<\/p>\n<div id=\"attachment_8883\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Authentication-Failure.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-8883\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Authentication-Failure-620x284.png\" sizes=\"auto, (max-width: 620px) 100vw, 620px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Authentication-Failure-620x284.png 620w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Authentication-Failure.png 689w\" alt=\"Authentication Failure\" width=\"620\" height=\"284\" aria-describedby=\"caption-attachment-8883\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-8883\" class=\"wp-caption-text\">Authentication Failure<\/p>\n<\/div>\n<div id=\"attachment_8884\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Account-Recovery.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-8884\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Account-Recovery-620x386.png\" sizes=\"auto, (max-width: 620px) 100vw, 620px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Account-Recovery-620x386.png 620w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2014\/09\/Account-Recovery.png 688w\" alt=\"Phabricator Account Recovery\" width=\"620\" height=\"386\" aria-describedby=\"caption-attachment-8884\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-8884\" class=\"wp-caption-text\">Phabricator Account Recovery<\/p>\n<\/div>\n<p>That\u2019s all for now, we\u2019ve successfully installed and configured \u201c<strong>Phabricator<\/strong>\u201can open source project management tool without any glitches. I hope you too setup with any errors, if any let me know via comments, I would love to help you out.<\/p>\n<p><a href=\"http:\/\/phabricator.org\/\" target=\"_blank\" rel=\"nofollow noopener\">http:\/\/phabricator.org\/<\/a><\/p>\n<p><a href=\"https:\/\/www.tecmint.com\/install-phabricator-in-linux\/\" target=\"_blank\" rel=\"noopener\">Source<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Phabricator\u00a0is an open source application that helps software companies to create\/build better software, which is built using PHP language and available under Apache 2.0 open source license for Linux, MacOSX and can be run in any platform, it can even run in windows but it is totally based on Linux support. Phabricator has been used &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.appservgrid.com\/paw92\/index.php\/2019\/03\/28\/phabricator-an-open-source-powerful-project-management-tool-for-linux\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Phabricator \u2013 An Open Source Powerful \u201cProject Management\u201d Tool for Linux&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-12773","post","type-post","status-publish","format-standard","hentry","category-linux"],"_links":{"self":[{"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/posts\/12773","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/comments?post=12773"}],"version-history":[{"count":1,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/posts\/12773\/revisions"}],"predecessor-version":[{"id":12774,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/posts\/12773\/revisions\/12774"}],"wp:attachment":[{"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/media?parent=12773"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/categories?post=12773"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/tags?post=12773"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}