Skip to content

Instantly share code, notes, and snippets.

@trecno
Created June 25, 2021 17:45
Show Gist options
  • Save trecno/6ed53a064ae986f0ed4a9f8eb42bb76d to your computer and use it in GitHub Desktop.
Save trecno/6ed53a064ae986f0ed4a9f8eb42bb76d to your computer and use it in GitHub Desktop.
Comandos para instalar Nextcloud
sudo chmod a+rwx /var/www/trecnocloud
cd /var/www/trecnocloud
wget https://download.nextcloud.com/server/installer/setup-nextcloud.php
sudo apt install php-zip php-xml php-intl curl php-curl php-mbstring php-gd
sudo systemctl reload apache2
sudo mysql
CREATE USER 'admin'@'localhost' IDENTIFIED BY '12345';
CREATE DATABASE trecnocloud;
GRANT ALL PRIVILEGES ON trecnocloud.* TO 'admin'@'localhost';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment