My DNS Server Is Lame

Aug 14, 2007

The messages in my logs indicate that my DNS server is configured incorrectly.

lame server resolving 'pobrdesign.com' (in 'pobrdesign.com'?): 209.40.198.107#53
lame server resolving 'pobrdesign.com' (in 'pobrdesign.com'?): 209.40.197.108#53

Here is a complete log from restarting named:

Code:
shutting down
stopping command channel on 127.0.0.1#953
no longer listening on 127.0.0.1#53
no longer listening on 209.40.198.107#53
no longer listening on 209.40.197.108#53
exiting
zone 0.in-addr.arpa/IN/localhost_resolver: loaded serial 42
zone 0.0.127.in-addr.arpa/IN/localhost_resolver: loaded serial 1997022700
zone 255.in-addr.arpa/IN/localhost_resolver: loaded serial 42
zone 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa/IN/localhost_resolver: loaded serial 1997022700
zone localdomain/IN/localhost_resolver: loaded serial 42
zone localhost/IN/localhost_resolver: loaded serial 42
zone pobrdesign.com/IN/external: loaded serial 2007081405
zone pobrdesign.com/IN/external: sending notifies (serial 2007081405)
client 209.40.198.107#45926: view localhost_resolver: received notify for zone 'pobrdesign.com': not authoritative
running

I configured my server through WHM initially. Here is my named.conf

Code:
1 include "/etc/rndc.key";
2
3 controls {
4 inet 127.0.0.1 allow { localhost; } keys { "rndckey"; };
5 };
6
7
8 options
9 {
10 /* make named use port 53 for the source of all queries, to allow
11 * firewalls to block all ports except 53:
12 */
13 query-source port 53;
14
15 // Put files that named is allowed to write in the data/ directory:
16 directory "/var/named"; // the default
17 dump-file "data/cache_dump.db";
18 statistics-file "data/named_stats.txt";
19 memstatistics-file "data/named_mem_stats.txt";
20 };
21
22 logging
23 {
24 /* If you want to enable debugging, eg. using the 'rndc trace' command,
25 * named will try to write the 'named.run' file in the $directory (/var/named).
26 * By default, SELinux policy does not allow named to modify the /var/named directory,
27 * so put the default debug log file in data/ :
28 */
29 channel default_debug {
30 file "data/named.run";
31 severity dynamic;
32 };
33 };
34
35
36 // All BIND 9 zones are in a "view", which allow different zones to be served
37 // to different types of client addresses, and for options to be set for groups
38 // of zones.
39 //
40 // By default, if named.conf contains no "view" clauses, all zones are in the
41 // "default" view, which matches all clients.
42 //
43 // If named.conf contains any "view" clause, then all zones MUST be in a view;
44 // so it is recommended to start off using views to avoid having to restructure
45 // your configuration files in the future.
46
47 view "localhost_resolver"
48 {
49 /* This view sets up named to be a localhost resolver ( caching only nameserver ).
50 * If all you want is a caching-only nameserver, then you need only define this view:
51 */
52 match-clients { localhost; };
53 match-destinations { localhost; };
54 recursion yes;
55
56 zone "." IN {
57 type hint;
58 file "/var/named/named.ca";
59 };
60
61 /* these are zones that contain definitions for all the localhost
62 * names and addresses, as recommended in RFC1912 - these names should
63 * ONLY be served to localhost clients:
64 */
65 include "/var/named/named.rfc1912.zones";
66 };
67
68 view "internal"
69 {
70 /* This view will contain zones you want to serve only to "internal" clients
71 that connect via your directly attached LAN interfaces - "localnets" .
72 */
73 match-clients { localnets; };
74 match-destinations { localnets; };
75 recursion yes;
76
77 zone "." IN {
78 type hint;
79 file "/var/named/named.ca";
80 };
81
82 // include "/var/named/named.rfc1912.zones";
83 // you should not serve your rfc1912 names to non-localhost clients.
84
85 // These are your "authoritative" internal zones, and would probably
86 // also be included in the "localhost_resolver" view above :
87 };
88
89 view "external"
90 {
91 /* This view will contain zones you want to serve only to "external" clients
92 * that have addresses that are not on your directly attached LAN interface subnets:
93 */
94 match-clients { !localnets; !localhost; };
95 match-destinations { !localnets; !localhost; };
96
97 recursion no;
98 // you'd probably want to deny recursion to external clients, so you don't
99 // end up providing free DNS service to all takers
100
101 // all views must contain the root hints zone:
102 zone "." IN {
103 type hint;
104 file "/var/named/named.ca";
105 };
106
107 // These are your "authoritative" external zones, and would probably
108 // contain entries for just your web and mail servers:
109
110 // BEGIN external zone entries
111
112 zone "pobrdesign.com" {
113 type master;
114 file "/var/named/pobrdesign.com.db";
115 };
116 };
Here is my /var/named/pobrdesign.com.db file:

Code:
; cPanel 11.6.0-BETA_15058
; Zone file for pobrdesign.com
$TTL 7200
@ 86400 IN SOA server.pobrdesign.com. support.pobrdesign.com. (
2007081405 ; serial, todays date+todays
86400 ; refresh, seconds
7200 ; retry, seconds
3600000 ; expire, seconds
86400 ) ; minimum, seconds

pobrdesign.com. 86400 IN NS server.pobrdesign.com.
pobrdesign.com. 86400 IN NS server2.pobrdesign.com.

pobrdesign.com. IN A 209.40.198.107

localhost.pobrdesign.com. IN A 127.0.0.1

mail IN CNAME pobrdesign.com.
www IN CNAME pobrdesign.com.
ftp IN A 209.40.198.107
pobrdesign.com. IN MX 1 ASPMX.L.GOOGLE.COM.
pobrdesign.com. IN MX 10 ASPMX5.GOOGLEMAIL.COM.
pobrdesign.com. IN MX 5 ALT1.ASPMX.L.GOOGLE.COM.
pobrdesign.com. IN MX 6 ALT2.ASPMX.L.GOOGLE.COM.
pobrdesign.com. IN MX 11 ASPMX4.GOOGLEMAIL.COM.
pobrdesign.com. IN MX 12 ASPMX3.GOOGLEMAIL.COM.
pobrdesign.com. IN MX 13 ASPMX2.GOOGLEMAIL.COM.
server 14400 IN A 209.40.197.108
server2 14400 IN A 209.40.198.107

glaring issue that is keeping my DNS from working.

View 1 Replies


ADVERTISEMENT

Lame Server Resolving

Jul 23, 2008

i got too many logs on Lame-server resolving i my log.

every second about 10-20.

Jul 23 11:31:33 ns1 named[15967]: lame server resolving '92-49-205-1.dynamic.peoplenet.ua.mydnsdomain.net' (in 'mydnsdomain.net'?): my.ip.add.ress#53
Jul 23 11:31:33 ns1 named[15967]: lame server resolving 'www.mydomain.com.mydnsdomain.net' (in 'mydnsdomain.net'?): my.ip.add.ress#53

so i turned of the logging and start search the web on possible reasons. However the only once i found where mostly "in case of the domain is not hosted on the server". But in my case the domains in questions are on my server and show in the log as lame server resolv.

They say it has to do with server is not authoritive for that domain.

So how i am gonna fix this?

With digs, and nslookups, i got not errors at all.

But if i try to change a DNS i got a message back from a provider saying that the domains is broken.

View 1 Replies View Related

Weird Named Errors Available9 Named[7562]: Lame Server Resolving

Nov 25, 2008

I see some errors about lame servers in messages log,and i noticed that look like adress of isp surfer domain beacuse i noticed domain of my isp listed also as lame name server.Here is example:

Nov 24 03:46:55 available9 named[7562]: lame server resolving '247.100.51.72.in-addr.arpa' (in '100.51.72.in-addr.arpa'?): 205.214.192.202#53
Nov 24 03:46:55 available9 named[7562]: lame server resolving '247.100.51.72.in-addr.arpa' (in '100.51.72.in-addr.arpa'?): 205.214.192.201#53
Nov 24 03:46:56 available9 named[7562]: lame server resolving '247.100.51.72.in-addr.arpa' (in '100.51.72.in-addr.arpa'?): 205.214.192.202#53
Nov 24 03:46:56 available9 named[7562]: lame server resolving '247.100.51.72.in-addr.arpa' (in '100.51.72.in-addr.arpa'?): 205.214.192.201#53
Nov 24 07:19:51 available9 named[7562]: FORMERR resolving 'ducksimilar.com/NS/IN': 203.93.208.87#53
Nov 24 07:19:51 available9 named[7562]: FORMERR resolving 'ducksimilar.com/NS/IN': 91.208.228.150#53
Nov 24 07:19:52 available9 named[7562]: FORMERR resolving 'host1.experienceexcept.com/AAAA/IN': 203.93.208.87#53
Nov 24 07:19:52 available9 named[7562]: FORMERR resolving 'host2.experienceexcept.com/AAAA/IN': 203.93.208.87#53
Nov 24 07:19:52 available9 named[7562]: FORMERR resolving 'host1.experienceexcept.com/AAAA/IN': 91.208.228.150#53
Nov 24 07:19:52 available9 named[7562]: FORMERR resolving 'host2.experienceexcept.com/AAAA/IN': 91.208.228.150#53
Nov 24 07:19:52 available9 named[7562]: FORMERR resolving 'host1.experienceexcept.com/AAAA/IN': 203.93.208.87#53
Nov 24 07:19:52 available9 named[7562]: FORMERR resolving 'host2.experienceexcept.com/AAAA/IN': 203.93.208.87#53
Nov 24 07:19:52 available9 named[7562]: FORMERR resolving 'host1.experienceexcept.com/AAAA/IN': 91.208.228.150#53
Nov 24 07:19:52 available9 named[7562]: FORMERR resolving 'host2.experienceexcept.com/AAAA/IN': 91.208.228.150#53

View 1 Replies View Related

What Is Lame Nameserver And How To Fix It

Jul 3, 2007

First of all, is there any best way to set DNS on our VPS? How to do that? I tried to follow the tutorial and even asked the VPS company to do it for me (two different company) but when they do that, I checked with DNSStuff.com, this is the result I get.

Error 1
ERROR: You have one or more lame nameservers. These are nameservers that do NOT answer authoritatively for your domain. This is bad; for example, these nameservers may never get updated. The following nameservers are lame:

Error2
ERROR: One or more of the nameservers listed at the parent servers are not listed as NS records at your nameservers. The problem NS records are:

But my reseller account with another company show no such problem. At first I thought my first VPS company didn't know what they do, but it could not be that both company didn't know what they are doing when setting up the DNS of my VPS right?

So, there must be something that I need to say to them, so the lame nameserver error will disappear.

View 3 Replies View Related

Lame Name Servers

Oct 22, 2007

I have two servers in one of my datacenters that are giving off lame name servers. I have tried everything I could think of, as well as everything I could find online to fix these issues. Can anyone point me in a direction?

View 14 Replies View Related

Lame Nameservers, NOA Failed ... And A Lot More

Jul 3, 2007

I just changed the server, and I can't make the new to work.

The server is CentOS 5 with WHM/cPanel.

The problem seems to be something with DNS / Nameservers - because the server doesn't resolve the domains.

Here is /etc/hosts:

Code:
# Do not remove the following line, or various programs
# that require network functionality will fail.
85.17.174.68 sv1.byteserv.net sv1
127.0.0.1 localhost
Here is /etc/named.conf:

Code:
include "/etc/rndc.key";
controls {
inet 127.0.0.1 allow { localhost; } keys { "rndc-key"; };
};
acl "trusted" {
127.0.0.1; 85.17.174.68; 85.17.174.70;
};
options
{
query-source port 53;
version "Top Secret";
dump-file "data/cache_dump.db";
statistics-file "data/named_stats.txt";
memstatistics-file "data/named_mem_stats.txt";
allow-recursion { trusted; };
allow-notify { trusted; };
allow-transfer { trusted; };
};
logging
{
channel default_debug {
file "data/named.run";
severity dynamic;
};
};
view "localhost_resolver"
{
match-clients { localhost; };
match-destinations { localhost; };
recursion yes;
zone "." IN {
type hint;
file "/var/named/named.ca";
};
include "/var/named/named.rfc1912.zones";
};
view "internal"
{
match-clients { localnets; };
match-destinations { localnets; };
recursion yes;
zone "." IN {
type hint;
file "/var/named/named.ca";
};
};
view "external"
{
match-clients { !localnets; !localhost; };
match-destinations { !localnets; !localhost; };
recursion no;
zone "." IN {
type hint;
file "/var/named/named.ca";
};
zone "sv1.byteserv.net" {
type master;
file "/var/named/sv1.byteserv.net.db";
};
zone "byteserv.net" {
type master;
file "/var/named/byteserv.net.db";
};
zone "bujorel.es" {
type master;
file "/var/named/bujorel.es.db";
};
zone "directesa.com" {
type master;
file "/var/named/directesa.com.db";
};
zone "directoriospro.com" {
type master;
file "/var/named/directoriospro.com.db";
};
zone "gabiemi.com" {
type master;
file "/var/named/gabiemi.com.db";
};
zone "logisticexpress.es" {
type master;
file "/var/named/logisticexpress.es.db";
};
zone "windowsue.com" {
type master;
file "/var/named/windowsue.com.db";
};
};
The domain is www.byteserv.net
Here is an report:
[url]

And here it says I don't have an "A record for sv.byteserv.net" - but from cPanel I added the A record - or it should be added.
[url]

View 4 Replies View Related

Any Cpanel/paypal Hosts With SOX And LAME?

Jan 8, 2007

I NEED a Php host with SOX and LAME software already installed, SHARED HOSTING, i know its out there, ofcourse i need a good amount of bw, thanks!

View 2 Replies View Related

How To Install Ffmpeg, Ffmpeg-PHP, Mplayer, Mencoder, Flv2tool, LAME MP3 Encoder

Oct 21, 2009

When i try to install all those things i am getting error...i am following the things given in below link but i am not to excute this svn command

[url]

View 6 Replies View Related

Improve Performance- Web Server, SSH Server, And Mail Server

May 8, 2007

I've got a VPS which is serving as the main server for a number of sites. Web Server, SSH Server, and Mail Server.

What I've got running:

Apache2, PHP5, MySQL5, Dovecot, Postfix

One of the sites is a growing forum with a MASSIVE photo album. This is the site where I notice the most slowness.

Changing the server software is not an option - Only optimization.

Quote:

Originally Posted by httpd.conf

ServerTokens OS
ServerRoot "/etc/httpd"
PidFile run/httpd.pid
Timeout 300
KeepAlive Off
MaxKeepAliveRequests 100
KeepAliveTimeout 5
<IfModule prefork.c>
StartServers 8
MinSpareServers 8
MaxSpareServers 13
ServerLimit 256
MaxClients 256
MaxRequestsPerChild 50
</IfModule>
<IfModule worker.c>
StartServers 2
MaxClients 150
MinSpareThreads 25
MaxSpareThreads 75
ThreadsPerChild 25
MaxRequestsPerChild 0
</IfModule>
Listen 80
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule auth_digest_module modules/mod_auth_digest.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authn_alias_module modules/mod_authn_alias.so
LoadModule authn_anon_module modules/mod_authn_anon.so
LoadModule authn_dbm_module modules/mod_authn_dbm.so
LoadModule authn_default_module modules/mod_authn_default.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule authz_owner_module modules/mod_authz_owner.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_dbm_module modules/mod_authz_dbm.so
LoadModule authz_default_module modules/mod_authz_default.so
LoadModule ldap_module modules/mod_ldap.so
LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
LoadModule include_module modules/mod_include.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule logio_module modules/mod_logio.so
LoadModule env_module modules/mod_env.so
LoadModule ext_filter_module modules/mod_ext_filter.so
LoadModule mime_magic_module modules/mod_mime_magic.so
LoadModule expires_module modules/mod_expires.so
LoadModule deflate_module modules/mod_deflate.so
LoadModule headers_module modules/mod_headers.so
LoadModule usertrack_module modules/mod_usertrack.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule mime_module modules/mod_mime.so
LoadModule dav_module modules/mod_dav.so
LoadModule status_module modules/mod_status.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule info_module modules/mod_info.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule dir_module modules/mod_dir.so
LoadModule actions_module modules/mod_actions.so
LoadModule speling_module modules/mod_speling.so
LoadModule userdir_module modules/mod_userdir.so
LoadModule alias_module modules/mod_alias.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule cache_module modules/mod_cache.so
LoadModule suexec_module modules/mod_suexec.so
LoadModule disk_cache_module modules/mod_disk_cache.so
LoadModule file_cache_module modules/mod_file_cache.so
LoadModule mem_cache_module modules/mod_mem_cache.so
LoadModule cgi_module modules/mod_cgi.so
Include conf.d/*.conf
User apache
Group apache

Quote:

Originally Posted by my.cnf

[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
# Default to using old password format for compatibility with mysql 3.x
# clients (those using the mysqlclient10 compatibility package).
old_passwords=1

[mysql.server]
user=mysql
basedir=/var/lib

[mysqld_safe]
log-error=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid

View 8 Replies View Related

Remote Upload To Server (url/server To Server)

Mar 7, 2009

I looked a lot - can not find solution ....

I want to transfer a file from [url]to [url]or [url]Without it will pass my localcomputer (slow upload)

It can be also a script i will install like this one - this is only for images
[url](remote)

View 7 Replies View Related

Plesk 11.x / Windows :: Don't Have Root Access To Server As It Is A Webfusion Dedicated Server

Oct 16, 2013

I have Plesk 11.5 (service provider mode) on a Windows 2008 server IIS7.Most of my sites are developed in .asp and therefore i use a custom 500-100.asp error page that check s the IP of the visitor then displays either a friendly error, or if its my IP a full error of what has happened (it also emails me the error). This allows me to debug pages easily whilst developing and to keep an eye on anyone trying SQL Injection hacks on my sites (as the error and email also have session variables and IP address).I dont have root access to the server as it is a Webfusion dedicated server.I have following the Plesk documentation -

1) Switch on custom errors for the subscription
2) Look in virtual directories and navigate to error documents
3) Find the error in question (500:100) and change it to point at either a file or URL

FILE - I had the data centre add in the 500-100.asp error page in to the virtual template so that my page is available in the list of virtual files - this didn't work but that maybe because its not a static page??

URL - when i add the path it says its incorrect, if i add a fully qualified address, it accepts it but it doesn't work.give me a specific example of the URL that can be entered relative to the root as the format in the documentation isn't accepted. The last step is to restart IIS which is also an issue as i cant seem to do this from the Plesk panel..It is as if it isn't catching the 500:100 error, and only catching the general 500 error??

View 1 Replies View Related

Urchin 5 / Google A . Transfering From Server To Server (Serial Already Activated)

Nov 21, 2006

I am currently running Google Analytics/Urchin 5 (v5.7.02), on a server, the server has started to act up, (on its last legs etc) and now I am trying to transfer the Urchin Software to a new server, where it would work effectively.

However upon installing the urchin software on the new server and running it (localhost:9999), I am presented with An Action Items Page, and these following choices

Obtain Demo License
Buy License
Activate Pre-Purchased License

I choose ‘Activate Pre-Purchased License’ pop in the Serial number and complete the registration then…

---------------------------------------------------------
Urchin Licensing Center -- Error!

An error has occured during your transaction, please use the back button and correct the problem. The specific error message is:

• Unable to generate a license. Some possible reasons:

Your serial code is currently active <<< How do I disable it and use it on another server?
---------------------------------------------------------

So all I want to do is deactivate the serial and reactivate it on another server.

Does anyone have experience with this or a similar problem or have a solution to this problem. Any help be most appriciated.

Or even a Contact Number so that i can get some one over the phone!

View 2 Replies View Related

Cpanel Domain Name Server (DNS) Setting For Email On 2 Seperate Server

Nov 7, 2009

This is the scenario, domain.com are setup on server1, however server2 also has the same profile of domain.com as we use ns3 and ns4 using domain.com. This works fine with the nameserver setup on server2.

However I encounter problems as the emails from server2 won't reach server1 as there are duplicate profile on server2.

My question is how do I setup the DNS in cpanel/whm from server2 so the emails from server2 will reach server1?

Server1 (www.domain.com)
ns1.domain.com
ns2.domain.com

Server2
ns3.domain.com
ns4.domain.com

View 6 Replies View Related

File Server Setup With Nginx...how Do I Choose The Config For The Server

Apr 22, 2009

I just want to use a server for file sharing, it will have nginx and that's it. I'm looking at centos, or freebsd, but I been using centos forever now and I'm not sure how to use freebsd, should I just stay with centos?

Do I tell my hosting provider to just install the OS and give me ssh action and that's it? Don't install any control panels or any other stuff? I want one domain and one subdomain on it though and ftp action.

View 8 Replies View Related

Remote Spamassian With Multiple Mail Server (Smartermail Server)

May 12, 2009

Remote Spamassassin for Multiple Smartermail Server

I want to setup Remote Spamassassin(On Linux) for Multiple Smartermail servers. I want to the setup the spamassassin on a linux box

How i can setup this with multiple smartermail servers.

View 6 Replies View Related

How To Tansfer Backup Files From Linux Server To Windows Server

Jul 4, 2007

what is the fast and best way?

View 4 Replies View Related

Plesk 12.x / Linux :: Full Server Migration To New Server With Same Hostname?

Jul 20, 2015

I'm wondering whether it is possible to perform a full server migration to a new Plesk server with the same hostname or will Plesk give an error about the hostname being the same?

The new server would not be accessible by hostname (only via IP) until DNS and glue records were changed after the migration.

View 1 Replies View Related

Cheap European Server For Small Game Server

Aug 31, 2008

I've been developing a small 2D MMORPG lately. I bought a VPS to run the server on a few days ago and sadly it doesn't work so well. Sometimes the loads go pretty high (afaik not caused by me) and MySQL freezes, causing the server to just wait for MySQL to unlock, hanging all the players around on the map. Not a good thing.

Anyway, the game is very small scale, and I'm not planning to have more than maybe 30-50 players online. It does not suck up much CPU, I had ~10 guys online and loads stayed down at 0.00 on the VPS box.

Problem with getting a dedicated is our very low budget. As I'm still underage and living at home hammering my pc and don't have any real incomes, we're talking numbers like $ 30 - $ 50 USD per month - it's really hard to find for that price in Europe.

Requirements:
Monthly payment, $ 30 - $ 50 / month, no setup (or very small setup, like $ 20)
10Mbit/s or faster connection, 100GB traffic should do
500MHz CPU is all cool
512MB or more RAM
5GB diskspace is enough
Has to be in Europe due to ping times (< 100ms)
Linux, Debian 4.0 prefered

If anyone knows where I could get something like this for a low price, $ 30 to $ 50 USD, it'd be great.

View 12 Replies View Related

DNS Domain Name Server Manager In Windows Server 2008

Aug 28, 2009

I have been searching everywhere trying to find a tutorial but It is not going anywhere. Basically I need to create 2 nameservers for Godaddy and pretty much so when i type http://mysite.com it goes to my site. I can access everything from http://myip and everything works. Now is there a step by step on how to actually do it in the DNS Manager? I need help like what IP address do I use is it the router ip? The external IP?

View 7 Replies View Related

Shift Email Accounts Data To One Server To Another Server

Mar 2, 2009

i want to shift my domain to one server to another server and the problem is how can i shift my email accounts data to one server to another server.

View 8 Replies View Related

Worth Upgrading To Quadcore Server (win2003 Server)?

Dec 8, 2008

Site is currently running on a single code single cpu p4 server. Am thinking of upgrading to a quad core Xeon server.

My site is pretty dynamic with lots of hits to php / mysql, and has trouble keeping up with the requests sometimes. Would a quadcore Xeon significantly help?

Server Software:
Windows 2003 Server
php 5.2.6
apache 2
mysql 4.1

Current Setup:
P4 2.8 single core/cpu.

Proposed setup
Xeon 3210 quadcore

I guess my confusion lies in the following:

1. Can win2003 server make use of the quadcores?
2. Does php / apache / mysql make use of the quadcores?
3. Will i see a significant increase in the amount of pages i can serve?

View 5 Replies View Related

Move SSL Certificate From CPanel Server To Plesk Server

Oct 23, 2009

I need to move an SSL certificate from a cPanel server to a Plesk server.

View 3 Replies View Related

Difference Between A Virtual Private Server And A Dedicated Server?

Feb 11, 2009

What is the difference between a virtual private server and a dedicated server?

View 8 Replies View Related

Converting A Dedicated Server Into A Flash Media Server

May 10, 2009

I am going to be buying a dedicated server from kimsufi Most likely the 2XL Package.

My streamers will be using my server aswell, On weekends we will be running 3-4 streams at a time, weekdays 1-2 at a time.

Spreading all the streams out, at anyone time we will have 300 viewers.

I need to know your advice on this before i go spending money.

How do i convert my dedi into a flash media server, i need red5 or something, thats all i know so far. My streamers wil be streaming to server with FME, And i also want it coded so that my streams can only be embedded on my site.

Basically i dont have a clue where to start, how long would it take me to set up etc....

In addition, what kind of server do i need, windows / linux / traffic / burstable / standard etc..

View 9 Replies View Related

Samba Server :: Can Linux And Windows Exist On The Same Server?

Jan 10, 2008

I have a linux server for a video sharring site

The video encoder that I prefer to use will only work in a windows enviorment

The windows server would pass off the converted video to the Linux server.

Will a Samba server for Linux allow a Linux machine to connect and share files with a Windows machine work for this application.

Although it's probably a dumb question but can Linux and Windows exist on the same server?

View 3 Replies View Related

FTP Server For Windows Server 2008 Standard Edition?

Dec 1, 2008

I am not using IIS and the built FTP server. Is ther other recommended FTP server to use in a windows 2008 dedicated server?

View 5 Replies View Related

Mail Server Setup On Fedore Core 6 Server

Jan 1, 2008

for setup and configuration instructions for setting up mail server on a Fedora Core 6 server. I googled it and most of the links are described with steps while installing OS, but i need to configure a mail server on a server where my site is already running.

View 1 Replies View Related







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