LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Server
User Name
Password
Linux - Server This forum is for the discussion of Linux Software used in a server related context.

Notices


Reply
  Search this Thread
Old 08-20-2009, 04:19 PM   #1
mixhypnatist
LQ Newbie
 
Registered: Aug 2009
Posts: 13

Rep: Reputation: 0
Would "RAID" Data storage system be best for Music download website.?


I was recently informed on this forum, that a "RAID" data storage
system would be best for my online music download website.

If this is correct, what "RAID" system should I utilize,RAID 1, RAID 2,
RAID 6 ?,
I have many hundreds , or even thousands of songs to convert to digital files.What software would be best for this type of music download website?

Does anyone have any reccomendations.?
 
Old 08-20-2009, 04:24 PM   #2
karamarisan
Member
 
Registered: Jul 2009
Location: Illinois, US
Distribution: Fedora 11
Posts: 374

Rep: Reputation: 55
I'm guessing you haven't read up on your RAID levels - RAID 2 basically dosen't exist. So, start here.

After you're done, RAID 5 is your best bet (and by RAID 5, I mean any RAID 5-style RAID, which includes RAID 6). It trades write speed for read speed, which is good if most of your disk accesses are reads (as in the case of webserver).

As for converting, which is a separate question, I'd think a shell script would be your best bet. How comfortable are you with that?
 
Old 08-20-2009, 05:11 PM   #3
mixhypnatist
LQ Newbie
 
Registered: Aug 2009
Posts: 13

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by karamarisan View Post
I'm guessing you haven't read up on your RAID levels - RAID 2 basically dosen't exist. So, start here.

After you're done, RAID 5 is your best bet (and by RAID 5, I mean any RAID 5-style RAID, which includes RAID 6). It trades write speed for read speed, which is good if most of your disk accesses are reads (as in the case of webserver).

As for converting, which is a separate question, I'd think a shell script would be your best bet. How comfortable are you with that?
Sounds very interesting , I'll have to do some research on this Shell script.Thanks.
 
Old 08-20-2009, 05:15 PM   #4
karamarisan
Member
 
Registered: Jul 2009
Location: Illinois, US
Distribution: Fedora 11
Posts: 374

Rep: Reputation: 55
Uh, you may not understand what I meant. I'm not recommending a specific program; I'm suggesting you write or have someone write for you a script that will do the conversion job.
 
Old 08-20-2009, 05:52 PM   #5
mixhypnatist
LQ Newbie
 
Registered: Aug 2009
Posts: 13

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by karamarisan View Post
Uh, you may not understand what I meant. I'm not recommending a specific program; I'm suggesting you write or have someone write for you a script that will do the conversion job.
What software would you suggest I use when writing this computer script,
for this "RAID" data storage system.?
 
Old 08-20-2009, 08:48 PM   #6
karamarisan
Member
 
Registered: Jul 2009
Location: Illinois, US
Distribution: Fedora 11
Posts: 374

Rep: Reputation: 55
So, you know the command line? That's a program called bash, and what it really is is a script interpreter that happens to have an interactive mode. What I'm talking about is a bash script (shell script) that will automate what you would have done if you were doing all this work manually. Google 'shell scripting' if you want to learn more about this.
 
Old 08-21-2009, 12:31 AM   #7
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,362

Rep: Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751
Re shell scripts:

http://rute.2038bug.com/index.html.gz
http://tldp.org/LDP/Bash-Beginners-G...tml/index.html
http://www.tldp.org/LDP/abs/html/
 
Old 08-21-2009, 12:19 PM   #8
mixhypnatist
LQ Newbie
 
Registered: Aug 2009
Posts: 13

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by karamarisan View Post
So, you know the command line? That's a program called bash, and what it really is is a script interpreter that happens to have an interactive mode. What I'm talking about is a bash script (shell script) that will automate what you would have done if you were doing all this work manually. Google 'shell scripting' if you want to learn more about this.

I have purchased a php based html software, would this scripting be compatible with this php based software?.Also this "RAID" data storage.
 
Old 08-21-2009, 03:46 PM   #9
karamarisan
Member
 
Registered: Jul 2009
Location: Illinois, US
Distribution: Fedora 11
Posts: 374

Rep: Reputation: 55
In the sense that whatever software you bought can do anything directly with either a RAID setup or transcoding your audio files? I would assume not. They're all totally functionally independent. If you have full control of the server you're running them on, you can implement all of them independently.

With no disrespect intended, I think you may be in a little over your head. First off, do you already have the machine you're running this on? Is it someone else's, or do you physically own the machine? How do you access it?
 
Old 08-23-2009, 05:33 PM   #10
mixhypnatist
LQ Newbie
 
Registered: Aug 2009
Posts: 13

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by karamarisan View Post
In the sense that whatever software you bought can do anything directly with either a RAID setup or transcoding your audio files? I would assume not. They're all totally functionally independent. If you have full control of the server you're running them on, you can implement all of them independently.

With no disrespect intended, I think you may be in a little over your head. First off, do you already have the machine you're running this on? Is it someone else's, or do you physically own the machine? How do you access it?
The server is off site, it is accessed remotely. I am using a web hosting company.What would you recomend?, should I purcahse my own server?.
 
Old 08-23-2009, 05:46 PM   #11
karamarisan
Member
 
Registered: Jul 2009
Location: Illinois, US
Distribution: Fedora 11
Posts: 374

Rep: Reputation: 55
Probably not, considering the time it would take to learn enough to get the full benefits of having the physical machine versus the lost benefits of having someone else be responsible for it. You may want to contact your hosting company to ask what they do to protect your site against hardware failure. If you had the machine yourself, you could set up a four-disk RAID 6 that would survive two failures, but they may already have your data stored on a similar setup that they actively back up and monitor for problems.

How do you access it remotely? If you can get in over ssh (and you have admin privileges on it - I can't imagine you don't), you can still run custom software to do the conversion work on it. As above, you'd have to read up on shell scripting and the commands needed to do the actual work - or, you could ask really nicely for someone to write it for you, as it's not super-complicated, or pay someone. Hell, I'd do it. :P

Could you tell me a little more about your conversion needs, too? What exactly do you have and what exactly do you want to have?
 
Old 08-23-2009, 06:24 PM   #12
mixhypnatist
LQ Newbie
 
Registered: Aug 2009
Posts: 13

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by karamarisan View Post
Probably not, considering the time it would take to learn enough to get the full benefits of having the physical machine versus the lost benefits of having someone else be responsible for it. You may want to contact your hosting company to ask what they do to protect your site against hardware failure. If you had the machine yourself, you could set up a four-disk RAID 6 that would survive two failures, but they may already have your data stored on a similar setup that they actively back up and monitor for problems.

How do you access it remotely? If you can get in over ssh (and you have admin privileges on it - I can't imagine you don't), you can still run custom software to do the conversion work on it. As above, you'd have to read up on shell scripting and the commands needed to do the actual work - or, you could ask really nicely for someone to write it for you, as it's not super-complicated, or pay someone. Hell, I'd do it. :P

Could you tell me a little more about your conversion needs, too? What exactly do you have and what exactly do you want to have?
Right now I am running a php software named "easybemusic shop 1-2-3,
You can read up on them at their website www.easybemusicshop.com or
just google easybemsuicshop123. I was told by many programmers that it
is to complicated for them to work with.

As I said, I will be uploading many thousands of music files, for my
music download website.-->www.discomixdownload.com . Web host is www.fastdomain.com , I called and spoke to one of the tech support people,
and he informed me that they have RAID mirrored type disk storage capability.

What I need is additional "RAID" type data storage capacity, and functionality. The web host has the capability for me to "upload this shell
scripting software" that you speek of.They have the FTP, upload options
that can be accessed from the "cp" ,"control panel" at the web hosting site
were they allow you to build the website. What would you recomend, and how
much would all of this cost me, for you to write this shell scripting, to
give me this RAID, functionality?

Also, the programmer that is currently working on my site, says there is
problem with the shopping basket part of the website.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to get the "data type" of an "unknown variable" in "C Language" ? Affair Programming 8 06-20-2009 12:30 PM
Looking for good or best "multi-thread" or "multiple download" download manger. brjoon1021 Linux - Software 1 09-25-2008 03:26 PM
New Kernel, RAID-1, "Waiting for root file system" a_l_a_n Linux - General 1 12-10-2006 02:23 PM
Where to download precompiled bash binaries, such as "time" and "top"? elinuxqs Linux - Newbie 12 11-14-2005 08:36 PM
System stalls after "Bios data check successful" crash3k Mandriva 6 02-08-2005 08:10 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Server

All times are GMT -5. The time now is 03:04 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration