Доброго времени суток на FreeBSD 6.2 поднят Squid Cache: Version 3.0.STABLE1
с аутентификацией через Samba
проблема в следующем при запуске системы доходит до запуска сквида и выводит ошибку
Starting squid.
2007/12/26 16:07:45| ALERT: setgid: (1) Operation not permittedкак запустится система я делаю
killall -9 squid
затем
/usr/local/etc/squid/rc.d/030.squid.sh start
выводит ту же ошибку тогда я делаю опять
killall -9 squid
и ввожу просто
#squid
он прекрасно запускается и не ругается
в чем может быть проблема подскажите может кто сталкивался ?
>2007/12/26 16:07:45| ALERT: setgid: (1) Operation not permittedПосмотри в /usr/local/etc/squid/rc.d/030.squid.sh start на предмет того, какую группу он пробует выставить процессу. Убедись что она у тебя есть.
>>2007/12/26 16:07:45| ALERT: setgid: (1) Operation not permitted
>
>Посмотри в /usr/local/etc/squid/rc.d/030.squid.sh start на предмет того, какую группу он пробует выставить
>процессу. Убедись что она у тебя есть.вот скрипт запуска ничего подозрительного не нашел
#!/bin/sh
#
# $FreeBSD: ports/www/squid30/files/squid.in,v 1.3 2007/06/24 20:28:32 miwi Exp $
#
# PROVIDE: squid
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Note:
# Set "squid_enable=yes" in either /etc/rc.conf, /etc/rc.conf.local or
# /etc/rc.conf.d/squid to make this script actually do something. There
# you can also set squid_chdir, squid_pidfile, squid_user, and squid_flags.
#
# Please see squid(8), rc.conf(5) and rc(8) for further details.
#squid_checkrunning() {
${command} ${squid_flags} -k check 2>/dev/null
}squid_stop() {
echo "Stopping ${name}."
${command} ${squid_flags} -k shutdown
run_rc_command poll
}. /etc/rc.subr
name=squid
rcvar=${name}_enablecommand=/usr/local/sbin/squid
extra_commands=reload
reload_cmd="${command} ${squid_flags} -k reconfigure"
stop_precmd="squid_checkrunning"
stop_cmd="squid_stop"load_rc_config ${name}
squid_chdir=${squid_chdir:-"/usr/local/squid/logs"}
squid_enable=${squid_enable:-"NO"}
squid_flags=${squid_flags-"-D"}
squid_pidfile=${squid_pidfile:-"/usr/local/squid/logs/squid.pid"}
squid_user=${squid_user:-squid}
default_config=/usr/local/etc/squid/squid.confpidfile=${squid_pidfile}
required_dirs=${squid_chdir}# squid(8) will not start if ${default_config} is not present so try
# to catch that beforehand via ${required_files} rather than make
# squid(8) crash.
# If you remove the default configuration file make sure to add
# '-f /path/to/your/squid.conf' to squid_flagsif [ -z "${squid_flags}" ]; then
required_files=${default_config}
firun_rc_command "$1"
squid.confcache_effective_user
cache_effective_group
>squid.conf
>
>cache_effective_user
>cache_effective_groupесть такая в конфиге
cache_effective_user squid
cache_effective_group wheel