Sign Up

Continue with Facebook
Continue with Google
or use


Have an account? Sign In Now

Sign In Sign In

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

You must login to add post.

Continue with Facebook
Continue with Google
or use


Forgot Password?

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
  • About Us
  • Blog
  • Download
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Terms of Use
  • Terms and Conditions
  • Privacy Policy
  • Cookie Policy
Home/ Questions/Q 3966
Next
Answered
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
Arif IT Moderator

How to Create My Own Personal Cloud Storage Free?

server
  • 2
  • 2 2 Answers
  • 183 Views
  • 3 Followers
  • 1
    • Report
  • Share
    Share
    • Share onFacebook
    • Share on Twitter
    • Share on LinkedIn
    • Share on WhatsApp

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. Best Answer
    Support IT 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 onFacebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report
  2. admin IT Admin
    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 onFacebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 125
  • Answers 193
  • Best Answers 72
  • Users 88
  • Popular
  • Answers
  • admin

    How to approach applying for a job at a company ...

    • 7 Answers
  • admin

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • admin

    What is a programmer’s life like?

    • 5 Answers
  • admin
    admin added an answer How can you set up a new Windows 11 laptop… March 25, 2023 at 11:54 am
  • admin
    admin added an answer How to use Quillbot Premium for a lifetime with the… March 21, 2023 at 9:42 am
  • IT BD
    IT BD added an answer o configure a static IP address and internet connection on… March 4, 2023 at 11:47 pm

Related Questions

  • 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
  • Why is my server always signing out

    • 1 Answer

Top Members

admin

admin

  • 34 Questions
  • 1k Points
IT Admin
Arif

Arif

  • 35 Questions
  • 675 Points
IT Moderator
Support

Support

  • 29 Questions
  • 402 Points
IT Coordinator

Trending Tags

analytics company computer custom rom english google javascript language microsoft office mobile nas network os php programs server storage website whatsapp wordpress

Explore

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

Footer

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 of Use
  • Terms and Conditions
  • Privacy Policy
  • Cookie Policy

Help

  • Knowledge Base
  • Support

Follow

© 2018-2023 IT Support BD. All Rights Reserved

Ads Blocker Image Powered by Code Help Pro

Ads Blocker Detected!!!

We have detected that you are using extensions to block ads. Please support us by disabling these ads blocker.

Close Refresh

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.