Archive for Март, 2015
Ошибка ..please set date.timezone to select your timezone
php.ini
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
;date.timezone =
date.timezone = «Europe/Moscow»
Squid запрет доступа пользователей на сайты
Вставляем в squid.conf
# users
acl localnet src 10.0.72.150
# Запрет адресов
acl zapret url_regex «/etc/squid/zapret.acl»
http_access deny zapret all
http_access allow localnet
В файле zapret.acl пишем адреса для запрета доступа
odnoklassniki.ru ( к примеру)
Sarg имена из файла вместо Ip адресов
В файле sarg.conf
language Russian_UTF-8
charset Cyrillic
access_log /var/log/squid/access.log
output_dir /var/www/sarg/ONE-SHOT
resolve_ip no
usertab /etc/sarg/usertab
mail_utility mail
graphs yes
graph_days_bytes_bar_color green
show_successful_message no
external_css_file /var/www/sarg/sarg.css
Файл usertab ( пример)
# servers
10.0.72.200 Доменный Сервер
….
AH01630: client denied by server configuration Centos 7
После обновления Centos 7 обновился и Apache до версии 2.4. Появилась ошибка: “AH01630: client denied by server configuration”, причём эта ошибка появилась в логах тех виртуальных хостов, на которых имелся файл .htaccess.
Решение:
В конфигурационный файл виртуального хоста в секцию <Directory /> необходимо добавить строку
Require all granted
Установка MariaDB (вместо MySQL) on a CentOS 7 / RHEL 7 server
Установка MariaDB на CentOS 7 / RHEL 7 server
Установка yum install mariadb-server mariadb Запуск systemctl restart mariadb.service
Автозапуск
systemctl enable mariadb.service
Настройка
/usr/bin/mysql_secure_installation
Установка php
yum install php php-mysql php-gd php-pear
systemctl restart httpd.service
Генерация UUID для сетевой карты CentOS 7
uuidgen <eth0>
Установка iptables для Centos7 вместо firewalld
With RHEL 7 / CentOS 7, firewalld was introduced to manage iptables. IMHO, firewalld is more suited for workstations than for server environments.
It is possible to go back to a more classic iptables setup. First, stop and mask the firewalld service:
systemctl stop firewalld
systemctl mask firewalld
Then, install the iptables-services package:
yum install iptables-services
Enable the service at boot-time:
systemctl enable iptables
Managing the service
systemctl [stop|start|restart] iptables
Saving your firewall rules can be done as follows:
service iptables save
or
/usr/libexec/iptables/iptables.init save