This apparently can apply to many php applications, but in this case it was Nagios giving me grief. What fixed this issue for me was giving execute permissions on the directory with the .htaccess file in it. The permissions on the .htaccess file itself was not the issue.
Category Archives: Linux Servers and Software
SugarCRM contacts.php email1 column issue
My original post in the SugarCRM forums was titled 5.1 Contacts export file shows email1 column twice but with invalid data.
I had not looked at this for some time but it raised its head again this week and I noted that while I had issued a bug report and it has been assigned, it will not be deployed until v5.5. so I’ll need to keep making the manual changes in the various v5.1/v5.2 sites that I manage.
Adding new drives to SMEServer as a raid pair
Adding two new 1Tbyte drives into my SMEServer v7.4 as a raid pair for backups. Made good use of the LVM How-To (again!)
Obviously installing the physical drives comes first and they should be recognised by the bios and then as the server booted mine were flagged as /dev/sda and sdb respectively.
Because these are new drives and I am adding them rather than modding the current drives I am working in the normal console.
#fdisk /dev/sda
>p –print the current state (should show as blank)
>n –add a new partition
>p –primary partition
>1 –partition number
>t –change the type or id of the drive
>hex= fd –change to Linux raid
>p –print again the details and shows now as approx 1T lvm partition
>w –write the partition table and exit
repeat for /dev/sdb
#shutdown -r now
Restarting the server should automatically match the two drives as a raid pair. Check by reading through
#cat /var/log/dmesg
for something like this:
md: Autodetecting RAID arrays.
md: could not bd_claim hda1.
md: could not bd_claim hda2.
md: could not bd_claim hdb1.
md: could not bd_claim hdb2.
md: autorun …
md: considering sdb1 …
md: adding sdb1 …
md: adding sda1 …
md: created md3
md: bind
md: bind
md: running:
raid1: raid set md3 active with 2 out of 2 mirrors
md: … autorun DONE.
Next check what is showing for LVM
#pvscan
PV /dev/md2 VG main lvm2 [186.19 GB / 64.00 MB free]
PV /dev/md3 lvm2 [931.51 GB]
Total: 2 [1.09 TB] / in use: 1 [186.19 GB] / in no VG: 1 [931.51 GB]
shows my new pair ready for inclusion in the LVM volume groups and logical volume.
Here I ran into an annoyance with a message Insufficient Extents.
I figure I want the whole disk and the above indicates 931.51G is free
lvm> lvcreate /dev/backups -L931.51G -n backups
CTRL-c detected: giving up waiting for lock
Rounding up size to full physical extent 931.51 GB
Insufficient free extents (238466) in volume group backups: 238467 required
I have since learnt that lvm does some rounding and that using the ‘byte’ size is not the best option.
vgdisplay
— Volume group —
VG Name backups
System ID
Format lvm2
Metadata Areas 1
Metadata Sequence No 8
VG Access read/write
VG Status resizable
MAX LV 0
Cur LV 0
Open LV 0
Max PV 0
Cur PV 1
Act PV 1
VG Size 931.51 GB
PE Size 4.00 MB
Total PE 238466
Alloc PE / Size 0 / 0
Free PE / Size 238466 / 931.51 GB
VG UUID #######################
In the above screen the important bit is the “Total PE 238466” which tells me the Physical Extents available.
Changing my command to create the lv so that I use the PE rather than byte value
lvm> lvcreate /dev/backups -l238466 -n backups
Logical volume “backups” created
lvm>
gives a successful outcome.
lvm> lvscan
ACTIVE ‘/dev/main/root’ [184.19 GB] inherit
ACTIVE ‘/dev/main/swap’ [1.94 GB] inherit
ACTIVE ‘/dev/backups/backups’ [931.51 GB] inherit
Next to format the new backups volume
#mke2fs /dev/backups/backups
Add the journalling
#tune2fs -j /dev/backups/backups
Edit fstab to add the mounting of this drive by inserting this line
/dev/backups/backups /backups ext3 usrquota,grpquota 1 1
and create the mount point – in my case – /backups
#mkdir /backups
Then one final restart of the server to see that it all starts ok and its done.
cfdisk CentOS4 SMEServer
I was trying to locate an install of cfdisk to help managing the drives on my SMEServer. There is no readily obvious yum repo with cfdisk and I eventually used an rpm that would work with Fedora.
However, cfdisk kept reporting ‘FATAL Error Cannot seek drive’ and a quick search reveals that cfdisk does not yet understand large drives like the 1Tbyte drives I have installed.
Outcome, dont waste time on cfdisk.