определение процессов, кушающих память в Linux (Debian/CentOS).

Posted in Новости on 9 июня, 2010 by admin

для top

делаем top и после этого нажимаем Shift + M

для htop

делаем htop , нажимаем F6 и выбираем VIRT

Tags: , ,

InnoDB не работает

Posted in Новости on 8 июня, 2010 by admin

Если у Вас в логах вот такая штука :

InnoDB: A new raw disk partition was initialized or
InnoDB: innodb_force_recovery is on: we do not allow
InnoDB: database modifications by the user. Shut down
InnoDB: mysqld and edit my.cnf so that newraw is replaced
InnoDB: with raw, and innodb_force_… is removed.

то правим my.cnf путем комментирования строки :

innodb_force_recovery=1

и перезагружаем демон.

Tags: , ,

make: c: Command not found (apache2 Debian)

Posted in Новости on 2 июня, 2010 by admin

Если при компиляции у Вас возникла вот такая вот ошибка :

make: c: Command not found

То нужно установить модуль для апача — apache2-threaded-dev

apt-get install apache2-threaded-dev

Tags: ,

malware condition: unknown scanner type '/var/run/clamav' (exim4 Debian)

Posted in Новости on 1 июня, 2010 by admin

вот такая ошибка сыпется в паниклога эксима :

malware condition: unknown scanner type '/var/run/clamav'

Фикс :

Комментируем в /etc/exim4/exim4/conf.template

строку av_scanner и ребутим почтовик

Tags: , ,

mod_xsendfile Debian

Posted in Новости on 18 мая, 2010 by admin

В Lenny его нет, но как модуль для апача xsendfile оказался в сквизе и при этом пакеты в ленни удовлетворяют зависимостям модуля.

1. меняем в репо ленни на сквиз
2. делаем aptitude update
3. ставим модуль :

localhost:/etc/apt# aptitude search xsend
p libapache2-mod-xsendfile — Serve large static files efficiently from web applications
localhost:/etc/apt# apt-get install libapache2-mod-xsendfile
Reading package lists… Done
Building dependency tree
Reading state information… Done
The following NEW packages will be installed:
libapache2-mod-xsendfile
0 upgraded, 1 newly installed, 0 to remove and 431 not upgraded.
Need to get 10.0kB of archives.
After this operation, 45.1kB of additional disk space will be used.
Get:1 http://ftp.de.debian.org squeeze/main libapache2-mod-xsendfile 0.9-2 [10.0kB]
Fetched 10.0kB in 0s (80.1kB/s)
Selecting previously deselected package libapache2-mod-xsendfile.
(Reading database … 35822 files and directories currently installed.)
Unpacking libapache2-mod-xsendfile (from …/libapache2-mod-xsendfile_0.9-2_amd64.deb) …
Setting up libapache2-mod-xsendfile (0.9-2) …
Enabling module xsendfile.
Run '/etc/init.d/apache2 restart' to activate new configuration!

Tags: , ,