Добавлен новый пакет php-pecl-imagick-3.0.0RC1 для php 5.2.
Для установки требует ImageMagick2 из .
Добавлен новый пакет php-pecl-imagick-3.0.0RC1 для php 5.2.
Для установки требует ImageMagick2 из .
В репозиторий Southbridge добавлен пакет php-pecl-amfext 0.9.2.
Для логирования медленных запросов Apache очень удобно использовать модуль mod_log_slow, домашняя страница которого находится по адресу
Для установки модуля под CentOS 5 64bit можно воспользоваться репозиторием Southbridge:
yum install modlogslow
или установить пакет по прямой ссылке:
rpm -ihv http://rpms.southbridge.ru/stable/x86_64/modlogslow-1.0.6-1.southbridge.x86_64.rpm
Пример конфигурации можно посмотреть в файле /etc/httpd/conf.d/logslow.conf
Это удобнее всего сделать используя tar через ssh:
tar zcvf - /files | ssh root@192.168.0.1 "cat > /files.tar.gz"
I just updated the CentOS RPMs and spec file in my repository for Zabbix 1.8. This is a minor version bump to 1.8.1 of Zabbix. See their for changes to Zabbix. Also, I added some new features based on requests from users…
NOTE: If you have problems installing zabbix-web because of the PHP >= 5.2 dependency, please visit this link:
All you need to do if you have my repository is run `yum update` to upgrade your packages, if you don’t know about it yet, visit the link below for more info on my repository!
Article links:
Thanks to your feedback, and a patch (thanks Tom) I just updated the CentOS RPMs and spec file in my repository for Zabbix 1.8. Rev. 5 of the Zabbix RPMs adds…
Go upgrade your packages, if you don’t know much about it, visit the link below for my repository!
Article links:
I tend to build RPMs, packages and/or spec files for recent versions of various linux packages for my preferred operating systems (CentOS, Ubuntu, Gentoo, and OS-X). The first package inside is packaged for CentOS 5, but the RPMs should work on any RHEL-compatible linux.
My repository can be found at
Or add my source to your RHEL-compatible Linux with the following command in your terminal…
And then you can install zabbix agent, zabbix server, zabbix get, or zabbix proxy with…
sudo yum install zabbix-agent
sudo yum install zabbix-server
sudo yum install zabbix-get
sudo yum install zabbix-proxy
If it fails to install, you might need to clean the metadata with the following command and try again…
sudo yum clean metadata
Warning: I of course take no responsibility for the integrity of the packages. I’m simply providing them for myself and anyone else who needs similar packages as myself, where possible I also provide full spec/make/build files so you can go build the packages yourself if you don’t trust me.
On a final note… I will be adding packages on a as-needed basis, but I plan to keep packages relatively up-to-date. So when a new version of something comes out, expect to see the newest version in here pretty quickly.
Merry Christmas, and Enjoy!
Article links:
Для того, чтобы в контейнере OpenVZ под CentOS заработала блокировка iptables вида (разрешается не больше 4 соединений для порта 22 в течение 180 секунд):
-A INPUT -p tcp -m tcp --dport 22 -m state --state NEW -m recent --update --seconds 180 --hitcount 4 --name DEFAULT --rsource -j DROP -A INPUT -p tcp -m tcp --dport 22 -m state --state NEW -m recent --set --name DEFAULT --rsource
Необходимо в файле /etc/vz/vz.conf разрешить следующие iptables-модули:
IPTABLES="iptable_filter ipt_multiport ip_conntrack ipt_REJECT"
По-умолчанию ip_conntrack отсутствует в этом списке, iptables при добавлении приведенных выше правил не ругается, но и ничего не работает.