NextCloud installation on Ubunt or like other servers......
Reference book
https://gufhtugu.com/linux-an-introdu...
///////Set root Password
sudo passwd root
//////////Enable Root Login in Server
sudo nano /etc/ssh/sshd_config
PermitRootLogin yes
PasswordAuthentication yes
////////////////////////////////////////////////////
apt install apache2
systemctl enable apache2
systemctl start apache2
apt install mariadb-server
mysql_secure_installation
apt install phpmyadmin
apt install php libapache2-mod-php php-mysql
////////////////////////access database
mariadb
create database asfand;
create user asfand identified by 'asfand';
grant usage on . to asfand@localhost identified by 'asfand';
GRANT ALL PRIVILEGES ON asfand.* to asfand@localhost;
flush privileges;
////////////////////////////
apt install php-gd php-json php-mysql php-mbstring php-curl
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
//sudo apt-get install php-curl
//apt install php7.3-curl
apt install php7.1-mcrypt php-imagick php-xml php-zip php-intl
Nextcloud is a suite of client-server software for creating and using file hosting services. Nextcloud is free and open-source, which means that anyone is allowed to install and operate it on their own private server devices
https://github.com/nextcloud
Nextcloud is a suite of client-server software for creating and using file hosting services. Nextcloud is free and open-source, which means that anyone is allowed to install and operate it on their own private server devices.
With the integrated OnlyOffice, Nextcloud is functionally similar to Dropbox, Office 365 or Google Drive, but can be used on home-local computers or for off-premises file storage hosting.
The original ownCloud developer Frank Karlitschek forked ownCloud and created Nextcloud, which continues to be actively developed by Karlitschek and other members of the original ownCloud team.