Primary And Secondary Nameservers

Aug 14, 2007

I have two nameservers, each running physically on a different server on different networks. Now I've noticed that whenever the primary NS goes down, clients requesting authoritative NS record lookups refuse to connect to the secondary NS, which I know is certainly up and running. The secondary NS has its own zone files and when you specifically request that server to resolve NS requests, it does the work. But generic NS lookups without specifying the server appears to fail when the primary server is down.

Does anyone know what might be happening here? I know that the domain registrar has both nameservers recorded for the domains I'm trying to resolve, but what is the point of a secondary NS, when it isn't contacted when the primary nameserver is down?

View 0 Replies


ADVERTISEMENT

Primary And Secondary Nameservers ..

May 26, 2008

i have just bought a dedicated server with 2 ips.

i already put type master in named.conf along with a zone file having 2 nameservers pointing to A records

ns1 IN A 1.3.5.7
ns2 IN A 2.4.6.8

how do i setup ns2 (secondary nameserver)? how do i know it is running?

View 9 Replies View Related

One Secondary DNS Server For Two Primary

Apr 22, 2009

I have the following three servers, which I'll call A, B, and C:

Server A - Web hosting server that uses cPanel on CentOS.

Server B - Free subdomain service (similar to afraid.org but on a much smaller scale), using PowerDNS with a MySQL database backend, on Debian.

Server C - Backup DNS server for the cPanel web hosting server, using the free cPanel "DNS Only" on CentOS.

Originally I had just A and B set up (they're two separate VPSes on the one dedicated server, I own the dedi and some friends and I have VPSes on it). Now I've got a VPS at a different data centre, and am using that for C.

To have a secondary DNS server for server B, I believe I can use MySQL replication to replicate the PowerDNS database to another server, then have a PowerDNS install on that server. My question is, is it possible to have server C as a backup DNS server for both server A (cPanel server) and server B (PowerDNS server)? ie. is there a way to check both PowerDNS and the cPanel BIND9 for domains (have them on different ports, and make one query the other if the lookup fails, perhaps)? Or perhaps use both the MySQL backend and the bind backend simultaneously in PowerDNS, and replace bind with PowerDNS (although I guess cPanel wouldn't like this)?

View 1 Replies View Related

DNS Servers Primary Secondary

Mar 22, 2007

clarification on DNS.

We currently have gps devices which report x,y coords. The devices currently report to a fully qualified name: servername.mydomain.com. And only one fully qualified name.

We would like to have redudancy, so if the main server goes down, then the secondary takes over. I assume this is accomblished via DNS.

So out first task is to create name servers at our domain registar and have them register them, for example:

ns1.mydomain.com -> FIRSTSERVERIP
ns2.mydomain.com -> SECONDSERVERIP

Then on the both servers we setup DNS to accept the a record of servename.mydomain.com points to? This is where I get confused. Does the firstserver DNS say point to itself, and the second DNS server point to itself?

View 2 Replies View Related

Setting Up Primary & Secondary MS DNS Server

May 3, 2009

in setting up Primary & secondary MS DNS server for MS WIn 2003 server,

View 5 Replies View Related

Primary And Secondary Servers (web And Mail)

Jun 30, 2008

I have 2 servers 1 US and 1 UK.

What I wanna do is synchronize both of them using rsync. Once they've got synchronized, the UK will be the primary server and US will be secondary, in case the UK goes down.

my questions are

1. Is it possible that when the UK goes down, the A records for domain.com automatically switches to the US server so it can take over while UK is down.

ie. UK ip 112.113.114.1
US ip 222.111.444.5

domain.com A records = UK ip when up... but when UK is down, A records automatically changes to US ip.

2. And when the UK server goes up again, whatever changes made to US server will be pushed to UK. May it be files, accounts or e-mails.

I.E.

UK and US are synchronized every 30mins. UK and US both have e-mails 1-10.

Just before the sync time, UK server received an e-mail 11-15 then goes down. So the US Server will take over but do not have 11-15 mails, since it was received before sync time. During the UK downtime, US server received e-mails 16-20.

When the UK server goes up, will it be possible to sync both servers that both of them will have the e-mails 1-20?

I hope you get my point...

If these are not feasible, what can you advice as an alternative solution. All I want is to avoid downtimes, especially with mails as the business relies on this.

View 9 Replies View Related

Reassure Two DNS Machines (a Primary And A Secondary) With Iptables

Dec 22, 2006

I would like to reassure two DNS machines (a primary and a secondary) with iptables

By default I block everything, but even with rules for the port 53, it blocks the queries needing to resolve via the primary, and the secondary does not manage to transfer the zones of the primary …

DNS are on public ip, but to simplify, we are going to say that:

The primary DNS is: 192.168.0.10
The secondary DNS is: 192.168.0.20

Here are iptables rules(sliders) which I have at present:

iptables -F
iptables -t nat -F
iptables -t mangle -F
iptables -X
iptables -t nat -X
iptables -t mangle -X

iptables -P INPUT DROP
iptables -P OUTPUT DROP
iptables -P FORWARD DROP

iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A OUTPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT

iptables -A INPUT -p tcp --dport 53 -j ACCEPT
iptables -A INPUT -p udp --dport 53 -j ACCEPT

iptables -A INPUT -i lo --source 127.0.0.1 --destination 127.0.0.1 -j ACCEPT

Thus with these rules, I have quite a lot of problems (resolutions, transfersof zones)
I found these rules on a forum, that seems to be interesting but as I do not know there not iptable, I ignore if it is what I miss or not.

For information here is all the same what I found (not tested):

#iptables -A INPUT -p tcp -s 192.168.0.20/255.255.255.255 --sport 1024:65535 -d 192.168.0.10 -dport 53 -m state state NEW,ESTABLISHED -j ACCEPT
#iptables -A OUTPUT -p tcp -s 192.168.0.10/255.255.255.255 --sport 53:65535 -d 192.168.0.20 -dport 1024:65535 -m state state ESTABLISHED -j ACCEPT

PS: server are under Linux Mandrake

View 0 Replies View Related

Hosting Secondary Nameservers

Jun 13, 2007

I am developing a site for a new company that will run under a medical engineering firm. I'm currently the only employee and am setting up websites and graphics for the company, but working out of the same office as everyone else. We currently have a VPS through iPower to host our site on, and everything is dandy. However we only own one IP address on the VPS, and I want to be in charge of my secondary nameserver, as I will also eventually use it as a secondary MX server. I have never done this before so I have a few questions about it. My previous experience has all been graphic design and web design, not much on the hosting side of things.

1.Is it possible to run a server on a XP desktop just using Apache or similar software (and a dynamic DNS service)?

2. Would it be possible to run this through the company LAN and router to make it accessible via the web without any serious tinkering on their network? (it has to stay up, and I have no idea what kind of routers or firewalls they are using currently). Basically given the standard setup how hard is it to open up the ports on the router(s)? I've done this only on a home router before, so I assume it can't be much different.

3. How do you go about doing it?

View 3 Replies View Related

Will The Nameservers Work If The Nameservers Are Pointed To A Parking Page

May 26, 2008

Will the nameservers work if the nameservers are pointed to a parking page?
For example:

I need to change my nameservers to ns1.mywebhost.com and ns2.mywebhost.com

(nameservers are made up)

These nameservers are from my web hosting service provider. When I visit the nameservers, it shows up a parking page from a domain parking service (let's say NameDrive parking page)

Will the nameservers function correctly and will my websites work? I have this question because usually the nameservers that I use, they always point to a CP page or something like that rather than a parking page.

View 7 Replies View Related

UK VPS For Secondary DNS

Sep 29, 2008

Is there any cheap / stable VPS vendor in UK likes cheapvps.co.uk? I just need a minimum VPS (128MB RAM?) for secondary DNS.

View 4 Replies View Related

Secondary DNS VPS

Dec 2, 2007

I signed up with cheapvps.co.uk a month ago, and I'm very happy with them . Now I'm looking for a very small VPS to host a secondary DNS server, and maybe a backup MX server.

It's just for personal use.

I think 5GB disk space would be enough, and I would like not to spend more than $10 USD/month. Do you know any VPS that suits my needs?

View 7 Replies View Related

VPS For Secondary DNS For CPanel

May 22, 2009

We need a secondary DNS for our cPanel server, as we want to have separate nameservers. What is the cheapest vps anyone knows that is hosted outside of Bluesquare House (UK). Global location isn't important.

View 2 Replies View Related

LXADMIN Secondary DNS

Jun 13, 2008

I have a VPS with LXADMIN Hostinabox single server and want to use this VPS as a secondary/slave DNS server. My primary/master DNS is hosted elsewhere.

Does the LXADMIN Hostinanox interface facilitate the ability to setup the secondary zone?

View 2 Replies View Related

Mount Secondary H.D.D

May 20, 2008

mount secondary H.D.D to /backup, but i have following error after run "mount /dev/sdb1 backup"

mount: unknown filesystem type 'ntfs'

How can change secondary hard disk file system to linux?

View 11 Replies View Related

Automatic Secondary DNS

Mar 28, 2007

I have searched for setting up automatic secondary DNS, but couldn't find anything, if I missed it, please post a link

I have 2 VPS's one running cPanel/WHM with about 15 low traffic sites on it. The other is a very slow spec VPS, hopefully just for DNS services.

I only have 1 domain server running currently, this is on the same server as the all the websites, what I want is a secondary DNS mirroring that of the DNS on my cPanel VPS, automaitically....

I was thinking of writting a little script to scp all the .db files in /var/named/ to my secondary server, then login to the secondary server and restart BIND?

View 6 Replies View Related

Secondary DNS Failover

Jul 22, 2008

What happens if your primary nameserver goes down? Meaning that it goes completely off the net, not even denying dns requests but completely ignoring them.

I'd guess that resolvers would query the secondary NS after a specified timeout, but what is that timeout set to? Does it differ from ISP to ISP? How much of a slowdown are we looking at for end users?

View 0 Replies View Related

Offsite Secondary DNS

Jul 5, 2007

would it be possible to have my main box running apache, a second box for dns/other and an offsite secondary dns such as DNS1.PUBLIC-DNS.NET?

Is it possible to authenticate the primary and offsite secondary nameserver so the zone is transferred to the secondary? Would i need to pay for a special service, or do free ones exist? Are there any security implications with zone files being transferred out over the public internet, would a vpn need to be configured or can the process be encrypted via the transfer procedure?

Finally, how would this affect the way the entire virtual hosting works? I know when the nameserver on the host machine serves resolves a name request for a computer trying to browse the site in question, but when the actual http request goes to the web server does it incldue the domain it is looking at also?

View 4 Replies View Related

Secondary Servers

Jul 29, 2007

I just ran into something about Secondary DNS services.

What exactly is that?

Is that where if my primary name server goes down, a secondary name server kicks in and resolves all my donmains to another server somewhere?

I've been thinking about getting setup with some kind of fail safe setup in case my primary name server goes down.

Would Secondary DNS services take care of that?

If so, anybody know where I can find a reliable, affordable secondary DNS service?

View 9 Replies View Related

Switching Primary DNS

Apr 21, 2008

I got a new server and need to move my primary and secondary DNS. I use cpanel.

My idea was too:

1. Shut off my secondary DNS ns2. on my old server. (which I don't know how to do.) I was able to delete it from the nameserver Ip's link in whm. It deleted it but the server still has the IP assigned to it.

2. Set up my secondary dns on the new server. (cpanel wont let me because it says it already exists so I'm kind of stuck on this one too.)

3. Once the secondary is set up go to my registar and change the IP address.

4. move the sites, and turn off the primary ns server forcing everything to go to the new server or secondary dns.

5. move the primary..

View 2 Replies View Related

Second IP Recognized As Primary

Mar 15, 2007

I've been having this issue for almost a week now and it's driving me crazy.

I made an IP switch from one peer to another. Anyways, I setup the gateway, primary IP, subnet, etc.

Once the box was rebooted and came up with the new IPs I noted that cPanel was whining that the license was incorrect and noted that instead of xxx.xxx.xxx.98 it was recognizing xxx.xxx.xxx.99

I just switched the license over and it was done. But I'm having some major email issues as some remote hosts does not receive/send emails to my server as the hostname cannot be found since they also recognize the secondary IP .99 and not primary .98 as it should be.

I've checked the entire settings again but just can't get around it. An ipconfig shows that the primary IP is in fact .98 which keeps me puzzled:

eth0 Link encap:Ethernet HWaddr 00:50:45:5C:0D:90
inet addr:xxx.xxx.xxx.98 Bcast:xxx.xxx.xxx.111 Mask:255.255.255.240
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:134016363 errors:0 dropped:0 overruns:0 frame:0
TX packets:178062904 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:1556429887 (1.4 GiB) TX bytes:2181442479 (2.0 GiB)
Interrupt:17

View 12 Replies View Related

Any Primary VPS Users

May 15, 2007

Anyone using this for VPS? Good or Bad?

View 14 Replies View Related

My Primary VPS Experience

Jun 22, 2007

My experience with them:

Signed up for my 1st VPS recently, after Primary VPS had initial problems setting up my CPanel VPS, they offered me 'free full management ' for 2 months and Free Security Installation. Nice i thought. On the 16th June, experienced around 12 hours of downtime, had not moved my main sites over to them at that time so didn't kick up any fuss.

After moving my main sites over to them, soon after and they all working ok, on Wednesday 20th June night, I requested this free security installation they offered and was told APF and BFD had been installed some time in the night.

Checking sites next morning (thursday 21st - coincidently same time everyone else was having problems) saw no sites were available, was getting 'server not found'. So started 'critical support ticket':

Quote:

Hello,

I went onto the internet this morning to find my websites/IP addresses down and my control panel inaccessible. It has now been 40 minutes and its still the same. God knows how long it may have down before i checked. I tried live support twice and both times i have been cut off/ no response. Please can this problem with my VPS and your live support system be looked at.

VPS ID: *****.vm
Dedicated IP(s): ***.**.***.***, ***.**.***.***, ***.**.***.***
User : *****
password : *****

This resulted in 20 hours of no sites for me. Same thing in the ticket, I would say, 'My IP addresses and sites are still down' and i would get response back, 'Your VPS is back up and running fine'. Great help that was!

14 hours after my 'critical' support ticket and not getting anywhere, finally speaking to someone in live support, they figured it was the firewall they had installed earlier was blocking access to everything. They excepted no responsibility for the time sites were offline or any loss of earnings saying it was my fault for not configuring the firewall.

Response was:

Quote:

The issue is that you did not request any ports to be open or any applications to be allowed through

I thought ok, maybe it was my fault, i'm new to VPS and didnt know i had to request ports to be open and no-one told/asked me either (but isnt that what managed hosting is for - to make them deal with everything).

Anyway, Regarding why it took them 14 hours to figure out the problem, Victor responded:

Quote:

You were not able to state your exact issue, so all we were able to go on wa guess work. So obviously it will take some time to figure out your issue if you do not tell us what it is exactly.

14 hours to figure it out why my IP's and sites were down because my original ticket was vague!?!

As someone new to VPS's i would think that this is there fault. But Victor clearly makes out that they are not to blame and it is all my fault! Everything is up and working fine now and I was at first surprised with the high levels of service and support but after experience, its its like banging your head against a brick wall chatting with these guys!

View 6 Replies View Related

Secondary IP Addresses Malfunction

Apr 18, 2009

I got 4 IP from server.lu

A friend install windows 2008 on top of the vmware.

Then I noticed that the connection is not very right.

So I go to network connection in the hope of changing the DNS.

I just right click the connection and found out that I lost my connection to the server.

Restarting the server allow me to ssh and ping the main IP but none of the secondary IPs work.

View 5 Replies View Related

How To Mount The Secondary Drive

Mar 29, 2009

The problem is that my hd is failed. Hoster setup new server, also installed the secondary drive but not mounted. So need advice how can i get my data off it?

View 3 Replies View Related

Etc/resolv.conf - Secondary Ns

May 20, 2008

My sites all respond very slow (VPS) at the initial loading, that's why I try to check all dns settings.

My current resolv.conf
nameserver 64.235.32.203
that is the ns of my hosting provider.

Would I have an advantage if I add another and if so can I simply add my own nameservers?

View 8 Replies View Related

Sendmail + Secondary Ip Address

Apr 14, 2008

How would I go about using sendmail with my server's secondary IP address?

It would seem that sendmail automatically sends with the primary

View 1 Replies View Related

MySQL On Secondary Harddisk

Mar 5, 2007

I've recently got a server with DA panel and a secondary SCSI 15K to put on mysql which I believe should improve the preformance.

View 1 Replies View Related

Generate Primary Zendid

Aug 9, 2008

How can you generate a Primary Zendid?

Here is what we get:

[root@test /]# cd /usr/local/Zend/bin/
[root@test bin]# ./zendid No primary IDs was detected. Try option 'allid' to see secondary IDs.
[root@test bin]# ./zendid allid
P:K66AJ-QD99H-R55T9-8LGHW
M:5S9EX-2JC3Q-CJ4E4-KFZPV
[root@test bin]#

Can a Primary Zendid be created? And if so, how?. This is on a Centos VPS with:

PHP 5.2.5 (cli) (built: Aug 1 2008 22:54:27)
Copyright (c) 1997-2007 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
with Zend Extension Manager v1.2.2, Copyright (c) 2003-2007, by Zend Technologies
with Zend Optimizer v3.3.0, Copyright (c) 1998-2007, by Zend Technologies

View 1 Replies View Related

Server Primary Domain And DNS

Aug 15, 2007

I got a new dedicated server, and I put the primary domain name to be zeonwebhosting.com.

However, when I setup the nameservers, and go to GoDaddy.com and NameCheap.com to change the nameservers on my domains, I get an "Errors were detected" on GoDaddy.com and a "nRRPResponseCode 531" on NameCheap.

I fixed everything in WHM and got a server administrator to fix some things for me, and it didn't work yet. Now I am thinking that the problem might not be with the server, but with the domain.

ZeonWebHosting.com is registered at GoDaddy.com, and since I was not sure what nameservers I should put as it is the primary domain name, I used the parked nameservers on GoDaddy, and used the Total DNS feature to change the A and MX Records to point to my server's IPs.

I tried putting the ns1.zeonwebhosting.com and ns2.zeonwebhosting.com DNSs on GoDaddy, but still I got the "Errors were detected" error. I tried almost everything possible. I even redid cPanel just to make sure that everything was OK with the cPanel configuration.

Also there is another problem with the server. I can't seem to be able to delete Nameservers from "Networking Setup > Nameserver IPs" in WHM. I get this message when trying to delete one of the nameservers:
"Sorry, the nameserver ip 66.79.191.196 cannot be removing since it is still registered with an ICANN register."

View 2 Replies View Related

Review - Veggiehost And Primary VPS

May 14, 2007

This is a side to side comparison review for the two VPS. Both of the plans I joined were low-end, unmanaged and cheap.

First, lets see the plans:

Veggiehost - 2 dual core Opteron @ 96MHz, 256MB guaranteed RAM, 24GB HDD, 300GB bandwidth, $13.95 / month

PrimaryVPS - 2 dual core Xeon @ 1500MHz, 192MB guaranteed RAM, 12GB HDD, 175GB bandwidth, $13.95 / month

The plan from PrimaryVPS is a little bit downgraded. While as they are offering opening and quarterly payment special offer, you can find 256MB/15GB plan at comparable price.

Now, lets see the standard unixbench result. Each VPS took two benchmarking, one in peak hour and one in non-peak hour:

VEGGIEHOST

PHP Code:

Start Benchmark Run: Fri Apr 27 22:18:37 HKT 2007TEST                                        BASELINE     RESULT      INDEXDhrystone 2 using register variables        376783.7   951163.3       25.2Double-Precision Whetstone                      83.1     1920.5      231.1Execl Throughput                               188.3      173.9        9.2File Copy 1024 bufsize 2000 maxblocks         2672.0     8716.0       32.6File Copy 256 bufsize 500 maxblocks           1077.0     1895.0       17.6File Read 4096 bufsize 8000 maxblocks        15382.0    46337.0       30.1Pipe Throughput                             111814.6    26523.6        2.4Pipe-based Context Switching                 15448.6     7468.6        4.8Process Creation                               569.3      508.5        8.9Shell Scripts (8 concurrent)                    44.8       40.8        9.1System Call Overhead                        114433.5    46879.2        4.1                                                                 =========     FINAL SCORE                                                      13.8Start Benchmark Run: Mon Apr 30 08:09:55 HKT 2007Dhrystone 2 using register variables        376783.7   950332.3       25.2Double-Precision Whetstone                      83.1     1900.7      228.7Execl Throughput                               188.3      177.7        9.4File Copy 1024 bufsize 2000 maxblocks         2672.0     3576.0       13.4File Copy 256 bufsize 500 maxblocks           1077.0      974.0        9.0File Read 4096 bufsize 8000 maxblocks        15382.0    22736.0       14.8Pipe Throughput                             111814.6    24180.3        2.2Pipe-based Context Switching                 15448.6     7454.4        4.8Process Creation                               569.3      535.8        9.4Shell Scripts (8 concurrent)                    44.8       44.7       10.0System Call Overhead                        114433.5    47260.9        4.1                                                                 =========     FINAL SCORE                                                      11.3 

PRIMARYVPS

PHP Code:

Start Benchmark Run: Thu May 10 22:12:25 HKT 2007 Dhrystone 2 using register variables        376783.7  5775633.2      153.3Double-Precision Whetstone                      83.1      900.7      108.4Execl Throughput                               188.3     1665.1       88.4File Copy 1024 bufsize 2000 maxblocks         2672.0    64448.0      241.2File Copy 256 bufsize 500 maxblocks           1077.0    19882.0      184.6File Read 4096 bufsize 8000 maxblocks        15382.0   284552.0      185.0Pipe Throughput                             111814.6   527467.7       47.2Pipe-based Context Switching                 15448.6   101403.6       65.6Process Creation                               569.3     4162.2       73.1Shell Scripts (8 concurrent)                    44.8      341.8       76.3System Call Overhead                        114433.5   622391.7       54.4                                                                 =========     FINAL SCORE                                                     101.2PRIMARYVPS #2Start Benchmark Run: Mon May 14 09:38:14 HKT 2007 Dhrystone 2 using register variables        376783.7  3725455.0       98.9Double-Precision Whetstone                      83.1      897.0      107.9Execl Throughput                               188.3     1170.3       62.2File Copy 1024 bufsize 2000 maxblocks         2672.0    51839.0      194.0File Copy 256 bufsize 500 maxblocks           1077.0    19404.0      180.2File Read 4096 bufsize 8000 maxblocks        15382.0   411673.0      267.6Pipe Throughput                             111814.6   497630.1       44.5Pipe-based Context Switching                 15448.6    64217.7       41.6Process Creation                               569.3     5718.9      100.5Shell Scripts (8 concurrent)                    44.8      376.7       84.1System Call Overhead                        114433.5   724635.8       63.3                                                                 =========     FINAL SCORE                                                      95.7 

There are few findings from the result:

1. PRIMARYVPS is faster in overall result from CPU, IO to OS. While I could not believe that some results from VEGGIEHOST is even slower than a P2-233 BASELINE machine.

2. Though VEGGIEHOST is slower, its performance is VERY STABLE in both peak hour and non-peak hour. This is because VEGGIEHOST is now using a "hard limit" to ensure its "equal share" CPU policy since late March. This was confirmed by their support once I encountered performance drop for half in April.

Next test is using Apache Benchmark (ab) to test the theoretical webpages processing limit and also see the network throughput (from Hong Kong) in peak hour:

VEGGIEHOST

PHP Code:

1. Simple HTML static page   - About 300pg/s2. Simple LAMP dynamic page  - About 50pg/s3. Complex LAMP dynamic page - About 5pg/s4. Longest total time for #1 - About 800ms5. Longest total time for #3 - About 2000ms6. Throughput from remote    - About 64KBPS (+/- 2KBPS) 

PRIMARYVPS

PHP Code:

1. Simple HTML static page   - About 800pg/s2. Simple LAMP dynamic page  - About 130pg/s3. Complex LAMP dynamic page - About 13pg/s4. Longest total time for #1 - About 10ms5. Longest total time for #3 - About 600ms6. Throughput from remote    - About 56KBPS (+/- 2KBPS) 

The most interesting thing from the Apache bench is that the worst case to process the web pages from VEGGIEHOST is highly fluctuating. This suspected to be due to the limitation of IO partitioning in VPS technology -- An issue affecting performance much in VPS while not yet fully solved.

When check closer for IO performance from unixbench, we have the following results:

PURE DISK ACCESS

PHP Code:

Sun V480/SE3320 RAID5# ./fsbuffer 10 ; ./fsdisk 10 ; ./fstime 1013850 Kbytes/sec write 256 bufsize 2000 max blocks48567 Kbytes/sec read 256 bufsize 2000 max blocks10327 Kbytes/sec copy 256 bufsize 2000 max blocks36000 Kbytes/sec write 4096 bufsize 2000 max blocks419994 Kbytes/sec read 4096 bufsize 2000 max blocks29000 Kbytes/sec write 1024 bufsize 2000 max blocks138274 Kbytes/sec read 1024 bufsize 2000 max blocks25303 Kbytes/sec copy 1024 bufsize 2000 max blocksSun V480/INTERNAL RAID5# ./fsbuffer 10 ; ./fsdisk 10 ; ./fstime 1054000 Kbytes/sec write 256 bufsize 2000 max blocks52872 Kbytes/sec read 256 bufsize 2000 max blocks24670 Kbytes/sec copy 256 bufsize 2000 max blocks411200 Kbytes/sec write 4096 bufsize 2000 max blocks427934 Kbytes/sec read 4096 bufsize 2000 max blocks175800 Kbytes/sec write 1024 bufsize 2000 max blocks154007 Kbytes/sec read 1024 bufsize 2000 max blocks77536 Kbytes/sec copy 1024 bufsize 2000 max blocksVeggie Host# ./fsbuffer 10 ; ./fsdisk 10 ; ./fstime 108850 Kbytes/sec write 256 bufsize 2000 max blocks15018 Kbytes/sec read 256 bufsize 2000 max blocks5387 Kbytes/sec copy 256 bufsize 2000 max blocks54400 Kbytes/sec write 4096 bufsize 2000 max blocks88029 Kbytes/sec read 4096 bufsize 2000 max blocks30400 Kbytes/sec write 1024 bufsize 2000 max blocks49496 Kbytes/sec read 1024 bufsize 2000 max blocks18038 Kbytes/sec copy 1024 bufsize 2000 max blocksPrimary Vps# ./fsbuffer 10 ; ./fsdisk 10 ; ./fstime 1078850 Kbytes/sec write 256 bufsize 2000 max blocks157190 Kbytes/sec read 256 bufsize 2000 max blocks51128 Kbytes/sec copy 256 bufsize 2000 max blocks444000 Kbytes/sec write 4096 bufsize 2000 max blocks1115200 Kbytes/sec read 4096 bufsize 2000 max blocks215200 Kbytes/sec write 1024 bufsize 2000 max blocks505957 Kbytes/sec read 1024 bufsize 2000 max blocks167760 Kbytes/sec copy 1024 bufsize 2000 max blocks 

Though RAID5 is slow, I did not realize before that a VPS can outperform a dedicated server!

Till now it seems all the facts from Primary VPS is excellent, while if you want to join, please consider if the following issues would be a limitation to you:

1. VEGGIEHOST is using a subscription based payment, which means you can terminate the plan once no longer needed. On the other hand, PrimaryVPS requires 30 days prior to termination.

2. VEGGIEHOST is far relax in VPS usage while PrimaryVPS restrict tighter. You can burst the CPU at VEGGIEHOST for 7x24 since it applied a hard limit (in this case hard limit is a good thing) while PrimaryVPS gives you a much higher burst CPU limit but the terms is that you cannot burst over 15% (?) CPU time for more than 5 minutes in any case. Also, VEGGIEHOST does not limit whatever purposes for your VPS while PrimaryVPS do not allow something like P2P in your VPS. This can ensure the system (particularly the IO) did not being pulled by some applications, which is good for those who do not run the P2P applications, while may not be suitable if you need to run it.

3. I have used VEGGIEHOST for 2 months and quite certain that the above results are reliable, while only used PrimaryVPS for 1 week, and since it is a new provider I could not tell if the box will be degraded when more participants to join later. I will post updated review few weeks later to see if this issue occurred.

View 15 Replies View Related

How To Format, Mount A Secondary HDD As /backup

Aug 19, 2008

I have tried the cPanel tool to mount, format, etc. My drive however, it has made my server crash after reboots.

I have to enter single user and remove the lines added to fstab so it will boot.

I tried using the tool again and it failed yet again, can I do it manually, and if so how.

I will have to redo the entire partition, so how do I erase everything first?

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved