Me in IT UNIX/Linux Consultancy is een in Utrecht gebaseerd bedrijf dat zich specialiseerd in UNIX and Linux consultancy. Ervaring met Red Hat Enterprise Linux, Fedora Project, CentOS, OpenBSD en gerelateerde Open Source oplossingen, daarom is Me in IT UNIX/Linux Consultancy een goede partner voor implementatie, onderhoud en uitbreiding van uw omgeving.
Open Source software is een belangrijk aspect van elke Linux distributie. Me in IT UNIX/Linux Consultancy gebruikt Open Source software waar mogelijk en probeert dit voordeel verspreiden. In het artikel gedeelte zijn vele UNIX/Linux avonturen te vinden, die anderen hopelijk kunnen inzetten.
It's very difficult to get grip on the estimates price of a "simple" LAMP server. Here are some numbers to help you get an accurate estimate of a LAMP server.
So as a conclusion: One average webserver costs around $ 120,- (with tax) per month to run on the EC2. There are cheaper solutions to host your website(s), but Amazon EC2 provides the option to add a machine in a couple of minutes or even automated. This flexibility is not found in many other products.
While experimenting with Amazons interpretation of cloud computing, here is what I did to create persistent storage, create an instance and attach the storage to the instance.
Go to Amazons developer section and download, unpack and install the files. Now edit ~/.bashrc (or any other file that is executed at login) and add this:
export EC2_HOME=~/.ec2
export PATH=$PATH:$EC2_HOME/bin
export EC2_PRIVATE_KEY=$(ls $EC2_HOME/pk-*.pem)
export EC2_CERT=$(ls $EC2_HOME/cert-*.pem)
export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Home/
export EC2_URL=https://eu-west-1.ec2.amazonaws.comec2-describe-regions.
Check out the wonderful section on Paul Stamatiou's website at "Getting Started". It describes how to create and use the keys.
You will have to authorize access from the internet to port 22 and 80, or any other. Here is how it's done:
ec2-authorize default -p 22
ec2-authorize default -p 80default refers to all machines unless specified differently.An instance can be seen as an individual machine. It's virtual, but who cares about that? I use the image "ami-2a0f275e", but see other images can be used as well. Use ec2-describe-images -o amazon to get a list of available images owned (-o) by amazon.
ec2-run-instances -z eu-west-1a -k ec2-keypair ami-2a0f275eec2-describe-availability-zones.To allocate some space on the S3 infrastructure of Amazon, use this command:
ec2-create-volume -s 1 -z eu-west-1aWhen the volume is created; assign it to an instance with this command:
ec2-attach-volume vol-38a24751 -i i-c2f2c5b6 -d sdbec2-describe-volumes to get a list of available volumes.ec2-describe-instances to get a list of available instances.dmesg to see if attaching has worked. This is the ouput I got:dmesg | tail -n 1
sdb: unknown partition tableLogin to your machine using SSH:
ssh -i .ec2-keypair root@MACHINEdescribe-instances.Host *.compute.amazonaws.com
IdentityFile ~/.ec2/ec2-keypair
User rootNow that you are ready, login and type:
mkfs.ext3 /dev/sdbMount the volume (once) by issuing:
mount /dev/sdb /mntYou can continue to use the instance with this "static" IP, but to associate one IP with this instance, follow these steps. First register an IP:
ec2-allocate-addressNow link the IP with an instance.
ec2-associate-address 79.125.5.49 -i i-0ca09678The Amazon elastic compute cloud and S3 facilities work great, I'm not sure about the availability of EC2, not about S3, but Amazon states that S3 should be more "secure" then storing stuff in the local storage of the instance.
Permissions in Linux (or UNIX) can be difficult to understand. Here is a step-plan to determine the right combination of permissions.
Either read in the "Explanation" field in the table below what you want to do, or do ls -l and see what it means. Each object (file, directory, sockets, device, etc) has 10 positions to indicate what's possible with the object. For example you could see -rwxr-x---. You can split the 10 positions up into these parts:
| Numeric | Readable | Explanation |
| 0 | --- | No access. |
| 1 | --x | Execute access.* |
| 2 | -w- | Write access.** |
| 3 | -wx | Write and execute access.*** |
| 4 | r-- | Read access. |
| 5 | r-x | Read and execute access. |
| 6 | rw- | Read and write access. |
| 7 | rwx | Read, write and execute access. |
*= This is an odd combination, executing something that's not readable is not possible.
**= A strange combination; writing when you are not able to read.
***= This is an weird combination, you can't execute when you can't read the file, though you may write the file.
There are some special permission sets. When you see an "s" or an "S" on the location where you'd expect an "x", this means:
chmod 4755 object.chmod 4650 object.chmod 2775 object. This bit on a directory means all files in that directory that will be created, will be owned by the group that owns the directory.chmod 2745 object.So you like bash, just like me. There are times though where you'd need to work on a machine where there is no bash, but ksh(3). Here is a list of commands and keys to help you:
Hit escape a few times, now hit "k" and "j" to move back and forward into the history.
Edit the command with the letters "h" and "l".
Type a part of your command, hit escape a few times, now hit "\" to complete the command.
You can't display what your options are, (in bash just tab a few times)
Either run this command once, or add it to your ~/.profile:
export PS1="${USER}@$(hostname) ${PWD##*/} $ "Have you ever heard of (or used) a group password in Linux? For me this strange concept was new, but here's what you can use it for.
A group password in Linux allows a user to temporarily (in a subshell) gain extra permissions of a group, after successfully entering the group password.
To set a group password use gpasswd:
# gpasswd finance
New Password:
Re-enter new password:To gain those extra permissions you can use newgrp:
$ newgrp financeSome of the disadvantages are:
The User Mask (umask) can be managed with the command umask. A umask is the reverse value of the octal permission set that files and directories are created with.
So, a umask of 0777 creates files with an octal permission value of 0000; no permissions to read, write or execute.
But; there is a strange thing about the umask; it never allows to make files executable. Here is a demonstration of this "flaw"/"security feature".
$ umask 0027
$ touch me
$ ls -l me | awk '{print $1}'
-rw-r-----I would have expected 750, instead 640 is produced. This is default security behaviour of UNIX/Linux.
On slashdot somebody desribes that you can find the longest left hand typed password with UNIX tools like grep. That's a simple solution for a difficult problem!
Here is a script that would print the longest words typable with the left hand side of a keyboard. The list shows the longest word on top.
#!/bin/sh
status="notfound"
cat /usr/share/dict/words | while read word ; do
for letter in y u i o p h j k l n m ; do
echo "$word" | grep "$letter" > /dev/null
if [ "$?" = 0 ] ; then
status="found"
fi
done
if [ "$status" = "notfound" ] ; then
echo "$word"
fi
done | while read match ; do
length=$(echo "$match" | wc -c)
echo "$length $match"
done | sort -nr | awk '{print $2}'Network Address Translation is a technique to masquerade IP addresses on your internal LAN to the outside world. In other words; the outside world will not be able to look into your network.
This technique is easy to setup and maintain, saves IP addresses and is likely more secure that pure routing. To set it up, you require:
To be able to use IP forwarding, you must tell the kernel that it's okay to forward traffic from one network card to another. This setting is found in /etc/sysctl.conf. Set net.ipv4.ip_forward to 1.
To do this, execute:
echo 1 > /proc/sys/net/ipv4/ip_forward
echo "net.ipv4.ip_forward = 1" >> /etc/sysctl.confMake sure the service IPtables is running now and is started at bootup:
# service iptables status
<output omitted>
# chkconfig --list iptables
iptables 0:off 1:off 2:on 3:on 4:on 5:on 6:offNow that the kernel knows it's allowed to forward traffic from one NIC to another, configure the firewall. The firewall is the intelligent part of setting up NAT, IPtables actually 'does the work'. Here are the commands to set it up:
/sbin/iptables -A FORWARD -i eth0 -o eth1 -m state --state RELATED,ESTABLISHED -j ACCEPT
/sbin/iptables -A FORWARD -i eth1 -o eth0 -j ACCEPT
/sbin/iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADEYou have only configured the firewall for now, a reboot would undo all settings. Run this command once you are happy with the setup:
# /sbin/service iptables saveReboot to test the setup. Your LAN client will have to set the default route to the IP address of the NAT machine's LAN NIC.
There are a few ways to start (and stop) daemons at specific runlevels. For Fedora you could use modify how Apache (httpd) is started:
This is a simple command line tool to tell the the startup facility to enable (on) the Apache (httpd) daemon at runlevel 4 (--level 4). Works great and fast, but the script httpd must have some parameters in the file to let chkconfig know what to do with it:
# chkconfig: 4 85 15
# description: Apache is a World Wide Web server. It is used to serve HTML files and CGI.
# processname: httpd
# config: /etc/httpd/conf/httpd.conf
# config: /etc/sysconfig/httpd
# pidfile: /var/run/httpd.pidls /etc/rc4.d. The numbers of the startup script represent the order of how they are started.
A much simpler, more simplistic method to start Apache. This command symbolically links /etc/rc4.d/S85httpd to the startup script of Apache. Don't forget to also stop the daemons with this set of links:
ln -s /etc/init.d/httpd /etc/rc0.d/K15httpd
ln -s /etc/init.d/httpd /etc/rc1.d/K15httpd
ln -s /etc/init.d/httpd /etc/rc2.d/K15httpd
ln -s /etc/init.d/httpd /etc/rc3.d/K15httpd
ln -s /etc/init.d/httpd /etc/rc5.d/K15httpd
ln -s /etc/init.d/httpd /etc/rc6.d/K15httpdA text-based graphical menu to enable or disable services.
A graphical interface to enable or disable services.
Booting a computer to run Linux is quite a complex procedure. Happily it's understandable, so correctable when things break.
The bootloader could point to a kernel that's not there, or adds a boot parameter that incorrect. A.k.a. a typo. Review your Grub or Lilo configuration and try again. Grub is a lot easier to debug, is has a minimalistic shell included.
You could have built a kernel that's not suitable for your computer. I hope you have left and old kernel on your system, use Grub to select that kernel and boot it.
Init is quite simple, it reads /etc/inittab and starts RC. When you have "played around with" /etc/inittab and made a typo somewhere, you might need to boot of a CD to fix the typo.
This is the part where many "errors" can occur, like: "Apache is not starting". Review the startup script in /etc/init.d, review that there a script and it has no errors in it. Also read the article about controlling daemons.