This file contains 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 su | |
apt-get install php zip libapache2-mod-php php-gd php-json php-mysql php-curl php-mbstring php-intl php-imagick php-xml php-zip php-mysql php-bcmath php-gmp nginx php-fpm smbclient samba php-apcu php-opcache mariadb-server mariadb-client -y | |
# звдаем пароль для рута | |
mysql_secure_installation | |
# Создаем БД и Юзера и даем ему права | |
mysql -u root -p | |
CREATE DATABASE nextcloud CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; | |
CREATE USER 'nextcloud'@'localhost' IDENTIFIED BY 'VsevolodOblako2121'; |