Displaying 20 results from an estimated 1000 matches similar to: "httpd log weirdness"
2003 Sep 29
4
IPFILTER_DEFAULT_BLOCK & No route to host
Hi,
After the option IPFILTER_DEFAULT_BLOCK is specified at kernel conf on FreeBSD 4.8 stable (cvsup'd
with tag RELENG_4_8), the machine cannot be ping'd by others on the same network.
In addition, the machine cannot ping itself.
ping localhost (or 127.0.0.1) -> no route to host
ping itself with its own ip address -> no route to host
The freebsd box, with an external pppoe
2003 Sep 29
4
IPFILTER_DEFAULT_BLOCK & No route to host
Hi,
After the option IPFILTER_DEFAULT_BLOCK is specified at kernel conf on FreeBSD 4.8 stable (cvsup'd
with tag RELENG_4_8), the machine cannot be ping'd by others on the same network.
In addition, the machine cannot ping itself.
ping localhost (or 127.0.0.1) -> no route to host
ping itself with its own ip address -> no route to host
The freebsd box, with an external pppoe
2010 Dec 06
3
CentOS 5.5 on a new Mac Mini? no CD Driver?
Hi All,
I am attempting to install CentOS 5.5 64 bit on my new Mac Mini. I boot to the CD and when I get to selecting where I am installing from (local cd, hard disk, ftp, etc) I select Local CD and it cannot find a driver and wants me to manually specify or use a driver disk.
I ave no idea what drive is in this system.
Can anyone point me in the right direction?
-Jason
2014 Oct 30
2
CentOS 6.5 equivalents in CentOS 7
I tried to install CentOS 7 on a new system. It works.
However, I'm noticing small things:
1. system-config-network-tui is not installed and yum cannot find it. I
realized for this -- nmtui
What about firewall? I can't seem to understand the replacement from
system-config-firewall-tui
Jason
2013 Apr 09
6
web collaboration packages.
Hello All,
Try as I might, I cannot get Zimbra 8.0.3 to install on CentOS 6.4, even
with --platform override. I followed some tutorials even that show the
result working and nada.
Can anyone suggest a good setup for e-mails erving, calendaring, web mail?
Web mail is particularly important for my wife so she can check e-mail when
she is at work.
Jason
2013 Apr 10
4
Formatting a USB Drive
Hi All,
I have a Drobo, connected to a CentOS 6.4 box. The box sees it as /dev/sdg.
I want to format it ext3 (as they dont support ext4) but when I try I get:
# fdisk -u /dev/sdg
WARNING: GPT (GUID Partition Table) detected on '/dev/sdg'! The util fdisk
doesn't support GPT. Use GNU Parted.
WARNING: The size of this disk is 17.6 TB (17592186044416 bytes).
DOS partition table
2012 Jan 25
6
Can anyone talk infrastructure with me?
Hi All,
I started a 501c3 (not-for-profit) organization back in February 2011 to deal with information archival. A long vision here, I wont bore you with the details (if you really want to know, e-mail me privately) but the gist is I need to build an infrastructure to accommodate about 2PB of data that is database stuff, stored video, crawl data, static data sets, etc. Right now in my testing of
2013 Dec 12
7
Do I need a dedicated firewall?
Hi All,
So my electricity bill is through the roof and I need to pair down some
equipment.
I have a CentOS 6.5 Server (a few TB, 32gb RAM) running some simple web
stuff and Zimbra. I have 5 static IP's from Comcast. I am considering
giving this server a public IP and plugging it directly into my cable
modem. This box can handle everything with room for me to do more.
Doing this would allow
2010 Dec 22
3
Changing Root E-Mail address
Hi All,
I installed a new CentOS 5.5 box and I am getting a daily e-mail (I am not sure how this was triggered) with XNTPD logs, HTTP Error and Disk Space).
It is being sent to root at www.6colors.co which bounces, but I have a catch all so it does get to me.
How do I change where this e-mail is sent? I have tried in /etc/postfix/main.cd, master.cf, bounce.cf.default, etc and I don't see
2013 Apr 11
3
How to change 'fstab' when you cannot boot the machine?
Hello All,
So My Drobo finished formatting and I added an entry to fstab for it and
now I cannot boot the machine. I get an error about
fsck.ext3: is a directory while trying to open /drobo
and then a mention of a valid super block
I had mounted the Drobo as /drobo and in 'fstab' I copied the line for '/'
changing to ext3 where it was ext4.
I have made a mistake
I cannot fix
2014 Oct 09
4
file system replication
Hi Everyone,
I need to keep 2 systems identical. Mostly e-mail directories, web
directories, mysql, etc. The goal here is to have a 2nd system ready to go
it the first one starts to exhibit hardware issues.
What are options to have this happen? I'm going out on a limb and thinking
rsync but I haven't used it past just simple use cases.
Can anyone provide some insight for me?
CentOS
2011 Mar 16
3
Watching a directory
Hi All,
I am thinking about an idea, but it requires that I be able to watch several
directories for files that are added, deleted or maybe changed.
Let start with adding files. What tools are available for me to watch a
directory. In an example, if a file is added to a directory I want to run a
shell script that will do some conversation on the file to produce a second
copy.
I have the shell
2012 Jan 17
5
Dedicated Firewall/Router
Hi All,
I want to build a dedicated firewall/router as I am launching a NPO and I can host this in my garage. (Comcast offered me a 100 x 20 circuit for $99/mo with 5 statics)
I used to run Untangle, but as of version 9, you are forced to use their build in protocol policies versus the firewalling I am used to (Deny All and then opening holes for specific IP's, etc).
There are so many
2018 Jul 24
0
oddity in transform
I don't think it has much to do with transform in particular:
> BOD <- data.frame(Time = 1:6, demand = runif(6))
> BOD[["X"]] <- BOD[1:2] * seq(6); BOD
Time demand X.Time X.demand
1 1 0.8649628 1 0.8649628
2 2 0.5895380 4 1.1790761
3 3 0.6854635 9 2.0563906
4 4 0.4255801 16 1.7023206
5 5 0.5738793 25 2.8693967
6 6 0.9996713
2018 Jul 24
0
oddity in transform
I think you meant to call BOD[,1]
From ?transform, the ... arguments are supposed to be vectors, and BOD[1] is still a data.frame (with one column). So I don't think it's surprising transform gets confused by which name to use (X, or Time?), and kind of compromises on the name "Time". It's also in a note in ?transform: "If some of the values are not vectors of the
2018 Jul 24
2
oddity in transform
The idea is that one wants to write the line of code below
in a general way which works the same
whether you specify ix as one column or multiple columns but the naming entirely
changes when you do this and BOD[, 1] and transform(BOD, X=..., Y=...) or
other hard coding solutions still require writing multiple cases.
ix <- 1:2
transform(BOD, X = BOD[ix] * seq(6))
On Tue, Jul 24, 2018 at
2012 Jan 17
2
Theoretical Firewall Specs?
So, the more I look at various ways to lay out my infrastructure, the more I am thinking about specs for hardware.
Starting with firewalling.
How does one determine the specs for a firewall?
What I mean is:
1. motherboard/CPU - p4? Dual-Core? Intel i3, i5, i7?
2. RAM? 4gb? 8gb? More? 32gb?
3. Obviously GB Nics!
I am bring about 300gb of traffic a month right now and I expect that to
2006 Oct 25
1
sourcing dput output
Is this not supposed to work?
> dput(BOD, file = "/BOD.R")
> source("/BOD.R")
Error in attributes(.Data) <- c(attributes(.Data), attrib) :
row names must be 'character' or 'integer', not 'double'
> dput(iris, file = "/iris.R")
> source("/iris.R")
Error in attributes(.Data) <- c(attributes(.Data), attrib) :
2012 Jan 25
1
HP ProLiant N40L
Hi All,
A friend gave me his HP ProLiant N40L and I am wondering if anyone has installed CentOS 6 on it? Raided the drives, etc?
-Jason
2014 Oct 28
1
Booting using another kernel
Hi Guys,
I am encountering this bug: https://bugs.centos.org/view.php?id=7656
I put in the CentOS 7 DVD and it starts to install and hangs with starting
x.
The suggestion was made in the bug report to boot using the 'kernel-ml' and
to be honest I don't know how to do that.
I build a machine that has 4 video cards in it. (2 x nVidia Geforce GT 970
and 2 x Sapphire Toxic R9 270x).