Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 6 Sep 2019 10:15:31 +0000 (UTC)
From:      Michael Gmelin <grembo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r511290 - head/devel/phabricator/files
Message-ID:  <201909061015.x86AFVc7027769@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: grembo
Date: Fri Sep  6 10:15:31 2019
New Revision: 511290
URL: https://svnweb.freebsd.org/changeset/ports/511290

Log:
  Improve update procedure in pkg-message.

Modified:
  head/devel/phabricator/files/pkg-message.in

Modified: head/devel/phabricator/files/pkg-message.in
==============================================================================
--- head/devel/phabricator/files/pkg-message.in	Fri Sep  6 10:02:14 2019	(r511289)
+++ head/devel/phabricator/files/pkg-message.in	Fri Sep  6 10:15:31 2019	(r511290)
@@ -45,12 +45,23 @@ A phabricator example configuration installed here:
 
 Don't forget to update the database schema after update:
 
+  service nginx stop
+  service php-fpm stop
   service phd stop
   cd %%PREFIX%%/lib/php/phabricator
   ./bin/storage upgrade
   service phd start
+  service php-fpm start
+  service nginx start
 
-You also might want to stop the web server while upgrading the database.
+The above procedure is for users of nginx and php-fpm, please adapt
+accordingly to match your setup.
+
+If your configuration uses an unprivileged user to connect to the database,
+you may have to override the default user so the schema changes can be
+applied with root or some other admin user:
+
+  ./bin/storage upgrade --user <user> --password <password>
 
 If you want to access phabricator hosted git repositories via git,
 you can add the following configuration snippet to /etc/sshd_config



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909061015.x86AFVc7027769>