svn commit: r511290 - head/devel/phabricator/files

Michael Gmelin grembo at FreeBSD.org
Fri Sep 6 10:15:32 UTC 2019


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


More information about the svn-ports-all mailing list