I’m putting the board back together.

The BBS Corner – Welcome to The BBS Corner.

Digital Distortion BBS

Digital Distortion BBS.

 

They have Solar Realms Elite!!!

Adding webmin and joomla to a centos box

Post LAMP on centos:

install webmin:

rpm -qa webmin
cd /tmp
wget http://www.webmin.com/jcameron-key.asc
rpm –import jcameron-key.asc
vi /etc/yum.repos.d/webmin.repo
edit to contain:

[Webmin]
name=Webmin Distribution Neutral
#baseurl=http://download.webmin.com/download/yum
mirrorlist=http://download.webmin.com/download/yum/mirrorlist
enabled=1

yum install webmin
service iptables stop
iptables -I INPUT -p tcp -m tcp –dport 10000 ;
service iptables save
service iptables start
browse to http://ip.address:10000 login with root

install joomla:

acquire latest joomla
mkdir /var/www/html/joomla
unzip joomla -d /var/www/html/joomla
chown -R apache:apache /var/www/html/joomla/
touch /var/www/html/joomla/configuration.php
chmod 777 /var/www/html/joomla/configuration.php

add joomla user to mysql:

mysql -u root -p
CREATE DATABASE joomla;
CREATE USER juser@localhost;
SET PASSWORD FOR juser@localhost= PASSWORD(“password”);
GRANT ALL PRIVILEGES ON joomla.* TO juser@localhost IDENTIFIED BY ‘password’;
FLUSH PRIVILEGES;
exit;

sudo service httpd restart

web to http://your.ip.address/joomla to configure

after configuration is completed:
sudo rm -rf /var/www/html/installation/ (if you didn’t do it in web)
sudo chmod 755 /var/www/html/configuration.php

http://ip.address/joomla should now show joomla

centos configuration, the continuing saga

So, if you have been following along various posts made here over the past month, you know that I have taken to centos as my go-to server. I have made a nice centos vm at work and configured it with LAMP to serve as a intranet server.  Everything is running along nicely, so I thought I would take it up a bit.  I exported the vm onto a usb stick and brought it home.

In moving a ESXi 5.0 centos box from work (non x86) to my home testbox (x86), the virtual network device was no longer available on my home vmware box.

I needed to force the os to redetect network devices:

delete the file /etc/udev/rules.d/70-persistent-net.rules
shutdown
Edit the vm and install a new virtual network adapter
(in my case I left the E1000 that existed and added a VMXNET2 adapter as I would like to maintain the current adapter as eth0 so the vm will still function at work).
Boot centos
ifconfig should show eth1 present without an ip
run setup and configure a new network adapther, eth1, assign ip
exit setup and reboot

eth1 should be good.

How to Install LAMP, Webmin & ConfigServer Security & Firewall on a CentOS 6.0 GoGrid Server

Oh sure, now I find a great write up.

How to Install LAMP, Webmin & ConfigServer Security & Firewall on a CentOS 6.0 GoGrid Server.

Server World – Build Network Server

Server World – Build Network Server.

DigitalOcean Links

A bunch of great tutorials in getting a centos webserver up:

How To Install Linux, Apache, MySQL, PHP (LAMP) stack On CentOS 6 | DigitalOcean

How to install phpmyadmin in centos and nginx server | DigitalOcean

How To Install phpMyAdmin on a LEMP server | DigitalOcean

How To Install and Secure phpMyAdmin on a CentOS 6.4 VPS | DigitalOcean

How To Install WordPress on Centos 6 | DigitalOcean

How To Install Joomla on a Virtual Server Running CentOS 6 | DigitalOcean.

A Basic MySQL Tutorial | DigitalOcean

How To Install Drupal on a Virtual Server Running CentOS 6 | DigitalOcean

And a few that aren’t from DigitalOcean:
Installing Drupal on CentOS 5/Red Hat/Fedora | Drupal.org
The SysAdmin nomad: How to install Joomla 3.1 on Centos 6.4 minimal.
Install Joomla 3.1.1 Using LAMP (Linux, Apache, MySQL, PHP) on RHEL, CentOS & Fedora
Install Joomla on CentOS 6 – GeekPeek.Net

» Black Viper’s Windows 8 Service Configurations

» Black Viper’s Windows 8 Service Configurations.

PissedOffAdmins » mount: unknown filesystem type ‘LVM2_member’

A friend brought me his Iomega Home Media Network Hard Drive that had lost all network connectivity – looks like the network jack took a power hit and, unfortunately, it is the only physical port that supports communication (the usb port is for attaching another external drive to the Iomega).  Using the latest SystemRescueCD, and mounting the drive to a desktop sata port me see the LVM2 “Linux Raid Member” disk and copy his files.

PissedOffAdmins » mount: unknown filesystem type ‘LVM2_member’.

Iomega Home Media

How to delete OEM Partition

Nice article on using DISKPART to get rid of OEM partitions.

How to delete OEM Partition | Jared Heinrichs.

 

Now, how about a how-to use a OEM/Hidden partition to automatically store System Restore / Shadow Copy files?? Anyone?