fewit.ru :: Заметки недоайтишника

Ещё один криворукий админ

Открытие портов 22, 80, 443, 25:

iptables -I INPUT -p tcp --dport 22 -m state --state NEW -j ACCEPT
iptables -I INPUT -p tcp --dport 80 -m state --state NEW -j ACCEPT
iptables -I INPUT -p tcp --dport 443 -m state --state NEW -j ACCEPT
iptables -I INPUT -p tcp --dport 25 -m state --state NEW -j ACCEPT
service iptables save

Перезагрузка iptables:

/etc/init.d/iptables restart

24 марта, 2013

Posted In: iptables, Linux

При установка zabbix вылазила ошибка:

date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Europe/Moscow' for 'MSK/4.0/no DST' instead [include/page_header.php:185]

Решил проблему редактированием файла php.ini. Находим:

;date.timezone =

Меняем на часовую зону сервера, у меня Москва:

date.timezone = Europe/Moscow

Сохраняем, пинаем апач.

18 марта, 2013

Posted In: Linux, php

Выбор Московского часового пояса на CentOS 6:

ln -sf /usr/share/zoneinfo/Europe/Moscow /etc/localtime

Выбор Московского часового пояса на Debian:

dpkg-reconfigure tzdata

Установка ntp CentOS 6:

yum install ntp

Установка ntp Debian:

apt install ntp ntpdate

Синхронизируем время:

ntpdate ntp0.zenon.net или ntpdate 0.ru.pool.ntp.org

Ставим в автозагрузку в CentOS 6:

chkconfig ntpd on

Проверка:

chkconfig --list ntpd

(далее…)

18 марта, 2013

Posted In: CentOS, Debian, Linux

Метки: , , , ,