All public logs
Jump to navigation
Jump to search
Combined display of all available logs of rbachwiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 14:26, 7 October 2025 Bacchas talk contribs created page MYSQL DATABASE BACKUP (Created page with "==Mysql Backup and Restore == ===List Databases=== '''Login to server ''' mysql ''' List databases''' show databases; '''List Tables in a database''' use databasename show tables; ===Bakcup a single database=== <pre> done from bash - no need to log in to mysql mysqldump -u root -ppassword sugarcrm > sugarcrm.sq syntax mysqldump -u root -p[root_password] [database_name] > dumpfilename.sql </pre> ===Backup a single table=== <pre> mysqldump -u root -ppassword dat...")