Last active
April 8, 2026 13:07
-
-
Save musoftware/4d3f184bedcbb280b1843b65cd7f1964 to your computer and use it in GitHub Desktop.
Move Files in servers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rsync -av --progress /www/vmi_files/amcacademy/public_html/ /www/wwwroot/amcacademy.me/ | |
| MYSQL Create Users | |
| DROP USER IF EXISTS 'amcacademy_mk'@'localhost'; | |
| CREATE USER 'amcacademy_mk'@'localhost' IDENTIFIED BY 'sadsadsadas'; | |
| GRANT ALL PRIVILEGES ON amcacademy_amsystem.* TO 'amcacademy_mk'@'localhost'; | |
| FLUSH PRIVILEGES; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment