NextCloud on LAMP on Stretch: Difference between revisions

From munkjensen.net/wiki
mNo edit summary
No edit summary
 
(14 intermediate revisions by the same user not shown)
Line 1: Line 1:
== A few findings: ==
# [https://linuxconfig.org/how-to-install-a-lamp-server-on-debian-9-stretch-linux LAMP]
# [https://linuxconfig.org/how-to-install-a-lamp-server-on-debian-9-stretch-linux LAMP]
# [https://linuxconfig.org/how-to-install-nextcloud-on-debian-9-stretch-linux NextCloud]
# [https://linuxconfig.org/how-to-install-nextcloud-on-debian-9-stretch-linux NextCloud]
== A few findings: ==


<blockquote>
<blockquote>
Line 9: Line 9:
* "apt install mariadb-client mariadb-server" '''did not ask''' for root password. It just installed with blank password... but i can easily be fixed using the "mysql_secure_installation" script that is included in the install. Ref: https://mariadb.com/kb/en/mariadb/mysql_secure_installation/
* "apt install mariadb-client mariadb-server" '''did not ask''' for root password. It just installed with blank password... but i can easily be fixed using the "mysql_secure_installation" script that is included in the install. Ref: https://mariadb.com/kb/en/mariadb/mysql_secure_installation/
* [https://linuxconfig.org/how-to-install-nextcloud-on-debian-9-stretch-linux#h3-create-the-database Create the nextcloud database] '''not the "newdb"''' included in the LAMP guide.
* [https://linuxconfig.org/how-to-install-nextcloud-on-debian-9-stretch-linux#h3-create-the-database Create the nextcloud database] '''not the "newdb"''' included in the LAMP guide.
* PHP7 did not work ootb... investigating atm!
* PHP7 '''only pareses''' *.php files !




==== Additional installs ====
===== Enable http/2 =====


* http://lynx.invisible-island.net/
# a2enmod http2
# add "Protocols h2 h2c http/1.1" to /etc/apache2/apache2.conf


==== NextCloud ====
* Small typo: "php-7.0-cli" should be "php7.0-cli" in the first  apt install command.


</blockquote>
</blockquote>
== Additional installs ==
* http://lynx.invisible-island.net/
* [[Install NextCloud client on Windows 10]]
* https://linuxconfig.org/generate-ssl-certificates-with-letsencrypt-debian-linux
* [http://guichaz.free.fr/iotop/ iotop]
* [[Using "screen -S sessionName .script" in SSH|screen]]
* [[PiVPN]]
* https://certbot.eff.org/
[[Category:Debian]]
[[Category:NextCloud]]

Latest revision as of 17:29, 6 May 2018

A few findings:

  1. LAMP
  2. NextCloud

LAMP


Enable http/2
  1. a2enmod http2
  2. add "Protocols h2 h2c http/1.1" to /etc/apache2/apache2.conf

NextCloud

  • Small typo: "php-7.0-cli" should be "php7.0-cli" in the first apt install command.

Additional installs