Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/vm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Hansson <daniel@techandme.se>2018-01-06 21:28:28 +0300
committerGitHub <noreply@github.com>2018-01-06 21:28:28 +0300
commit75dace2501e54f558aae33f1ecf3ac363ebfd822 (patch)
treeed126abcafd0b9a7653bda15c604a787a1f3b048 /nextcloud_install_production.sh
parent850fdf03d3a780d0fa2a72fcd801081148f9f165 (diff)
Happy-New-Year! (#438)
Diffstat (limited to 'nextcloud_install_production.sh')
-rw-r--r--nextcloud_install_production.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/nextcloud_install_production.sh b/nextcloud_install_production.sh
index c55a4bc5..fe114274 100644
--- a/nextcloud_install_production.sh
+++ b/nextcloud_install_production.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-# Tech and Me © - 2017, https://www.techandme.se/
+# Tech and Me © - 2018, https://www.techandme.se/
# Prefer IPv4
sed -i "s|#precedence ::ffff:0:0/96 100|precedence ::ffff:0:0/96 100|g" /etc/gai.conf
@@ -158,7 +158,7 @@ apt update -q4 & spinner_loading
check_command apt install mariadb-server-10.2 -y
# Prepare for Nextcloud installation
-# https://blog.v-gar.de/2017/02/en-solved-error-1698-28000-in-mysqlmariadb/
+# https://blog.v-gar.de/2018/02/en-solved-error-1698-28000-in-mysqlmariadb/
mysql -u root mysql -p"$MARIADB_PASS" -e "UPDATE user SET plugin='' WHERE user='root';"
mysql -u root mysql -p"$MARIADB_PASS" -e "UPDATE user SET password=PASSWORD('$MARIADB_PASS') WHERE user='root';"
mysql -u root -p"$MARIADB_PASS" -e "flush privileges;"