Questions tagged [dump]

In computing, a dump refers to recording the contents of the working memory of a computer program or operating system at a specific time, generally when it has terminated abnormally (crashed). Dumps are written to file and can be useful in debugging and diagnosing the crash that prompted the dump.

In computing, a dump refers to recording the contents of the working memory of a computer program or operating system at a specific time, generally when it has terminated abnormally (crashed). Dumps are written to file and can be useful in debugging and diagnosing the crash that prompted the dump.

144 questions
0
votes
0 answers

change the core-dump location - abrtd configuration

I'm trying to change the Linux core-dump location to a different directory using the abrtd configuration (normally it is going to the location core,but according to my research, if you enable abrtd, that will overwrite the default location.) cat…
0
votes
1 answer

abrt-ccpp ignores MaxCrashReportsSize and creates a huge dump :(

My abrt-ccpp service suddenly stopped capping the dumps at 10M and creates huge dumps - what am I missing? (I really haven't changed anything...) my dumps folder: sudo du -sh /home/tmp/abrt/* 12K /home/tmp/abrt/ccpp-2016-10-07-01:22:40-1838 17G …
ihadanny
  • 167
  • 6
0
votes
1 answer

Postgres autovacuum errors while restoring a dump

Restoring a dump on a Ubuntu 16.04 system takes several hours. Autovacuum is just canceled after waiting more than 3 hours (10926330.443 ms): 2016-07-20 05:20:00 CEST [78652-2414] LOCATION: exec_simple_query, postgres.c:946 2016-07-20 08:22:05 CEST…
Barmi
  • 439
  • 1
  • 6
  • 15
0
votes
3 answers

Uncompress an SQL file give a binary file

I created and compressed (with bzip2) a SQL dump from a production server on Linux. I want to create a shell script to automatically import it in the database of my development environment (on Mac OS). The file dump.sql.bz2 is well uncompressed…
Klemart3D
  • 1
  • 3
0
votes
1 answer

MariaDB galera cluster fail when dumping or optimizing database

It seems that a Galera cluster deadlocks every time when I run a mysqldump or table optimize. I've ran a "mysqlcheck" and a "mysqldump" on my MariaDB 10.1 database server several times. (which runs in a Galera cluster with two other servers) I've…
gijs007
  • 117
  • 1
  • 4
  • 18
0
votes
1 answer

PHP5-FPM Core Dumping due to some weird Zend error

I am getting an extremely weird core dump, which refers back to "Not Having Zend" even though zend is installed and working properly. This started showing up today after I did an apt-get upgrade, and for some reason, it's not allowing me to…
Vilsol
  • 111
  • 3
0
votes
1 answer

mysql error when running script to dump all databases

I am having mysql server in centos which is running fine, i recently got a script to dump all individual databases to one folder, when i run that script to dump, i'm getting this error when ever i run the script mysqldump: Couldn't execute 'UNLOCK…
tech2network
  • 1
  • 1
  • 3
0
votes
0 answers

Import outdated MySQL dump using console

I have a mysql dump file created by outdated MySQL version. I have no access to that server (console). If i use this command on my current server: mysql -u user -p dbname < dump.sql I get this error: ERROR 1064 (42000) at line 12547: You have an…
Croll
  • 93
  • 1
  • 17
0
votes
1 answer

Server crashing - Error 106 and .dmp files

A server is crashing with increasing frequency. Prior to crashing there are no events in the eventlog which indicate why it is crashing. There is no bluescreen and it does not respond to pings, show anything on the KVM, etc. I have 2 questions. 1)…
Abraxas
  • 1,229
  • 1
  • 16
  • 25
0
votes
1 answer

pg_dump fails, no space left, need to delete partial backup file to free space

Easy points. On my mac, postgres.app 9.2, I ran "pg_dump pdbt > pdbt.sql". It used up all my space and then failed with the error below. Now I want to free up the space taken up by "pdbt.sql" but I cannot find this file. How do I get the space…
user2104778
  • 103
  • 2
0
votes
1 answer

How do I set the current working directory of Asterisk?

I need to be able to collect core dumps, but since Asterisk's CWD is / (so claims procfs), it'll never be able to write them. I've confirmed my suspicions by allowing world write to / and SIGABRT the process, lo and behold, I had a core. I can…
Chris S
  • 93
  • 4
0
votes
2 answers

Is kdump not installed when /etc/kdump.conf is missing?

I have CentOS 5.8 system. And I want to set up the kdump. I was following this configuration steps on kdump. However I was not able to locate /etc/kdump.conf. I tried using the find and locate command to find kdump.conf, but it return no…
Pelang
  • 413
  • 5
  • 9
  • 15
0
votes
1 answer

Weird Apache Crash (with Dump) zend_hash_find (), libphp5.so

To be honest I don't have experience working with Apache. I'm just putting the best of my intentions on solving this and don't know if I'm making it right. So any help will be greatly appreciated. We have a php page wich is throwing the following…
Jacob
  • 197
  • 9
0
votes
1 answer

Dump Just 1 table from SSH

With this command : mysqldump -uuser -ppass dbname > 1.sql You can dump dbname to 1.sql I want a way to dump and restore just 1 table of dbname from ssh and command line
Mahmood
  • 11
  • 1
  • 2
0
votes
1 answer

Dump all databases to file

Possible Duplicate: Out of resources for mysqldump I'm trying to export all databases from my wamp installation (so I can do a reinstall), but I get this error when trying to generate a dump file: C:\wamp\bin\mysql\mysql5.1.36\bin>mysqldump -u…
Alex
  • 55
  • 8