Sponsor:

Server and Web Integrator
Link:
Kloxo-MR logo
6.5.0 or 7.0.0
Click for "How to install"
Donation/Sponsorship:
Kloxo-MR is open-source.
Donate and or Sponsorship always welcome.
Click to:
Click Here
Please login or register. 2024-04-28, 20:01:27

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Spacedust

Pages: 1 ... 242 243 [244] 245 246 ... 249
3646
Kloxo-MR Technical Helps / Re: The connection was reset
« on: 2013-01-15, 23:30:15 »
No, no, no !

Reload won't add new domains etc.

It must be graceful !

"A reload is not sufficient as it does not reload the SSL certificates if there are changes there. Any new VirtualHosts, new domain, new subdoman, etc.. (even if they use the same certs) require a new read of the certs, and reload doesn't do this.

A restart is required... however, the graceful restart, mentioned above, can do a full restart without interruption of current connections."

3647
Kloxo-MR Development / Re: Kloxo-MR for Centos 6
« on: 2013-01-15, 21:47:44 »
Quote from: "MRatWork"
Yes on Github and rpms.potissima.com possible as mirror.

Will this be a final version ? Please make it possible to easy update from 6.1.12.

3648
Kloxo-MR Technical Helps / Re: The connection was reset
« on: 2013-01-15, 18:22:56 »
Quote from: "Anik"
now theres 2. should i apply both fixes?  : :

No just replace your /etc/init.d/httpd with the last one.

3649
Kloxo-MR Technical Helps / Re: The connection was reset
« on: 2013-01-15, 16:43:53 »
Here's my config:

Code: [Select]
#!/bin/bash
#
# httpd        Startup script for the Apache HTTP Server
#
# chkconfig: - 85 15
# description: The Apache HTTP Server is an efficient and extensible  
#              server implementing the current HTTP standards.
# processname: httpd
# config: /etc/httpd/conf/httpd.conf
# config: /etc/sysconfig/httpd
# pidfile: /var/run/httpd.pid
#
### BEGIN INIT INFO
# Provides: httpd
# Required-Start: $local_fs $remote_fs $network $named
# Required-Stop: $local_fs $remote_fs $network
# Should-Start: distcache
# Short-Description: start and stop Apache HTTP Server
# Description: The Apache HTTP Server is an extensible server
#  implementing the current HTTP standards.
### END INIT INFO

# Source function library.
. /etc/rc.d/init.d/functions

if [ -f /etc/sysconfig/httpd ]; then
        . /etc/sysconfig/httpd
fi

# Start httpd in the C locale by default.
HTTPD_LANG=${HTTPD_LANG-"C"}

# This will prevent initlog from swallowing up a pass-phrase prompt if
# mod_ssl needs a pass-phrase from the user.
INITLOG_ARGS=""

# Set HTTPD=/usr/sbin/httpd.worker in /etc/sysconfig/httpd to use a server
# with the thread-based "worker" MPM; BE WARNED that some modules may not
# work correctly with a thread-based MPM; notably PHP will refuse to start.

# Path to the apachectl script, server binary, and short-form for messages.
apachectl=/usr/sbin/apachectl
httpd=${HTTPD-/usr/sbin/httpd}
prog=httpd
pidfile=${PIDFILE-/var/run/httpd.pid}
lockfile=${LOCKFILE-/var/lock/subsys/httpd}
RETVAL=0

# The semantics of these two functions differ from the way apachectl does
# things -- attempting to start while running is a failure, and shutdown
# when not running is also a failure.  So we just do it the way init scripts
# are expected to behave here.
start() {
        echo -n $"Starting $prog: "
        LANG=$HTTPD_LANG daemon --pidfile=${pidfile} $httpd $OPTIONS
        RETVAL=$?
        echo
        [ $RETVAL = 0 ] && touch ${lockfile}
        return $RETVAL
}

# When stopping httpd a delay of >10 second is required before SIGKILLing the
# httpd parent; this gives enough time for the httpd parent to SIGKILL any
# errant children.
stop() {
        echo -n $"Stopping $prog: "
        killproc -p ${pidfile} -d 10 $httpd
        RETVAL=$?
        echo
        [ $RETVAL = 0 ] && rm -f ${lockfile} ${pidfile}
}
reload() {
    echo -n $"Reloading $prog: "
    if ! LANG=$HTTPD_LANG $httpd $OPTIONS -t >&/dev/null; then
        RETVAL=$?
        echo $"not reloading due to configuration syntax error"
        failure $"not reloading $httpd due to configuration syntax error"
    else
        killproc -p ${pidfile} $httpd -HUP
        RETVAL=$?
    fi
    echo
}

# See how we were called.
case "$1" in
  start)
        start
        ;;
  stop)
        stop
        ;;
  status)
        status $httpd
        RETVAL=$?
        ;;
  restart)
      $apachectl $@
        RETVAL=$?
        ;;
  condrestart)
        if [ -f ${pidfile} ] ; then
                stop
                start
        fi
        ;;
  force-reload|reload)
        reload
        ;;
  graceful|help|configtest|fullstatus)
        $apachectl $@
        RETVAL=$?
        ;;
  *)
        echo $"Usage: $prog {start|stop|restart|condrestart|reload|status|fullstatus|graceful|help|configtest}"
        RETVAL=3
esac

exit $RETVAL

3650
Kloxo-MR Development / Re: Kloxo-MR for Centos 6
« on: 2013-01-15, 16:40:41 »
Quote from: "MRatWork"
Wait until this day, new upload will be release with some bugs fixed.

On GitHub ?

3651
Kloxo-MR Development / Re: Kloxo-MR for Centos 6
« on: 2013-01-14, 23:28:46 »
Quote from: "MRatWork"
Wait 1-2 days to fix for update from previous running well.

OK. That's what we all waiting for ;)

3652
Kloxo-MR Development / Re: Kloxo-MR for Centos 6
« on: 2013-01-14, 23:13:54 »
Mustafa we need proper install instructions.

3653
Kloxo-MR Development / Re: Kloxo-MR for Centos 6
« on: 2013-01-14, 21:03:14 »
Quote from: "MRatWork"
This http://rpms.potissima.com/6.5.0.c.2013-01-14-02/ version back to use old mail path ('/home/lxadmin/mail').

It uses different repos, so that's not the way to go. I'm waiting for github release.

3654
Kloxo-MR Development / Re: Kloxo-MR for Centos 6
« on: 2013-01-14, 19:12:57 »
Quote from: "MRatWork"
I am not testing upgrade but only for fresh install.

Many files and setting from previous may conflict with this version.

Ok. So not worth testing for me.

Can you update 6.5.0 candidate with a fix of mail forwarding and also test if assigning exclusive IP works ok so when you enter http://IP there is not Kloxo page but users page ?

3655
Kloxo-MR Development / Re: Kloxo-MR for Centos 6
« on: 2013-01-14, 18:57:00 »
Quote from: "MRatWork"
Quote from: "Spacedust"
Something is wrong with this version spamassassin is freezing and update is not going on.

I'm waiting for final.
Have you update or fresh install?.

Kloxo official and old Kloxo-MR using spamassassin, but this version using spamassassin-toaster.

Update. I need urgent update from Kloxo 6.1.12 and I'm unable to do this because mail forwarding is still not working well.

3656
Kloxo-MR Development / Re: Kloxo-MR for Centos 6
« on: 2013-01-14, 18:20:15 »
Something is wrong with this version spamassassin is freezing and update is not going on.

I'm waiting for final.

3657
Kloxo-MR Development / Re: Kloxo-MR for Centos 6
« on: 2013-01-14, 18:00:29 »
Found something:

Quote
Updating Core packages
- No 'httpd*/lighttpd*/nginx*' update found/not installed
- New mod_*/mysql*/php*/lx* version installed
Error: Missing Dependency: ucspi-tcp-toaster >= 0.88-4 is needed by package djbdns-1.05-17.2.x86_64 (kloxo-mr-release-arch)
Error: Missing Dependency: daemontools-toaster >= 0.76-2 is needed by package djbdns-1.05-17.2.x86_64 (kloxo-mr-release-arch)

3658
Kloxo-MR Development / Re: Kloxo-MR for Centos 6
« on: 2013-01-14, 17:42:18 »
Quote
9. Path for mail change from '/home/lxadmin/mail/domains' to '/home/vpopmail/domains'

Will be these accounts automatically moved and /var/qmail/assing file rebuild for a new structure ?

3659
Kloxo-MR Development / Re: Kloxo-MR for Centos 6
« on: 2013-01-14, 17:36:04 »
Does it work on CentOS 5 too ? Does djbdns work on CentOS 6 ?

3660
Kloxo-MR Development / Re: Kloxo-MR for Centos 6
« on: 2013-01-14, 17:11:54 »
Quote from: "MRatWork"
Immediately upload on rpms.potissima.com for testing!. Already for Centos 6 and qmail work ok!.

Good ! Finally :D

Pages: 1 ... 242 243 [244] 245 246 ... 249

Top 10 Social Networking:    Facebook    Twitter    LinkedIn    Pinterest    Google Plus    Tumblr    Instagram    VK    Flickr    Vine

Page created in 0.072 seconds with 16 queries.

web stats analysis