Created
June 25, 2021 17:45
-
-
Save trecno/6ed53a064ae986f0ed4a9f8eb42bb76d to your computer and use it in GitHub Desktop.
Comandos para instalar Nextcloud
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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