Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # You must have installed MariaDB (https://pastebin.com/CxsPHAE7) and PHP 7.4 or older (https://pastebin.com/4dBrYLXT)
- # Remember to replace YOUR_USER and YOUR_PASSWORD
- wget https://download.owncloud.com/server/stable/owncloud-complete-latest.zip
- unzip owncloud-complete-latest.zip
- rm -r owncloud-complete-latest.zip
- cd owncloud
- mariadb << EOF
- CREATE DATABASE owncloud;
- EOF
- ./occ maintenance:install \
- --database "mysql" \
- --admin-user "admin" \
- --admin-pass "1234" \
- --database-host "127.0.0.1" \
- --database-name "owncloud" \
- --database-user "YOUR_USER"\
- --database-pass "YOUR_PASSWORD"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement