Zmiany pomiędzy wersją 14 and wersją 15 dla AdminGuide/LinuxConsole
- Data i czas:
- 11/18/16 10:08:44 (8 years temu)
Legend:
- Bez zmian
- Dodane
- Usunięte
- Zmienione
-
AdminGuide/LinuxConsole
v14 v15 31 31 -- oglądanie bieżące pliku loga postgres 32 32 tail -f /var/log/postgresql/postgresql-8.3-main.log 33 34 -- zrolowanie loga php_error.log (pozostawia ostatnie 10000 linii w pliku php_error.log.last) 35 tail -n 10000 /var/log/php_error.log > /var/log/php_error.log.last 36 echo "" > /var/log/php_error.log 33 37 }}} 34 38 … … 57 61 /etc/init.d/postgresql restart 58 62 }}} 63 64 9. Wyświetlenie aktualnie wykonywanych procesów 65 {{{ 66 ps aux 67 68 -- pokaż tylko procesy mające w nazwie php 69 ps aux | grep php 70 }}} 71 72 10. Zabicie procesu (parametr PID należy zastąpić odczytanym z polecenia ps identyfikatorem procesu czyli tzw. PID-em. 73 {{{ 74 kill -9 PID 75 }}}