Problem with ifconfig???

2002-10-08 Thread Andres Junge Mac-Evoy

Hello:
I have this strange problem. When i issue ifconfig the output for eth0 is 
the following:

eth0  Link encap:Ethernet  HWaddr 00:07:95:0F:79:F9
   inet addr:64.86.241.90  Bcast:64.86.241.95  Mask:255.255.255.248
   UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
   RX packets:184422998 errors:0 dropped:4876 overruns:0 frame:0
   TX packets:228525471 errors:0 dropped:0 overruns:0 carrier:0
   collisions:0 txqueuelen:100
   RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)
   Interrupt:5 Base address:0xd000

as you see packets count are ok but bytes count??? Any idea. In 
/proc/net/dev is the same thing..

Thanx
Salu2
Andres


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Problem with ifconfig???

2002-10-08 Thread Andres Junge Mac-Evoy
Hello:
I have this strange problem. When i issue ifconfig the output for eth0 is 
the following:

eth0  Link encap:Ethernet  HWaddr 00:07:95:0F:79:F9
  inet addr:64.86.241.90  Bcast:64.86.241.95  Mask:255.255.255.248
  UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
  RX packets:184422998 errors:0 dropped:4876 overruns:0 frame:0
  TX packets:228525471 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:100
  RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)
  Interrupt:5 Base address:0xd000
as you see packets count are ok but bytes count??? Any idea. In 
/proc/net/dev is the same thing..

Thanx
Salu2
Andres



Re: Software for www portal management

2002-04-04 Thread Andres Junge Mac-Evoy

Try
Post-Nuke


Salu2
Andres

At 09:27 pm 04/04/02 +0200, Krzysztof Mazurczyk wrote:

From:  Krzysztof Mazurczyk [EMAIL PROTECTED] on 04-04-2002 21:27
ZE2

To:[EMAIL PROTECTED]
cc:
Subject:Software for www portal management


Hi,

Does anybody know a software (open source of cause) for portal management ?

Regards,
Chris


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact
[EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Problem with apc and apachectl

2002-04-03 Thread Andres Junge Mac-Evoy

Hello:

I have installed apc (php4-apc 1.1.0pl1-5), and it seems to work very well. 
The scripts get loaded 200% times faster (very impressive).

The only problem I have is when i try to use 'apachectl configtest' i get 
the following error:

apc_sem_create: semget(0,...) failed: No space left on device

The disk empty as df -k says:
df -k
Filesystem   1k-blocks  Used Available Use% Mounted on
/dev/hda5   482217 82434374884  19% /
/dev/hda2   124427   783117220   1% /boot
/dev/hda6 12294200784904  10884772   7% /usr
/dev/hda7 12294200117224  11552452   2% /var
/dev/hda8 12286552   1440144  1088  13% /home

So i really don´t know what is the problem.
In php.ini i have the following configuration:
zend_extension=/usr/lib/php4/extensions/zend/php_apc.so
apc.mode=shm
apc.check_mtime=1
#apc.ttl=20
apc.regex=apcinfo.php:apc

Any idea?
Thanx in advance.

Salu2
Andres

Other useful (maybe) data:
php4-apc  1.1.0pl1-5
php4  4.1.1-1
apache1.3.22-5



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: [Apc-cache] Problem with apc and apachectl

2002-04-03 Thread Andres Junge Mac-Evoy

Thanx, it works great
The question i have now is, what is the long term solution for this? 
Upgrade APC?

Salu2
Andres

At 09:50 am 03/04/02 -0700, you wrote:

From:  Steve Meyers [EMAIL PROTECTED] on 03-04-2002 09:50 MST

To:Andres Junge Mac-Evoy [EMAIL PROTECTED]
cc:[EMAIL PROTECTED], [EMAIL PROTECTED]
Subject:Re: [Apc-cache] Problem with apc and apachectl


You're leaking semaphores, APC doesn't seem to always clean up after
itself gracefully.

Do an apachectl stop, then execute the following command:

ipcs -s -t | cut -f 1 -d   | egrep ^[0-9]+$ | xargs ipcrm sem

WARNING: if you have anything else on your system that uses semaphores,
this could be trouble!  On my system it works fine, but on yours it
might not.

Never do an apachectl restart or apachectl configtest, as these seem
to be guaranteed to leak semaphores.  I think if you do apachectl stop
and wait a few seconds, it actually cleans up properly.  You have to get
a clean slate first though, so stop apache and run the above command to
clean up the mess, and from now on always stick to start and stop, never
restart.

That's my experience, anyway... I haven't looked at the code for it, so
I don't know exactly what's going on in there.

On Wed, 2002-04-03 at 09:00, Andres Junge Mac-Evoy wrote:
  Hello:
 
  I have installed apc (php4-apc 1.1.0pl1-5), and it seems to work very
well.
  The scripts get loaded 200% times faster (very impressive).
 
  The only problem I have is when i try to use 'apachectl configtest' i get
  the following error:
 
  apc_sem_create: semget(0,...) failed: No space left on device
 
  The disk empty as df -k says:
  df -k
  Filesystem   1k-blocks  Used Available Use% Mounted on
  /dev/hda5   482217 82434374884  19% /
  /dev/hda2   124427   783117220   1% /boot
  /dev/hda6 12294200784904  10884772   7% /usr
  /dev/hda7 12294200117224  11552452   2% /var
  /dev/hda8 12286552   1440144  1088  13% /home
 
  So i really don´t know what is the problem.
  In php.ini i have the following configuration:
  zend_extension=/usr/lib/php4/extensions/zend/php_apc.so
  apc.mode=shm
  apc.check_mtime=1
  #apc.ttl=20
  apc.regex=apcinfo.php:apc
 
  Any idea?
  Thanx in advance.
 
  Salu2
  Andres
 
  Other useful (maybe) data:
  php4-apc  1.1.0pl1-5
  php4  4.1.1-1
  apache1.3.22-5
 
 
 
  ___
  Apc-cache mailing list
  [EMAIL PROTECTED]
  http://lists.communityconnect.com/mailman/listinfo/apc-cache
 
--
Advertising copy: Where sentences are replaced by participle phrases.
Noun phrases. And dangling conjunctions.


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




ISP Standard.

2002-03-13 Thread Andres Junge Mac-Evoy

Hello:

Is there any standard, for hosting domains?
For example i´m using this sort of configuration: Every domain has his own 
home dir (/home/dominio/example.com). So every domain have a username 
(example.com) with the above home dir.
In each domain-dir there is also a data dir where i put the www dir and 
for example the ftp dir. I have configured proftd to chroot to data dir so 
they only see that dir.
Other dirs i have in each domain-dir:
conf: all configuration directives (apache.conf, zone.conf, etc);
logs: all logs
users: this is where the MailDirs for the virtual users are.

I have follow this configuration because of vmailmgr, but i don´t know if 
this is the rigth thing.

Maybe we can discuss some configuration for domain hosting and propose a 
standard, so we can build isp-software (billing, provisioning, etc) based 
on this. What do you think?

Salu2
Andres


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: ISP Client Database

2002-03-06 Thread Andres Junge Mac-Evoy

I also need a package like that. Long time ago i have search for packages 
but i did´nt find any good one, all where to specific. Maybe we need to 
develop something that is flexible, maybe something plug-in-able (LDAP, 
ftp, pop, etc). I can collaborate too.

Salu2
Andres


At 01:02 am 06/03/02 -0500, [EMAIL PROTECTED] wrote:

From: Gene Grimm [EMAIL PROTECTED]@mail.networksonline.com on 06-03-2002
   01:02 EST

To:   Debian ISP [EMAIL PROTECTED]
cc:
Subject:  ISP Client Database


I don't recall if this has been asked before. Does anyone know of any
Linux package for maintaining ISP customer account information in a
database that can also process radius, POP3/IMAP, ftp account, and web
site creation and removal on the actual servers?

We need a package (and I would rather not have to write one if another
exists) that can allow our customer service people to create customer
records with info on the radius, POP3/IMAP, and web site (with ftp and
FrontCage access) services that our clients request. The requirements
are an SQL database, browser-based interface, and maintaining the actual
accounts on distributed servers. If anyone knows of such a package, I
would appreciate an email (off list is preferrable). If I have to write
one myself, I am also open to a colaborative effort with other parties
in the package design and development.

The other criteria is that we want to allow our resellers access to
their customer base while only our direct office personnel are able to
see all records in the database. I would think there are enough other
Linux-based ISP's that are doing the same sort of thing that this would
be a common desire.


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact
[EMAIL PROTECTED]


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]