Server Administration
Aus Mein Wiki
Sebra (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „= Windows Server Administration = = Unix / Linux Server Administration = == Datenbank == === MySQL === * http://www.cyberciti.biz/faq/import-mysql-dumpfile-sql-…“) |
Sebra (Diskussion | Beiträge) (→Unix / Linux Server Administration) |
||
Zeile 6: | Zeile 6: | ||
=== MySQL === | === MySQL === | ||
* http://www.cyberciti.biz/faq/import-mysql-dumpfile-sql-datafile-into-my-database/ | * http://www.cyberciti.biz/faq/import-mysql-dumpfile-sql-datafile-into-my-database/ | ||
+ | == Dateirechte == | ||
+ | # find . -type f -exec chmod 644 {} \; | ||
+ | # find . -type d -exec chmod 644 {} \; | ||
+ | * Source: http://lars-schenk.com/chmod_rekursiv_nur_auf_dateien_oder_verzeichnisse_anwenden/90 |