• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

mysqldump -uadmin -ppasswd -A > /mnt/backup what user/pass?!!

A

arvin

Guest
hello every body!

when I use

Code:
mysqldump -uadmin -ppasswd -A > /mnt/backup

what user/pass must be use?!

thnx in advance!
rvn
 
thnx and I know that but when i try adminpass of plesk the access error accured:

Code:
 1045: Access denied for user: 'admin@server' (Using password: YES) when trying to connect
 
Then I think you made a typo the first time around. To see your Plesk password type cat /etc/psa/.psa.shadow. This should work too (of course specifying a valid file name and path):

Code:
mysqldump -uadmin -p`cat /etc/psa/.psa.shadow` -A > /path/to/file

I think you've probably mounted a drive at /mnt/backup so I'd not > directly to /mnt/backup, but rather use something like /mnt/backup/mysql-all.dump or /mnt/backup/mysql-all-`date +%Y%m%d-%H%M`.dump (if you want the date and time in the filename).
 
oh , very thnx to your complete answer,

YEAH, just Work!

that's right, i have a back up hard, and yes mybe i take a mistake in typing passwd!!!

you pattern for using % template taste very delicious!

thnx any way breun and i keep my finger cress for you!
 
Back
Top