RaidArray.net
pointer.gif Home     pointer.gifLog-In     http://raidarray.net/images/pointer.gifContact
Remote Backup Solution
- 100GB Storage Space
- FTP Access
- Remote Mount(samba)
- Instant Activation!
$25/mo + No Setup Fees
go.gif
Is the safety of your business worth $25/mo?
If your business doesn't already have backups then it is at serious risk. Hardware failures, hackers and user error can cause loss of data. Our backup service is easy to use, available 24/7, located in a secure data center and will give you peace of mind.



Mounting Backup as Linux Partition (RedHat Linux)
Locate IP Address Run ifconfig eth0 and contact support with your main server IP address. Our backup servers are behind a firewall and any ip connection to NFS must be known.
Start required services
  • Create /backup with mkdir -p /backup
  • You must have the package nfs-utils installed on your server
  • On a cpanel server stop portsentry with the command /etc/init.d/portsentry stop && /sbin/chkconfig --del portsentry
  • Start portmap with /etc/init.d/portmap start && /sbin/chkconfig portmap on
  • Only localhost needs to connect to portmap, so for security run echo portmap:ALL >> /etc/hosts.deny then echo portmap:127.0.0.1 >> /etc/hosts.allow
  • Start nfslock with /etc/init.d/nfslock start && /sbin/chkconfig nfslock on
  • Run modprobe nfs to add the kernel module required. If NFS is compiled into your server this step is not required.
  • Manual Mount
  • Mount with command: mount -t nfs BackupServer:/backup/X/username -o rw,hard,timeo=14,intr,rsize=8192,wsize=8192,nosuid,noexec,retry=60,lock,udp /backup
  • ** If you loose the nfs connection when copying files to the mount change udp to tcp in the mount command
  • Option 2: Add to /etc/fstab (NOT RECOMMENDED)
  • Create /backup with mkdir -p /backup
  • Open /etc/fstab in your favorite editor
  • Add BackupServer:/backup/X/username /backup nfs rw,hard,timeo=14,intr,rsize=8192,wsize=8192,nosuid,noexec,retry=60,lock,udp 0 0
  • Run mount -a
  • ** If you loose the nfs connection when copying files to the mount change udp to tcp in the mount command

  • p1.jpg