This Forum has been archived there is no more new posts or threads ... use this link to report any abusive content
==> Report abusive content in this page <==
Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How Can I Build File Storage Web?
04-11-2014, 11:53 AM
Post: #1
How Can I Build File Storage Web?
Hi Smile

I Wanna Build File Storage Web. Which Things Help Me To Build Easily File Storage Web, Which Things Is Require To Build File Storage Web?

- Requirements ?
- Server Model ?
- Server Disk Space ?
- Budget ?
- Any Thing Else?

Ads

Find all posts by this user
Quote this message in a reply
04-11-2014, 12:05 PM
Post: #2
 
Perform the following steps.

1. Using Oracle VM VirtualBox (shown in Figure 1), install Oracle Solaris 11.1 on your system.
2. Add a disk to be used in the configuration ZFS
3. Add three more disks. When you are done,
4. Start Oracle Solaris using the Start icon in Oracle VM VirtualBox.
5. After logging in, change to the root user by using the su command. (From Oracle Solaris 11, you cannot log in directly as root; you must log in as a regular user first.)
6. Use the commands shown in Listing 1 to configure the ZFS storage and configure a RAIDZ volume.

The commands in Listing 1 create a ZFS pool named data_pool as a RAIDZ volume using three disks: c7t2d0, c7t3d0, and c7t4d0. Then the docs ZFS file system is created under data_pool.

root@solaris:~# format
Searching for disks...done


AVAILABLE DISK SELECTIONS:
0. c7t0d0 <ATA-VBOX HARDDISK-1.0-16.00GB>
/pci@0,0/pci8086,2829@d/disk@0,0
1. c7t2d0 <ATA-VBOX HARDDISK-1.0-2.00GB>
/pci@0,0/pci8086,2829@d/disk@2,0
2. c7t3d0 <ATA-VBOX HARDDISK-1.0-2.00GB>
/pci@0,0/pci8086,2829@d/disk@3,0
3. c7t4d0 <ATA-VBOX HARDDISK-1.0-2.00GB>
/pci@0,0/pci8086,2829@d/disk@4,0
Specify disk (enter its number): ^D

root@solaris:~# zpool create data_pool raidz c7t2d0 c7t3d0 c7t4d0
root@solaris:~# zfs create data_pool/docs

Ads

Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)