Creating A CNAME Entry For DNS Tables

Feb 4, 2006

I apoligize in advance if this is the wrong place to post this thread.

I am trying to create a CNAME entry in my DNS tables and have no clue where to begin.

I have did a search but didnt find anything that gives reference on how to do it just how to fix errors.

Can anyone point me in the right direction to learning how to accomplish this task.

View 1 Replies


ADVERTISEMENT

Creating Temp Tables On Disk

May 7, 2007

In phpMyAdmin I see this:

Created_tmp_disk_tables 2,118 The number of temporary tables on disk created automatically by the server while executing statements. If Created_tmp_disk_tables is big, you may want to increase the tmp_table_size value to cause temporary tables to be memory-based instead of disk-based.
Created_tmp_files 0 How many temporary files mysqld has created.
Created_tmp_tables 5,637 The number of in-memory temporary tables created automatically by the server while executing statements.

I have tried upping tmp_table_size but it's no use. My my.cnf file:

Quote:

# Example MySQL config file for very large systems.
#
# This is for a large system with memory of 1G-2G where the system runs mainly
# MySQL.
#
# You can copy this file to
# /etc/my.cnf to set global options,
# mysql-data-dir/my.cnf to set server-specific options (in this
# installation this directory is /var/lib/mysql) or
# ~/.my.cnf to set user-specific options.
#
# In this file, you can use all long options that a program supports.
# If you want to know which options a program supports, run the program
# with the "--help" option.

# The following options will be passed to all MySQL clients
[client]
#password= your_password
port= 3306
socket= /var/lib/mysql/mysql.sock

# Here follows entries for some specific programs

# The MySQL server
[mysqld]
port= 3306
socket= /var/lib/mysql/mysql.sock
skip-locking
key_buffer = 384M
max_allowed_packet = 1M
table_cache = 384
sort_buffer_size = 2M
read_buffer_size = 2M
read_rnd_buffer_size = 8M
myisam_sort_buffer_size = 64M
thread_cache_size = 8
query_cache_size = 32M
# Try number of CPU's*2 for thread_concurrency
thread_concurrency = 8
tmp_table_size = 300M
max_tmp_tables=100

# Don't listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on Windows
# (via the "enable-named-pipe" option) will render mysqld useless!
#
#skip-networking

# Replication Master Server (default)
# binary logging is required for replication
log-bin

# required unique id between 1 and 2^32 - 1
# defaults to 1 if master-host is not set
# but will not function as a master if omitted
server-id= 1

# Replication Slave (comment out master section to use this)
#
# To configure this host as a replication slave, you can choose between
# two methods :
#
# 1) Use the CHANGE MASTER TO command (fully described in our manual) -
# the syntax is:
#
# CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,
# MASTER_USER=<user>, MASTER_PASSWORD=<password> ;
#
# where you replace <host>, <user>, <password> by quoted strings and
# <port> by the master's port number (3306 by default).
#
# Example:
#
# CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
# MASTER_USER='joe', MASTER_PASSWORD='secret';
#
# OR
#
# 2) Set the variables below. However, in case you choose this method, then
# start replication for the first time (even unsuccessfully, for example
# if you mistyped the password in master-password and the slave fails to
# connect), the slave will create a master.info file, and any later
# change in this file to the variables' values below will be ignored and
# overridden by the content of the master.info file, unless you shutdown
# the slave server, delete master.info and restart the slaver server.
# For that reason, you may want to leave the lines below untouched
# (commented) and instead use CHANGE MASTER TO (see above)
#
# required unique id between 2 and 2^32 - 1
# (and different from the master)
# defaults to 2 if master-host is set
# but will not function as a slave if omitted
#server-id = 2
#
# The replication master for this slave - required
#master-host = <hostname>
#
# The username the slave will use for authentication when connecting
# to the master - required
#master-user = <username>
#
# The password the slave will authenticate with when connecting to
# the master - required
#master-password = <password>
#
# The port the master is listening on.
# optional - defaults to 3306
#master-port = <port>
#
# binary logging - not required for slaves, but recommended
#log-bin

# Point the following paths to different dedicated disks
#tmpdir= /tmp/
#log-update = /path-to-dedicated-directory/hostname

# Uncomment the following if you are using BDB tables
#bdb_cache_size = 384M
#bdb_max_lock = 100000

# Uncomment the following if you are using InnoDB tables
#innodb_data_home_dir = /var/lib/mysql/
#innodb_data_file_path = ibdata1:2000M;ibdata2:10M:autoextend
#innodb_log_group_home_dir = /var/lib/mysql/
#innodb_log_arch_dir = /var/lib/mysql/
# You can set .._buffer_pool_size up to 50 - 80 %
# of RAM but beware of setting memory usage too high
#innodb_buffer_pool_size = 384M
#innodb_additional_mem_pool_size = 20M
# Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 100M
#innodb_log_buffer_size = 8M
#innodb_flush_log_at_trx_commit = 1
#innodb_lock_wait_timeout = 50

[mysqldump]
quick
max_allowed_packet = 16M

[mysql]
no-auto-rehash
# Remove the next comment character if you are not familiar with SQL
#safe-updates

[isamchk]
key_buffer = 256M
sort_buffer_size = 256M
read_buffer = 2M
write_buffer = 2M

[myisamchk]
key_buffer = 256M
sort_buffer_size = 256M
read_buffer = 2M
write_buffer = 2M

[mysqlhotcopy]
interactive-timeout

This server has 1GB of RAM, not a dedicated sql server though. RAM usage is low too, 567MB of RAM is being used right now total... is there something I'm overlooking?

View 0 Replies View Related

Fantastico Script Creating Databases But Not Tables

Oct 20, 2006

when fantastico applications get installed, for some reason they are creating the database, but none of the tables are installed.

View 6 Replies View Related

MySQL Doubt: More DB's & Less Tables || More Tables Less DB's

Nov 2, 2009

im planning on designing a webservice, it will have a lot of data, spread in many tables.

The problem is that there will be tables created constantly (around 5 each day..)

All tables/data will be accessed equally, so I dont know how to set up the system, to create multiple databases, and balance the number of tables equally on each database, or create less databases and have a lot of tables on each one.

Which one has more efficiency?

View 5 Replies View Related

CNAME Redirection To A URL?

May 28, 2008

Just a quick question, can i setup a cname to redirect user to a URL instead of domain.... like

mail.thedomain.com.incnamemail.google.com/a/thedomain.com

I have to do this on Windows server with IIS so i can't use mod_rewrite etc!

View 4 Replies View Related

How To Set A Record Ans Cname In WHM

Sep 3, 2007

I have a reseller account with canaca and i want to add some A records and Cname to some of domains!

i heard that i can do the from DNS ZONE option!

View 4 Replies View Related

How To Add CNAME For Domains.live.com

Jul 17, 2008

I'm new for cpanel

and I want to add CNAME for domains.live.com and the requiered information

DNS Record Type: CNAME
Host: 250953144
Value: domains.live.com

I enter edit dns zone
like the picture attached

I don't know if i should delete the www and mail or leave it like this please told me how to do to make it valid with domains.live.com

View 4 Replies View Related

CNAME Or A Record In DNS Zone?

Jan 14, 2008

i have just created a dns ZONE for my domain, but i dont know what to use for ftp service.

i looked up in cpanel dns zone records for the domain i created and it looks like this... i am confused what to use CNAME or A record for an FTP entry

ftp 14400 IN A <IP> (for sites on shared IP)
ftp 14400 CNAME domain.com. (for sites with dedicated ip)

what is the difference? what if i change to

ftp 14400 IN CNAME domain.com. (for sites on shared IP)
ftp 14400 A <IP> (for sites with dedicated ip)

Also, how many A records i can place in zone file?

View 3 Replies View Related

CNAME Map On Mydomain.com To Anotherdomain.com

Aug 27, 2008

I am simply wanting to map on mydomain.com to anotherdomain.com. So i setup a CNAME on mydomain.com. Once propagated mydomain is not being picked up and is defaulting to the cpanel successfully installed screen.

I have tried this on another of our servers and this does work.

So my question is: can you use a CNAME to map mydomain.com to anotherdomain.com without having to add the mydomain.com to the apache VirtualHost ServerAlias?

It does seem like you can as i have this working on one server - is there an apache setting somewhere to block this?

Thanks in advance!

View 6 Replies View Related

CNAME To Specific Ports

Jul 4, 2007

I'd like to know how I can use DNS to do something like make a CNAME record that points the same address to different addresses based on the port used.

mail.example.org on port 80 points to ghs.google.com
mail.example.org on port 995 points to pop.gmail.com
mail.example.org on port 587 poitns to smtp.gmail.com

View 3 Replies View Related

PowerAdmin - Not All Tables Are Ok

Dec 17, 2007

This is the error that i get when i run test_setup.php:

Not all tables are ok!

Sorry, but there are error(s) found in the following table(s): 'records' 'domains'.

Please fix these errors and run the script again.
---
whereas rest of the tables (users, users_seq and zones)have been created.

Did i forget some step where these tables were to be created?

How can i create these tables now?

View 1 Replies View Related

Managing Your Own CNAME Yourself On Shared Hosting?

Sep 13, 2008

Let's say I buy my domains from godaddy and have the DNS records pointed to the shared host.

From there, the shared host creates your CNAME records, or whatever you want to add to your domain name.

What happens if I wanted to control the CNAME records? Can I do this from godaddy? If so, how? Are there negatives to this method?

View 10 Replies View Related

Google Apps Custom Url, Cname And WHM

Mar 16, 2007

i am trying to use a custom url (example: mail.mydomain.com) for my google apps e-mail.

i can't seem to figure out how to set up the CNAME in WHM to allow this to occur and google apps' help function is not well ...

View 0 Replies View Related

Other People Using Cname Records To My Site

May 30, 2009

We have Livezilla tracking on our site, and saw some suspicious activity this afternoon from the Netherlands, about 5 connections from the same IP address, they now appear to have put in a cname record/copied our site for http://wiiee.nl/design.html to our site. Does anyone know what they're doing/trying to do?

View 6 Replies View Related

MX Entry

Dec 24, 2007

Currently i am running my webhosting at server A and email hosting at server B.

Possible for me to make the email mx entry available on both server instead server B?

View 1 Replies View Related

Why MySQL Tables Crash

Jul 15, 2009

This is something i was wondering about and never found any answers.

Based on your experience, what are the most common reasons mysql tables crash?

View 9 Replies View Related

Difference Between A Cname Record And A Domain Pointer

Dec 17, 2006

I am seriously confused mainly because of the way it was explained in my training at work. Can someone please give me an explantion of the difference between creating a cname record and using a domain pointer? My understanding is that they both effectively do the same thing which is allow one ip address to be used for different domains.

Extra marks given for an easy to understand analogy as i'm definately a visual learner.

View 1 Replies View Related

CNAME Email Bounce Back Errors

Oct 23, 2008

The Non-Profit I work for uses IXWebhosting for our webhost and to manage email accounts. For the past 2 months whenever we send emails to anyone @baaqmd.gov, we receive CNAME bounceback errors.
I have contacted IXWebhosting and they say that their DNS server's aren't registering baaqmd.gov and that I need to contact baaqmd.gov. Well I've been in constant contact with baaqmd.gov's IT guy and they are receiving emails just fine from outside agencies. In fact, when I send a test email using GMAIL to baaqmd.gov, they receive it just fine.

To further confuse me, we receive emails fine from BAAQMD.gov.

View 10 Replies View Related

Deadly DNS Entry

Jul 7, 2007

I recently setup a few new webservers, had everything working fine, I am giving each website a dedicated IP, I was trying to tweak the DNS output on dnsstuff.com, I was getting a warning for:

"Mail server host name in greeting"

So, I added a "a entry" under the particular domains DNS to point to the main server IP, that did take care of the "mail server host name" but come to find out that really screwed up alot of stuff..

For instance, the site that has the dedicated IP and the new "a entry" will not work now unless I change the sites IP in the WHM to point to the main host IP, If I change it back to the dedicated IP or any other dedicated IP, it just gives a list of "dir files" for that domain.

Is there anyway to get rid of this "a entry" that I have added for that domain to take it back to normal.

Also, if I take a domain name that is already in the system and working fine with its own dedicated IP, and try and move it to a new dedicated IP it messes that domain name up also, and then can only be accessible by changing it back to the main server IP..

View 6 Replies View Related

Tables Grow In Size And Sometime And Need To Use RAID 5

Nov 2, 2009

I have a database which is growing to have about 100 tables. These tables will grow in size and sometime I will need to use RAID 5, I am told by my server provider.

My questions are:-

1. if these other servers are mirrors, should I have the database stored on each server?

2. when one server gets too busy, does the RAID query a lesser-used server so as not to bog down the first one?

3. Or, do I need to have different content in each db on each server so a query gets what it needs form each?

View 6 Replies View Related

Any Way To Use Mysqlcheck With Custom Tmp Tables Folder

Mar 24, 2009

I am using /usr/bin/mysqlcheck --all-databases --check --auto-repair to check all MySQL DBs every day via cron. But sometimes when the DB crash and is being repaired the tmpdir = in /etc/my.cnf is getting full 100%. Is it any smart way to use some other tmp folder when repairing the DB tables like that?

View 6 Replies View Related

Optimize All Tables In A MySQL Database

Oct 29, 2008

how exactly it helps?

mysqlcheck -o -u...

Like what it does to "optimize" them? Does it really help?

View 7 Replies View Related

Watchguard Firebox Vs Linux IP Tables Box

Mar 6, 2008

I am considering on implementing a new firewall in our colo which would have about 10 servers behind it which generates on averages 2.314 megabits/sec for everything.

I am looking at the new Watchguard x750e running version 10 of Fireware which seem like a good fit without breaking the bank but I have also thought of simply implementing a Poweredge server running CentOS and running an IPtables config to provide firewall services.

Anybody have any Feedback on the Watchguard unit or use a Watchguard product in their setup and can comment?

View 5 Replies View Related

Convert All Mysql Tables To Utf8

Jul 8, 2008

I have a vbulletin (3.7.2) board with many mods installed (nearly 70) without a problem.

However, upon installing one new mod I got a database error stating:

MySQL Error : Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (latin1_general_ci,IMPLICIT) for operation '='

How do I change ALL tables in one shot (or sql query via phpmyadmin) from the two different collations to utf8?

Also, is utf8 suggested or better than latin1?

View 3 Replies View Related

Is S2U-MSFC2 Able To Handle 2 Full Tables

Jan 7, 2007

Is S2U-MSFC2 able to handle 2 full internet routing tables or even 3?

and what is the difference between

WS-X6408 and WS-X6408A?

WS-X6348-RJ-45 and WS-X6548-RJ45?

View 14 Replies View Related

Are There Any Ways To Replicate Just A Few Tables On Mysql

Dec 21, 2007

Is there no possible way I can slave just a few tables in mysql? instead of slaving the entire table on the main database server.

View 1 Replies View Related

Plesk 12.x / Windows :: Change Customer Name CNAME Through Batch

Nov 2, 2014

I am trying to change the cname through a batch.. It is successfully done for English language but I want to use Arabic language. When I am using Arabic it appear like this "????".

View 1 Replies View Related

Server Deletes A Entry Every Day

Jul 26, 2008

I'm on a VPS and every day I get the following message if I loginto WHM:

The server was unable to lookup an an A entry for its hostname (vps.glse.net). This is generally because the entry was never added. However this could also be the result of your nameserver(s) being down. If you would like to attempt to automatically add the entry

After that I add the A entry, and setup the Resolver and restart BIND, after that it is usually working again until I have to do it again the next day.

The hostname (vps.xxxx.net) resolves to . It should resolve to 72.18.xxx.xxx. Please be sure to correct /etc/hosts as well as the 'A' entry in zone file for the domain.

Some are all of these problems can be caused by
/etc/resolv.conf being setup incorrectly. Please check this file if you
believe everything else is correct.

my /etc/hosts

72.18.xxx.xcentos-cp--template
72.18.xxx.xxxvps.xxxx.net vps
72.18.xxx.xcentos-cp--template.xxx.com centos-cp--template
72.18.xxx.xxxvps
127.0.0.1localhost

my resolver.conf

nameserver xx.xxx.xx.xxx

=> I tried adding the nameservers from the server here but that didn't help so I had to use that of the hosting company

The A entry is empty, as stated in the mail,

View 9 Replies View Related

Low Cost Entry VPS Pan With CPANEL

Sep 4, 2007

I do not need more than 1go space / 250go bandwith. Do you think I can have this for about 20-25 $?

View 3 Replies View Related







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