Spread the word.

Share the link on social media.

Share
  • Facebook
Have an account? Sign In Now

Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In
Continue with Facebook
Continue with Google
or use

Browse


Have an account? Sign In Now

Sign In

Login to our ITSupportBD questions & Answers Engine to ask questions answer people’s questions & connect with other IT people.

Sign Up Here
Continue with Facebook
Continue with Google
or use


Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.


Have an account? Sign In Now

You must login to ask a question.

Continue with Facebook
Continue with Google
or use


Forgot Password?

Need An Account, Sign Up Here

Please type your username.

Please type your E-Mail.

Please choose an appropriate title for the post.

Please choose the appropriate section so your post can be easily searched.

Please choose suitable Keywords Ex: post, video.

Browse

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

IT Support BD Logo IT Support BD Logo
Sign InSign Up

IT Support BD

IT Support BD Navigation

  • Home
  • Blog
  • Download
  • Support Hour Booking
Search
Ask A Question

Mobile menu

Close
Ask A Question
  • Terms and Conditions
  • Privacy Policy
  • Cookie Policy
Home/ Questions/Q 3966
Next
Answered

IT Support BD Latest Questions

Asked: January 3, 20222022-01-03T22:29:49+06:00 2022-01-03T22:29:49+06:00In: Server

How to Create Own Personal Cloud Storage?

Arif
ArifIT Moderator

How to Create My Own Personal Cloud Storage Free?

server
2
  • 2
  • 2
  • 2 2 Answers
  • 673 Views
  • 3 Followers
  • 1
Share
  • Facebook

    Leave an answer
    Cancel reply

    You must login to add an answer.

    Continue with Facebook
    Continue with Google
    or use


    Forgot Password?

    Need An Account, Sign Up Here
    Continue with Facebook
    Continue with Google

    2 Answers

    • Voted
    • Oldest
    • Recent
    • Random
    1. Support
      Best Answer
      Support IT Senior Coordinator
      2022-01-03T22:41:18+06:00Added an answer on January 3, 2022 at 10:41 pm
      How to Create Own Personal Cloud Storage?

      Create your own cloud server for Free.

      In this video, I want to show you, How to Create Your Own Personal Cloud Storage like Google Drive or Onedrive.

      I will show you How to create your Cloud server for free.

      You can easily create your Cloud Storage Server Free.

      This Cloud server creation is easy. Just follow a few simple three steps.

      Step 1: Install operating system

      Ubuntu 22.04, Ubuntu 20.04, or Ubuntu 18.04 and Update your System.

       

      Step 2: Install some Extensions and create a database.

      you will need to install the Apache webserver, PHP, Maria D B, and other required PHP extensions in your server. Create a database and user for Next Cloud.

      Step 3: You can download it from Next cloud’s official website.

      Before we start, There I am using the Azure portal to install the Ubuntu 22.04 operating system. You can use physical machines if you want or use your Old PC as a cloud Server.

       

       

      First, you’ll need to connect to your server as a root user, either directly from the console or remotely using SSH.

      Step 1. Server Update.

      First, You will need to log in to your Ubuntu server as the root user and Update your System with the following command:

      apt-get upgrade -y
      apt-get update -y

      Step 2. Install Apache and PHP.

       

      Install Apache and PHP with the following command:

      apt-get install php7.4 libapache2-mod-php7.4 php7.4-xml php7.4-cli php7.4-cgi php7.4-mysql php7.4-mbstring php7.4-gd php7.4-curl php7.4-zip php-imagick php7.4-json php7.4-intl -y

      Step 3. Install the MariaDB server
      NextCloud can use MySQL, MariaDB, Postgre SQL, or SQ Lite database to store its data. In this guide, we will use the MariaDB database server.

      You need to install the MariaDB server and other packages with the following command:

      apt-get install mariadb-server mariadb-client unzip wget -y

      Run the MariaDB installation the following command:

      mysql_secure_installation

      Below are all Answer to the questions and set the MariaDB root password for installation:

      Enter current password for root (enter for none):
       Set root password? [Y/n] Y
       New password:
       Re-enter new password:
       Remove anonymous users? [Y/n] Y
       Disallow root login remotely? [Y/n] Y
       Remove test database and access to it? [Y/n] Y
       Reload privilege tables now? [Y/n] Y

      Step 5. Log in to the MariaDB and create a database.

      Log in to the MariaDB with the following command:

      mysql -u root -p

      Create a database and user for NextCloud with the following command:

      MariaDB [(none)]> CREATE DATABASE nextcloud;

      Create a database user and assign the required privileges as provided in the following command:

       

      MariaDB [(none)]> GRANT ALL PRIVILEGES ON nextcloud.* TO ‘nextcloud’@’localhost’ IDENTIFIED BY ‘your-password’;

      Exit from the MariaDB console with the following command:

      MariaDB [(none)]> FLUSH PRIVILEGES;
      MariaDB [(none)]> EXIT;

      Step 6. Download and install the Nextcloud.

      Download Nextcloud with the following command:

      wget https://download.nextcloud.com/server/releases/nextcloud-23.0. 0.zip

      Unzip the downloaded nextcloud file to the Apache root directory:

      unzip nextcloud-23.0.0.zip -d /var/www/html/

      Ownership change of the nextcloud directory to www-data:

      chown -R www-data:www-data /var/www/html/nextcloud

      Step 6. Nextcloud Configuration.

      Configure Apache for Nextcloud conf file with the following command:

      nano /etc/apache2/sites-available/nextcloud.conf

      Now add the lines shown below. For the ServerName attribute, provide the of your server or IP address if you don’t have a domain name pointing to your IP Address.

      <VirtualHost *:80>
      DocumentRoot "/var/www/html/nextcloud"
      ServerName cloud.bdold.com
      ErrorLog ${APACHE_LOG_DIR}/nextcloud.error
      CustomLog ${APACHE_LOG_DIR}/nextcloud.access combined
      <Directory /var/www/html/nextcloud/>
      Require all granted
      Options FollowSymlinks MultiViews
      AllowOverride All
      <IfModule mod_dav.c>
      Dav off
      </IfModule>
      SetEnv HOME /var/www/html/nextcloud
      SetEnv HTTP_HOME /var/www/html/nextcloud
      Satisfy Any
      </Directory>
      </VirtualHost>

      Run and enable the configuration Apache host file with the following command:

       

      a2ensite nextcloud.conf

       

      Enable Apache modules with the following command:

      a2enmod rewrite headers env dir mime setenvif ssl

      Reload the Apache for the changes to take effect.

      systemctl restart apache2

      The domain point to the next cloud server:

      Domain Login in your C Panel or domain Manager.

      Find domain DNS Zone Manager or Domains section on your C Panel home page and click Zone editor. Add my next cloud server IP in the A record and save this A record.

      Now the domain point to the next cloud server.

      Open your web browser and browse your IP or Domain.

      http://Server IP/ Or http://your domain.com/

      You will be required to provide your login and database details as demonstrated in the field.

      You can now upload your files and collaborate with your team members on NextCloud.

      Also, you can use this server in your mobile and computer-like OneDrive, Dropbox, or Google Drive.

        • 1
      • Reply
      • Share
        Share
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
        • Share on WhatsApp
    2. admin
      admin IT Partner
      2022-01-16T22:25:27+06:00Added an answer on January 16, 2022 at 10:25 pm

      Cloud Storage Server creation is very easy.

      I will show you How to
      create a Cloud storage server free and easy way.

      Cloud Storage Server
      creation is very
       easy.




      Fast you need to Install Linux operating
      system Ubuntu 20.04 LTS server
      .
      Then You will need to
      log in to your Ubuntu server as the root user and Update your System and
      Run the following script to start the installation.

      There I am using the
      Azure portal for the virtual operating system. 

      You can use physical
      machines if you want. 

      I choose Ubuntu 20.04 LTS
      operating system.

      Open the 22, 80, and 443 Port on Firewall From
      your network.

      there I’m using a putty SSH
      client to Connect my server.

      Now you’ll need to
      connect to your server as a root user.

      Update your System with the following command:

      apt-get upgrade -y

      apt-get update -y

      Run this script to start the installation and wait for it to finish.

      cd /root

      wget –no-check-certificate https://raw.githubusercontent.com/haiwen/seafile-server-installer/master/seafile-8.0_ubuntu

      bash seafile-8.0_ubuntu 8.0.0

       Open your web browser and browse your IP or Domain.

      http://Server IP/ Or http://your domain.com/


       

        • 0
      • Reply
      • Share
        Share
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
        • Share on WhatsApp

    Sidebar

    Ask A Question

    Stats

    • Questions 162
    • Answers 164
    • Best Answers 79
    • Users 17k
    • Popular
    • Answers
    • Jaylon S

      When I turn my Pc in a Server with Ehcp ...

      • 5 Answers
    • Abak

      ক্রিপ্টোকারেন্সি কি?

      • 4 Answers
    • admin

      Which is the first website of Bangladesh?

      • 3 Answers
    • admin
      admin added an answer If you're running OpenWRT on a router with limited internal… April 13, 2025 at 10:05 am
    • Support
      Support added an answer 10 Best Methods on How to Use IDM for Torrent… November 14, 2024 at 1:27 pm
    • admin
      admin added an answer When choosing a printer for book printing in Dubai, consider… October 30, 2024 at 3:31 pm

    Related Questions

    • Watch Free Bollywood and Bengali Movies Online

      • 0 Answers
    • How to build network monitoring and problem-solving tools?

      • 1 Answer
    • How to create own remote desktop server infrastructure.

      • 1 Answer
    • I want to host site using xamp on internet

      • 1 Answer
    • How can I Create own storage server and intagreate it ...

      • 1 Answer

    Top Members

    admin

    admin

    • 14 Questions
    • 1k Points
    IT Partner
    Arif

    Arif

    • 35 Questions
    • 790 Points
    IT Moderator
    Support

    Support

    • 29 Questions
    • 477 Points
    IT Senior Coordinator

    Trending Tags

    bd movie 365 computer custom pvc patches custom rom hosting mobile nas network online movies online pvc patches uk os pvc patches question server sim storage website windows 11 wordpress xrp price prediction

    Explore

    • Home
    • Add group
    • Groups page
    • Communities
    • Questions
      • New Questions
      • Trending Questions
      • Must read Questions
      • Hot Questions
    • Polls
    • Tags
    • Badges
    • Users
    • Help
    • Shop

    Footer

    IT Support BD

    We hope you enjoy our blog as much as We enjoy offering them to you. If you have any questions or comments, please don't hesitate to contact us.

    About Us

    • Meet The Team
    • Blog
    • About Us
    • Contact Us

    Legal Stuff

    • Terms and Conditions
    • Privacy Policy
    • Cookie Policy

    Help

    • Knowledge Base
    • Support

    Follow

    © 2018-2025 IT Support BD. All Rights Reserved

    Insert/edit link

    Enter the destination URL

    Or link to existing content

      No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.