Mysql: Copying To Tmp Table

May 18, 2009

mysql: Copying to tmp table, what causes that?

My server is majorly overloading and mysql is atop the cpu, and when I do a processlist there are about 20 copying to tmp table processes.

View 3 Replies


ADVERTISEMENT

Fixing "Copying To Tmp Table"

Jul 12, 2009

I've noticed I've been getting a lot of "Copying to tmp table" and from a google search this is bad. Any idea on how I can fix this in my shared hosting environment?

Running MySQL 5.0.81 on CPanel.

View 2 Replies View Related

Copying Mysql Db In Cpanel

Oct 18, 2009

is there a way to copy mysql from an existing db, and then renaming it to another name?

I would like to copy my current db from a live forum site, and because I got a test forum but I need that test forum to use my current live db...but i want it to use a copy of the live db. The db has to be a different name for the test site. Sorry hard for me to explain.

Is there an easy way to do that? I would do it via cpanel backup and upload but the db is 2gb's gzip....

I can do it via ssh or whm as well.

View 2 Replies View Related

Copying (MySQL) Database Without Panel Access.

Mar 7, 2007

A customer would like to move his hosting from another host to me. But the other host does not want to cooperate and give me access to the panel or files. Threw the customer I did get the ftp information, and within the config file I have the database username and password.

How is it possible to copy the database, without having the hosting panel access?

View 8 Replies View Related

MySQL Table Crashed

Sep 28, 2007

Table '231_message' is marked as crashed and should be repaired

I haven't ever had this happen, is all my data truely lost or can i 'repair' it

i was moving sites to a different server (VPS -> dedicated) and on the vps i have a max of 20gb storage, well as i was using the cpanel transfer it filled this up because it didnt have a warning about this (i dont accept blame )

either way it seemed at this time someone on my site tried to make an adjustment to the table and it crashed it since there wasnt room? i really need to get this fixed asap so I can properly move this site with a working database

View 5 Replies View Related

Optimizing Large MySQL Table

Nov 2, 2009

I optimized a mysql table of 2 million records and about 500MB.. it took about 15 minutes.. However, on the same DB now i have another huge table of 88 million records, it size is 2.2 GB and it has about 30 MB to optimize... my questions..

1.- How can I speed up the optimization process so it can take the less possible time? any tweaks to my.cnf?

2.- Should I repair it using phpmyadmin or just from the shell?

3.- Should I stop http traffic during this optimization?

This is a dedicated db mysql server that handles a large VB forum with 5-8 users online average:

Code:
Intel Xeon 3.2 x4 procs, 32 bits, 4 GB ram
/etc/my.cnf

Code:
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
skip-locking
skip-innodb
skip-bdb
query_cache_limit=1M
query_cache_size=48M
query_cache_type=1
max_connections=1200
interactive_timeout=100
wait_timeout=300
connect_timeout=10
thread_cache_size=128
key_buffer=48M
join_buffer=8M
max_allowed_packet=16M
table_cache=2036
sort_buffer_size=1M
read_buffer_size=1M
read_rnd_buffer_size=2M
max_connect_errors=10
# Try number of CPU's*2 for thread_concurrency
thread_concurrency=4
myisam_sort_buffer_size=64M

# Add
max_heap_table_size = 48M
tmp_table_size = 48M
low_priority_updates=1
concurrent_insert=2

[mysqldump]
quick
max_allowed_packet=16M

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

[mysqld_safe]
err-log=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid
log-slow-queries=/var/log/slow-queries.log

On the other side, i have the same hardware for the webserver..

View 2 Replies View Related

Deleted Columns_priv Table MySQL

Jun 24, 2009

I accidentally deleted the columns_priv table in mysql database. How can I bring it back can anyone show me the structure of that table so I can build it back.

View 4 Replies View Related

Mysql: Incorrect Key File For Table

Apr 20, 2009

I have a server with many db on mysql 5

Any db contains 5 table with data

This data is processed by routine

Many time routine die with the error:
"Incorrect key file for table '/var/tmp/#sql_3018_0.MYI'; try to repair it"

The table sql_3018_0.MYI not exist, think that this is refered to a temporary table but is deleted by process..

View 1 Replies View Related

MYSQL Incorrect Key File For Table

Jul 3, 2008

what I can do about the following database error in mysql?

Incorrect key file for table '/tmp/#sql_(number of table.MYI); try to repair it

I've repaired, optimized and checked the database in phpmyadmin. Initially 2 tables were showing overhead, but the error message is for a temp table and I'm not sure how to try to repair a temp table.

View 5 Replies View Related

How To Alter Tabel And Create Table In Mysql

Jun 24, 2009

I have a script and there are some modifications that I want to make

In the instructions it says ALTER TABLE and CREATE TABLE in myqsl but I dont know exactly how to do this.

I have tried to google but everything i find is very technical and doesnt explain the easiest way to do it.

Should I use phpmyadmin or whats the correct way?

View 5 Replies View Related

Mysql Disable INSERT Access To Specific User/table

Apr 26, 2009

How can I disable INSERT access to specific table.

The user should have full access the the DB except insert to specific table.

The tables_priv allow to set what enable and not what disable.

I'm using mysql v5

View 4 Replies View Related

Copying Certain Files

May 20, 2009

There is a directory with many files and subdirectories. I want to copy ALL the filesnames beginning with post-1111 to another folder. What is the command to do this?

View 5 Replies View Related

Copying Whole Dump Over Ssh

Jul 6, 2007

I am having a hosting account with old host which is limited to 10 GB, and there i am having a mysql Database which is of 2 GB, i want to move it to new host via SSH ... as that Database can not be downloaded via phpmyadmin due to its size.

So i want to "tar" the mysql directory and ssh/scp to new host!...

I am applying this command...

tar -cvf r.tar /var/lib/mysql/in_supp | ssh user@newhost.com

But i am getting errors,

Please give me a command which can move my entire Database dump to new server, without creating any copy at old server "as i do not have any space there"

View 14 Replies View Related

Copying A Database From One Account To Another

Jan 26, 2009

I have a dedicated managed server (with liquidweb) with Cpanel and WHM.

I want to duplicate a database that I have in one account over to another account on the same server.

Usually the way I would do that is to use the Cpanel Backup tool, download the database from the first account and then restore it on the second account.

This time however the database is fairly large and my connection is not very fast, so downloading, and then uploading the database backup would take ages.

View 9 Replies View Related

Link Files Instead Of Copying

Apr 5, 2008

to execute the following command into a Solaris 5.11 system.

cp -al ......

The problem is that either -a or -l works on Solaris.
Man pages are not installed and all I can get is:

Usage: cp [-f] [-i] [-p] [-@] f1 f2
cp [-f] [-i] [-p] [-@] f1 ... fn d1
cp -r|-R [-H|-L|-P] [-f] [-i] [-p] [-@] d1 ... dn-1 dn

What I want to achieve is link files instead of copying and also keep permissions on files.

View 1 Replies View Related

Copying Multiple Accounts

May 1, 2008

Did anyone ever had an issue, when you click fetch accounts list and it displays 0 packages and 0 accounts? Even if there are hundreds of accounts in server.

cPanel 11.18.5-R23897

Could this be cPanel bug?

View 2 Replies View Related

Copying Account From Other Server

Jan 30, 2007

I am trying to copy one account from another server through the option "Copy an account from another server with password" in WHM but after filling server ip, username and password it starts trasnfering and showing me dosts like below :-

............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ............... ...............

After few lines its just stoped working,

View 14 Replies View Related

Drive Copying/Cloning

Nov 8, 2007

We seem to be doing a lot of this lately with clients upgrading to larger hard drives, etc.

I'm curious as to what works best for most folks that do have physical access to their servers when copying drives in servers, like when upgrading to larger hard drives or replacing a hard drive.

I know there are "hardware" drive copiers, but what about software methods?

Especially when upgrading both hard drives in a dual hard drive server.

View 5 Replies View Related

Copying A Large Database

Oct 3, 2007

I want to copy a 5GB mysql database, but don't want to dump and then import it again since it will take long time.

Alternatively, I am thinking of copying the directory of the database using the CP command.

First, I will close the forums from the control panel.. then I will use this command:

cp -rp /var/lib/mysql/mydatabase /var/lib/mysql/mydatabase_copy

View 11 Replies View Related

Preserving File Permissions While Copying

Apr 23, 2008

a way to preserve folder/file permissions in a windows environment. We are copying files from one drive to another on one of our servers. It's crucial to preserve the permissions - but i've done some research and can't find any way to get this done...

Anybody familiar with any methods on how to approach this? We're running windows 2003 server.

View 2 Replies View Related

Copying A File To Multiple Users Dir

Sep 25, 2007

I've been searching for the best way to copy a file, say .htaccess, to multiple users dir, tried "cp -f .htaccess /home/*/public_html" but received an error "omitting dir /home...."

View 3 Replies View Related

Plesk 11.x / Windows :: API For Copying Website

May 6, 2014

I am trying to write a PHP script for copying the content of one subdomain to another, like with the button Website Copying but automatically.

I can't seem to find the API model for that, but I am sure it must be possible to do.

View 3 Replies View Related

Error While Copying Website From Plesk To Cpanel

Nov 21, 2008

I get error while copying accounts from Plesk to Cpanel and hence the emails are not copied though the data is copied. The error goes like this

pXa Copying Mail files....ERROR 1064 at line 1: You have an error in your SQL syntax near 'SELECT cl_id FROM domains WHERE id = 1018 )' at line 1

I am running Plesk 8.01 and the latest stable release of Cpanel. Is it because of the Plesk version I have? If yes, then what should be the Plesk version?

View 2 Replies View Related

Blank Render After Copying Over Files From Previous Box

Jul 8, 2009

I recently bought a VPS and set up everything for it manually (apache, php, mysql). I had an old host which I got my files and MySQL database from. I have successfully copied them all over and imported the .sql file. I have also checked my config options and updated them to the new settings.

However, when I go to my site, I just get a blank, white screen. The site is fine because a test file that doesn't use my phpBB installation from before renders properly as well as the index.php file from the ./install/ directory of phpBB. If it was a connection problem with MySQL, I would assume that it would print some sort of error stating that it can't connect.

Here are some steps that I've tried so far (I would use a list here but I supposedly need five posts):

* chmod 777 on my entire /var/www/html/ directory.

* chown /var/www/html/ to the apache user, which is the one running the apache webserver.

* Checking error logs and not finding anything that seemed catastrophic (i.e. just notifications about a favicon being missing).

* Editing the .htaccess file to be empty.

At this point, I don't know what to do. I am willing to reinstall phpBB properly, although I would really rather not, and I imagine that there's some way to salvage my previous installation. If you're wondering why I'm posting here instead of the phpBB forums, it's because I have a hunch that it's more likely related to my installing MySQL, Apache and PHP.

My site is apollorp (dot) org (I would link here but I need five posts). As a test, try going to apollorp (dot) org (slash) test (dot) php, which should work.

View 0 Replies View Related

Plesk 11.x / Linux :: Copying Files Between Subscriptions

Jun 4, 2014

I want to be able to copy 1000's of files from one subscription to another or rather from one domain to another on the server without having to FTP them each time. Is there a way which this can be done directly in Plesk and avoid the need to ftp the same 1000's of files into each subscription ? FTPing on my connection is really slow and takes 2-3 for each subscription / domain, whereas if I could just FTP to the server once and then copy&paste the files between subscriptions then this would save me a huge amount of time...

View 2 Replies View Related

Plesk 11.x / Linux :: Copying Folders Into Another Folder Using Same Name

Aug 9, 2014

I'm having a problem when copying folders into another folder using the same name.e.g. there's a folder called css in httpdocs/backup/css and also httpdocs/css. However, I'm trying to restore the backup and actually copy the /css dir from httpdocs/backup to httpdocs. Plesk should overwrite the existing target css dir (and its content/files) in httpdocs/css. However, Plesk creates a new css dir inside httpdocs/css so I have the "original" httpdocs/css dir content intact and also the css dir (from httpdocs/backup/css) copied into httpdocs/css so the full path is httpdocs/css/css

I'm highlighting the httpdocs (not /css dir) in the File manager - Copy Files window. I've tried that on a few installs and experiencing issue on each of them. Please see the attached screenshots.

Step 1. Select (check) the css dir and click copy (or move, result is the same)

Step 2. Mark the httpdocs dir (it doesn't matter if you click the Replace existing files checkbox)

Step 3. Final result, css dir from httpdocs/backup copied into httpdocs/css/

I've compared the dir content several times and definitely the css dir from httpdocs/backup is copied to httpdocs/css so the full path would be: http docs/css/css and the original "old" files from css will remain there.

View 1 Replies View Related

Plesk 12.x / Linux :: Database Copying Between Subscriptions Missing?

Jun 11, 2015

I've been happily copy databases between subscriptions in Plesk 11.5xx for years but having updated to 12 the feature no longer works.

In the copy database screen when the 'local MySQL server' option is selected in the drop down the 'Copy to existing database' radio button is disabled.

My service provider tells me this is a feature change.

View 2 Replies View Related

How To Run OPTIMIZE TABLE

Mar 25, 2009

Today i need to run "OPTIMIZE TABLE" from MySQLTuner recommendation.

Now i don't know how to run it ? I try to put in SQL Query via phpmyadmin and:

SQL query:

OPTIMIZE TABLE

MySQL said:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1

View 5 Replies View Related







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