
REGISTER TODAY!
LOPSA Training at OLFUNavigationEvents
Recent Updates
Upcoming events |
UnixHow to run different mailservers side by side for the same domainSubmitted by ski on Thu, 2009-10-08 12:43.Applications | Linux | Unix
We are migrating from our old mail server to a new one with a completely different internal structure and many new features. I am using imapsync to migrate the data over (slow, but it works well). Before we do the last sync, my boss asked me to figure out a way to run the servers side by side so we could have the early adopters try the new mail server. The kicker is that both servers are set up to serve the same domain and we need to be able to have the early adopters get to their mail from either server. This solution works for us, but I am not sure if this is the best solution and would love to hear your ideas. ski's blog | add new comment | 924 reads
Nice setup for a software development startupSubmitted by ski on Wed, 2009-08-12 06:31.Applications | Backups | Directory Services | DNS | hardware components | Linux | Mac OS X | SAN | Storage | Unix | Windows
I was asked recently to find a low cost setup for a small software development company (about 30 people) for their infrastructure that had growth potential. I came up with the following: - One server running Open-E DSS software SAN/NAS: This holds 12 1TB disks in a raid 10 mirror and shares out the disks via iscsi, smb, and nfs (I am not using the other protocols available such as AFP, FTP...). It is certified for VMware. They use it for home directories and as an iscsi SAN for ESXi. - Two servers running ESXi software attached via iscsi to the SAN. along with a UPS, rack, switch, and firewall. ski's blog | add new comment | 781 reads
MobaXtermSubmitted by Mobatek on Sun, 2009-06-07 14:32.Linux | Network | Networking | Networking | Unix
MobaXterm is an enhanced terminal with an X server and a set of Unix commands (GNU/Cygwin) packaged in a single executable. Stable MobaXterm (formerly known as MobaXVT) is an enhanced terminal with an X server and a set of Unix commands (GNU/Cygwin) packaged in a single portable exe file. MobaXterm includes a great multitab native Windows terminal, a new X server based on X.Org for easily export your Unix/Linux display and a lot of new GNU Unix commands. You can also use some of the free plugins for extending MobaXterm capabilities! - The "split-mode" allows SysAdmins to monitor 4 servers at the same time add new comment | 849 reads
Example of using "ulimit" to limit memory usageSubmitted by Aleksey Tsalolikhin on Wed, 2009-04-01 21:28.Unix
ulimit can be used to limit memory utilization (among other things) Here is an example of setting memory usage so low that /bin/ls (which is larger than /bin/cat) no longer works, but /bin/cat still works. $ ls -lh /bin/ls /bin/cat Aleksey Tsalolikhin's blog | add new comment | 5213 reads
Notes on accessing SVN over SSHSubmitted by Aleksey Tsalolikhin on Fri, 2008-09-26 12:32.Unix
Here are my notes how I set up SVN over SSH to an SVN server that had been set up to run SVN as a single user, "svn". So, we have multiple users on the remote side, all logging in as "svn" on the SVN server side. Authentication is done via a dedicated key-pair, with special options to make SVN+SSH work. See http://svn.collab.net/repos/svn/trunk/notes/ssh-tricks for more details. These are just my notes, the above link is authoritative. Procedure: 1. Generate a dedicated key pair [SVN Client]$ ssh-keygen -f ~/.ssh/svnssh Generating public/private rsa key pair. Created directory '/home/tsalolia/.ssh'. Aleksey Tsalolikhin's blog | add new comment | 3493 reads
Grub-booting memtest86 on x86 hardwareIt is trivial to set things up so you are able to select memtest86 as a boot option in GRUB: Download the latest memtest source from http://www.memtest86.com. Extract and follow the instructions in the README that comes with it to compile. Copy the resulting memtest.bin to /boot and edit /etc/grub.conf to have the following 3 lines:
title Memtest86
root (hd0,0)
kernel /boot/memtest.bin
Make sure you reboot to test. In theory this should work with any x86 OS + bootloader. I am doing this with RHEL 4 + GRUB. nomad's blog | 1 comment | 34034 reads
Mixing Multiple Volume Managers (especially ZFS and VxVM)I've recently had a number of projects at work that want to mix multiple volume managers on a single server, specifically ZFS and VxVM for SAN volumes (actually, three including SVM for internal boot disk mirroring). The projects generally are for database servers, and want to use VxVM for database volumes because ZFS currently has some serious limitation on database size (limited number of devices recommended in a single zpool) and performance (single threaded checksumming, for one). However, at the same time, they want to have access to some of ZFS's features (in particular, the ability to oversubscribe filesystems, dynamic resize, snapshots and rollback) for some of the other filesystems. spp's blog | add new comment | 11156 reads
Heartbeat / Linux-HASubmitted by dlang on Tue, 2007-10-16 22:51.Availability | Unix
Failover and availability clustering for *nix systems Mature Linux-HA aka Heartbeat is a modular package to control high-availability clustering. In spite of it's name it is not limited to Linux (although that is the primary platform), It has an automake based compile and has been used on *BSD, Solaris, and to some extent on AIX as well. It can hearbeat in multiple ways (UDP broadcast, multicast, and unicast as well as over serial ports, although the serial port heartbeat has been accidently broken in some versions), and over multiple channels (up to 32 as of the time of writing) It can support sub-second failover It delays heartbeat checking on initial boot to allow switches time to get through their spanning tree detection timeouts. add new comment | 68519 reads
Notes on *nix atimeSubmitted by ski on Thu, 2007-08-09 12:53.Linux | Performance Tuning | Unix
Read an interesting discussion on the lkml list where Linus and friends talked about atime's performance impacts (http://kerneltrap.org/node/14148). Ingo phrased the problem best with: ' For every file that is read from the disk, lets do a ... write to Solutions are to mount your file systems with the noatime, nodiratime options. The only time this may cause a problem is if you have a local mail spool (the mailer will not know that new email arrived) or possibly with some backup software. ski's blog | add new comment | 1847 reads
ifinputSubmitted by jm on Fri, 2007-07-06 16:12.System management | Unix
A wrapper command to run another command if there is any output on stdout Stable Often Unix system administrators need an easy way to redirect any stderr output generated from crontab entries to a specific email address. With the ifinput binary, it's simple. For example: 20 8 * * * /usr/local/sbin/daily_stuff.sh 2>&1 | /usr/local/bin/ifinput mailx -s "Error: daily_stuff.sh" system-errors@foo.org Just arrange the crontab entries so that the periodic jobs don't generate stdout unless there's something interesting there. Then redirect stderr to stdout and pipe both to ifinput. ifinput can be used in a variety of different scenarios, not just cron jobs. add new comment | 1749 reads
|
|||||||||||||||||||||||||||||||||||||||||||||||||