Dump and Zip file can not resore odoo 8, how to solve it?
up vote
0
down vote
favorite
**File "/odoo/odoo-server/addons/web/controllers/main.py", line 757, in restore
data = base64.b64encode(db_file.read())
File "/usr/lib/python2.7/base64.py", line 54, in b64encode
# Strip off the trailing newline MemoryErrorline MemoryError**
python postgresql python-2.7 odoo odoo-8
add a comment |
up vote
0
down vote
favorite
**File "/odoo/odoo-server/addons/web/controllers/main.py", line 757, in restore
data = base64.b64encode(db_file.read())
File "/usr/lib/python2.7/base64.py", line 54, in b64encode
# Strip off the trailing newline MemoryErrorline MemoryError**
python postgresql python-2.7 odoo odoo-8
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
**File "/odoo/odoo-server/addons/web/controllers/main.py", line 757, in restore
data = base64.b64encode(db_file.read())
File "/usr/lib/python2.7/base64.py", line 54, in b64encode
# Strip off the trailing newline MemoryErrorline MemoryError**
python postgresql python-2.7 odoo odoo-8
**File "/odoo/odoo-server/addons/web/controllers/main.py", line 757, in restore
data = base64.b64encode(db_file.read())
File "/usr/lib/python2.7/base64.py", line 54, in b64encode
# Strip off the trailing newline MemoryErrorline MemoryError**
python postgresql python-2.7 odoo odoo-8
python postgresql python-2.7 odoo odoo-8
asked Nov 8 at 6:43
KLN
15212
15212
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
This error occurs since the size of the database backup is larger than Odoo worker's current memory limit. Increase limit_memory_soft and limit_memory_hard values in the configuration, or restore the file directly in PostgreSQL by typing createdb dbname
followed by psql dbname < DBDump
.
we get only zip and dump format only how can i get .sql format
– KLN
Nov 8 at 7:23
i am sorry for confusiondbname.sql
is the dump, I have updated the answer, the way we usually take a postgresql db dump is aspg_dump dbname > dbdump.sql
gives you the sql file.
– Omi Harjani
Nov 8 at 7:26
how to restore dump into odoo gui? is it possible?
– KLN
Nov 9 at 3:43
you sure can using pgadmin [pgadmin.org/] !!
– Omi Harjani
Nov 9 at 6:39
1
yes, i restored via command thanks
– KLN
Nov 9 at 10:01
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
This error occurs since the size of the database backup is larger than Odoo worker's current memory limit. Increase limit_memory_soft and limit_memory_hard values in the configuration, or restore the file directly in PostgreSQL by typing createdb dbname
followed by psql dbname < DBDump
.
we get only zip and dump format only how can i get .sql format
– KLN
Nov 8 at 7:23
i am sorry for confusiondbname.sql
is the dump, I have updated the answer, the way we usually take a postgresql db dump is aspg_dump dbname > dbdump.sql
gives you the sql file.
– Omi Harjani
Nov 8 at 7:26
how to restore dump into odoo gui? is it possible?
– KLN
Nov 9 at 3:43
you sure can using pgadmin [pgadmin.org/] !!
– Omi Harjani
Nov 9 at 6:39
1
yes, i restored via command thanks
– KLN
Nov 9 at 10:01
add a comment |
up vote
1
down vote
accepted
This error occurs since the size of the database backup is larger than Odoo worker's current memory limit. Increase limit_memory_soft and limit_memory_hard values in the configuration, or restore the file directly in PostgreSQL by typing createdb dbname
followed by psql dbname < DBDump
.
we get only zip and dump format only how can i get .sql format
– KLN
Nov 8 at 7:23
i am sorry for confusiondbname.sql
is the dump, I have updated the answer, the way we usually take a postgresql db dump is aspg_dump dbname > dbdump.sql
gives you the sql file.
– Omi Harjani
Nov 8 at 7:26
how to restore dump into odoo gui? is it possible?
– KLN
Nov 9 at 3:43
you sure can using pgadmin [pgadmin.org/] !!
– Omi Harjani
Nov 9 at 6:39
1
yes, i restored via command thanks
– KLN
Nov 9 at 10:01
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
This error occurs since the size of the database backup is larger than Odoo worker's current memory limit. Increase limit_memory_soft and limit_memory_hard values in the configuration, or restore the file directly in PostgreSQL by typing createdb dbname
followed by psql dbname < DBDump
.
This error occurs since the size of the database backup is larger than Odoo worker's current memory limit. Increase limit_memory_soft and limit_memory_hard values in the configuration, or restore the file directly in PostgreSQL by typing createdb dbname
followed by psql dbname < DBDump
.
edited Nov 8 at 8:20
LegendaryJohnDoe
172
172
answered Nov 8 at 7:17
Omi Harjani
479413
479413
we get only zip and dump format only how can i get .sql format
– KLN
Nov 8 at 7:23
i am sorry for confusiondbname.sql
is the dump, I have updated the answer, the way we usually take a postgresql db dump is aspg_dump dbname > dbdump.sql
gives you the sql file.
– Omi Harjani
Nov 8 at 7:26
how to restore dump into odoo gui? is it possible?
– KLN
Nov 9 at 3:43
you sure can using pgadmin [pgadmin.org/] !!
– Omi Harjani
Nov 9 at 6:39
1
yes, i restored via command thanks
– KLN
Nov 9 at 10:01
add a comment |
we get only zip and dump format only how can i get .sql format
– KLN
Nov 8 at 7:23
i am sorry for confusiondbname.sql
is the dump, I have updated the answer, the way we usually take a postgresql db dump is aspg_dump dbname > dbdump.sql
gives you the sql file.
– Omi Harjani
Nov 8 at 7:26
how to restore dump into odoo gui? is it possible?
– KLN
Nov 9 at 3:43
you sure can using pgadmin [pgadmin.org/] !!
– Omi Harjani
Nov 9 at 6:39
1
yes, i restored via command thanks
– KLN
Nov 9 at 10:01
we get only zip and dump format only how can i get .sql format
– KLN
Nov 8 at 7:23
we get only zip and dump format only how can i get .sql format
– KLN
Nov 8 at 7:23
i am sorry for confusion
dbname.sql
is the dump, I have updated the answer, the way we usually take a postgresql db dump is as pg_dump dbname > dbdump.sql
gives you the sql file.– Omi Harjani
Nov 8 at 7:26
i am sorry for confusion
dbname.sql
is the dump, I have updated the answer, the way we usually take a postgresql db dump is as pg_dump dbname > dbdump.sql
gives you the sql file.– Omi Harjani
Nov 8 at 7:26
how to restore dump into odoo gui? is it possible?
– KLN
Nov 9 at 3:43
how to restore dump into odoo gui? is it possible?
– KLN
Nov 9 at 3:43
you sure can using pgadmin [pgadmin.org/] !!
– Omi Harjani
Nov 9 at 6:39
you sure can using pgadmin [pgadmin.org/] !!
– Omi Harjani
Nov 9 at 6:39
1
1
yes, i restored via command thanks
– KLN
Nov 9 at 10:01
yes, i restored via command thanks
– KLN
Nov 9 at 10:01
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53202663%2fdump-and-zip-file-can-not-resore-odoo-8-how-to-solve-it%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown