Bitcoin Forum
May 08, 2024, 04:27:50 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: "Not enough memory" error while syncing blockchain with bitcoin core  (Read 719 times)
Scaldingllama (OP)
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
September 24, 2017, 07:26:23 AM
 #1

After installing Bitcoin Core, I keep getting an "out of memory" error message while the blockchain updates. Then it closes the program. Im using a 4 TB external hard drive on Windows 10.  Any suggestions?
1715142470
Hero Member
*
Offline Offline

Posts: 1715142470

View Profile Personal Message (Offline)

Ignore
1715142470
Reply with quote  #2

1715142470
Report to moderator
Whoever mines the block which ends up containing your transaction will get its fee.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
HCP
Legendary
*
Offline Offline

Activity: 2086
Merit: 4316

<insert witty quote here>


View Profile
September 24, 2017, 08:53:51 AM
 #2

Did you actually set Core to store the blocks on your external drive during the install/setup process? If you didn't it will default to C: drive... specifically your "C:\Users\USERNAME\AppData\Roaming\Bitcoin" folder.

Could also be an out of RAM issue... Do you have other apps running?

Post the Bitcoin Core debug.log

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
cr1776
Legendary
*
Offline Offline

Activity: 4032
Merit: 1301


View Profile
September 24, 2017, 10:09:00 AM
 #3

After installing Bitcoin Core, I keep getting an "out of memory" error message while the blockchain updates. Then it closes the program. Im using a 4 TB external hard drive on Windows 10.  Any suggestions?

Memory is RAM. How much does your system have?  What version of Bitcoin Core?
jackg
Copper Member
Legendary
*
Offline Offline

Activity: 2856
Merit: 3071


https://bit.ly/387FXHi lightning theory


View Profile
September 24, 2017, 10:46:03 PM
 #4

After installing Bitcoin Core, I keep getting an "out of memory" error message while the blockchain updates. Then it closes the program. Im using a 4 TB external hard drive on Windows 10.  Any suggestions?

Core has a tendency to revert back to the C drive instead of looking for the actual file.
Wherever the bitcoin-qt file is stored whre you launch it from, open notepad and save a file called "bitcoin-qt.bat" - taking off the .txt extension when you use it.
Then in this notepad file copy the following
Code:
Bitcoin-qt.exe -datadir="F:\Bitcoin\Data"

With the path after -datadir being whatever the path you want the data to be saved in in your hard drive.

ENSURE YOUR DRIVE IS IN THE SAME LETTER BEFORE CLICKING THE .bat file.
IF it isn't:
click start+r and type "diskpart"
then type "list disk" and get the number of your drive in it.
then use the "select disk n" with n being the number of your drive and pass the "assign letter=F" command (or whatever letter you're using).


Hope this helps OP!

After installing Bitcoin Core, I keep getting an "out of memory" error message while the blockchain updates. Then it closes the program. Im using a 4 TB external hard drive on Windows 10.  Any suggestions?

Memory is RAM. How much does your system have?  What version of Bitcoin Core?

If it is RAM, OP can you post your computers tasklist and the debug.log at least.
miguelmorales85
Hero Member
*****
Offline Offline

Activity: 544
Merit: 506


View Profile
September 25, 2017, 12:44:31 PM
 #5

After installing Bitcoin Core, I keep getting an "out of memory" error message while the blockchain updates. Then it closes the program. Im using a 4 TB external hard drive on Windows 10.  Any suggestions?

Hello, I have currently the same issue in an old server I'm trying to set as a Bitcoin full node.

It seems the problem is because of low RAM memory, I have tried to use the indications in this URL

https://gist.github.com/laanwj/efe29c7661ce9b6620a7


But It still shutdown after a few hours.

My next step is to download a set a pruned node in my laptop and then migrate it to the old server and even to a raspberry pi.

I will keep you all informed of the results.
cr1776
Legendary
*
Offline Offline

Activity: 4032
Merit: 1301


View Profile
September 25, 2017, 01:04:46 PM
 #6

After installing Bitcoin Core, I keep getting an "out of memory" error message while the blockchain updates. Then it closes the program. Im using a 4 TB external hard drive on Windows 10.  Any suggestions?

Hello, I have currently the same issue in an old server I'm trying to set as a Bitcoin full node.

It seems the problem is because of low RAM memory, I have tried to use the indications in this URL

https://gist.github.com/laanwj/efe29c7661ce9b6620a7


But It still shutdown after a few hours.

My next step is to download a set a pruned node in my laptop and then migrate it to the old server and even to a raspberry pi.

I will keep you all informed of the results.

Are you running 0.15.x? 
kiddikoddi
Member
**
Offline Offline

Activity: 84
Merit: 10

Bounty Manager At your Service Please Pm me


View Profile
September 25, 2017, 01:22:46 PM
 #7

It is either that the HDD space is too small or ram for syncing the wallet because sometimes the wallet has a large amount allocated to sync but i vaguely remember someone here inputting some kinda tag at the beginning of the wallet to make it be max like 1 gb or something but i don't remember the exact tag though, but worst case scenario you can always upgrade your HDD or your RAM haha

🇵🇭🇵🇭🔥🔥Campaign Management Services🔥🔥🇵🇭🇵🇭
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!