Increase MYsql file size Upload
#1
Increase MYsql file size Upload
Hi, 
Guys, can you help me upload my database to my website so that it gets to phpmyadmin. 

Both methods : 
How can i increase file size upload to "10gb" in place of "(Max: 2,048KiB)" in for mysql?

Also can you tell me method to install my db via ssh so it gets to phpmyadmin and works with my website files? 

cpanel allows db_user to be like db_12442 but sentora only allows "xxxxxxx" without any prefix, so do i have to make any changes in my db so that it can be uploaded and works properly, if so, how do i achieve it?

Thanks. 
Reply
#2
RE: Increase MYsql file size Upload
(10-01-2017, 09:02 PM)testing Wrote: Hi, 
Guys, can you help me upload my database to my website so that it gets to phpmyadmin. 

Both methods : 
How can i increase file size upload to "10gb" in place of "(Max: 2,048KiB)" in for mysql?

Also can you tell me method to install my db via ssh so it gets to phpmyadmin and works with my website files? 

cpanel allows db_user to be like db_12442 but sentora only allows "xxxxxxx" without any prefix, so do i have to make any changes in my db so that it can be uploaded and works properly, if so, how do i achieve it?

Thanks. 

Hey bud,

Go to your php.ini file and search for "upload_max_filesize" and adjust the value to fit your needs.

don't forget to restart HTTPD
Code:
systemctl httpd restart or service httpd restart
-BetaTester3.0  ||  Just Another Sentora User. 

Did you know, Sentora has a full Support Documentation ?
If I helped +rep & Thanks is appreciated.
BTC: 1Bps3ZerDFDDnXJ9XdWtHhdhwsV4MVGLkw

Reply
#3
RE: Increase MYsql file size Upload
"Hey bud,

Go to your php.ini file and search for "upload_max_filesize" and adjust the value to fit your needs.

don't forget to restart HTTPD
Code:
systemctl restart httpd"

How to reach php.ini, i am unable to locate it via file manager in root folder, I see my root folder as empty but has only directory for my website but no other files, like mail folder, and alike.
Reply
#4
RE: Increase MYsql file size Upload
(10-01-2017, 09:34 PM)testing Wrote: "Hey bud,

Go to your php.ini file and search for "upload_max_filesize" and adjust the value to fit your needs.

don't forget to restart HTTPD
Code:
systemctl restart httpd"

How to reach php.ini, i am unable to locate it via file manager in root folder, I see my root folder as empty but has only directory for my website but no other files, like mail folder, and alike.

login to the server using ssh:
Copy the bellow code and it will take you to the ini file:
First it will download nano (lol I like nano), then it will cd into the etc directory and open the php.ini file for editing Smile.
Code:
yum install nano -y && cd /etc && nano php.ini
After the php.ini file is open then press ctrl+w and then search for "upload_max_filesize", use the arrow keys to move around in the php.ini file.
to save and close the file enter "ctrl+x" it will prompt you with Y/N enter "Y" to save the file"

I would suggest rebooting after that:
Code:
reboot
-BetaTester3.0  ||  Just Another Sentora User. 

Did you know, Sentora has a full Support Documentation ?
If I helped +rep & Thanks is appreciated.
BTC: 1Bps3ZerDFDDnXJ9XdWtHhdhwsV4MVGLkw

Reply
#5
RE: Increase MYsql file size Upload
(10-01-2017, 09:40 PM)betatester3.0 Wrote: login to the server using ssh:
Copy the bellow code and it will take you to the ini file:
First it will download nano (lol I like nano), then it will cd into the etc directory and open the php.ini file for editing Smile.
Code:
yum install nano -y && cd /etc && nano php.ini
After the php.ini file is open then press ctrl+w and then search for "upload_max_filesize", use the arrow keys to move around in the php.ini file.

I did it but what to click to save it and exit?
Reply
#6
RE: Increase MYsql file size Upload
(10-01-2017, 09:49 PM)testing Wrote: I did it but what to click to save it and exit?

to save and close the file enter "ctrl+x" it will prompt you with Y/N enter "Y" to save the file"
I would suggest rebooting after that:
Code:
reboot
-BetaTester3.0  ||  Just Another Sentora User. 

Did you know, Sentora has a full Support Documentation ?
If I helped +rep & Thanks is appreciated.
BTC: 1Bps3ZerDFDDnXJ9XdWtHhdhwsV4MVGLkw

Reply
#7
RE: Increase MYsql file size Upload
(10-01-2017, 09:52 PM)betatester3.0 Wrote: to save and close the file enter "ctrl+x" it will prompt you with Y/N enter "Y" to save the file"
I would suggest rebooting after that:
Code:
reboot

Also can you tell me method to install my db via ssh so it gets to phpmyadmin and works with my website files? I am asking as I think it's much easier and faster to upload via ssh. 

And cpanel allows db_user to be like db_12442 but sentora only allows "xxxxxxx" without any prefix, so do i have to make any changes in my db so that it can be uploaded and works properly, if so, how do i achieve it?
Reply
#8
RE: Increase MYsql file size Upload
(10-01-2017, 09:58 PM)testing Wrote: Also can you tell me method to install my db via ssh so it gets to phpmyadmin and works with my website files? I am asking as I think it's much easier and faster to upload via ssh. 

And cpanel allows db_user to be like db_12442 but sentora only allows "xxxxxxx" without any prefix, so do i have to make any changes in my db so that it can be uploaded and works properly, if so, how do i achieve it?

Add your domain name, create a database using the db module, create a user for the database created. login using the new user credentials then simply import your db.sql file Smile
-BetaTester3.0  ||  Just Another Sentora User. 

Did you know, Sentora has a full Support Documentation ?
If I helped +rep & Thanks is appreciated.
BTC: 1Bps3ZerDFDDnXJ9XdWtHhdhwsV4MVGLkw

Reply
#9
RE: Increase MYsql file size Upload
(10-01-2017, 10:19 PM)betatester3.0 Wrote: Add your domain name, create a database using the db module, create a user for the database created. login using the new user credentials then simply import your db.sql file Smile

Tried twice, but failed to get upload, at 99percent it shows my error that you are uploading file too large type of error. Also I made upload file size as 5gb but I am just trying to upload only 1.2gb file size but it's not taking. 

Can you please tell me to do it via ssh?

If i use this command will it work?
mysql -u dbusername -pdbpassword dbname < /path/to/file/file.sql


Regarding Path, my website db is present inside
/public_html/mydomain_com/db.sql

Should i use this in root ssh?
Reply
#10
RE: Increase MYsql file size Upload
apache have own upload limit but it's defaut is 2GB. So it would work.

If you want to ssh server and add db you can do it


Code:
mysql -u username -p database_name < file.sql
No support using PM (Auto adding to IGNORE list!), use the forum. 
How to ask

200$ free to start your VPS 60 days credit
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
Increase disk space by adding volume only, it is okay? 7rdoq 10 7 ,846 11-06-2024, 07:27 AM
Last Post: TGates
Size of DB table x_logs too big, 5.6+ M records 7rdoq 5 3 ,271 10-24-2024, 06:26 AM
Last Post: TGates
How to set up File Manger for Sentora? donaldaugust 1 4 ,886 01-11-2022, 05:01 AM
Last Post: Nigel

Forum Jump:


Users browsing this thread: 1 Guest(s)