Posts Tagged ‘ RHEL5 ’
Installation Downloaded scponly from here: http://sourceforge.net/projects/scponly/files/ Copy it over to the server: scp scponly-YYYYMMDD.tgz username@serverName:~/ On the SFTP server untar the tarball in /usr/local: cd /usr/local cd scponly-YYYYMMDD ./configure –enable-chrooted-binary make sudo make install This will create the necessary files for scponly under /usr/local Add SFTP chrooted user I downloaded the make_chroot_jail.sh script from here: http://www.fuschlberger.net/programs/ssh-scp-sftp-chroot-jail/ and modified [ READ MORE ]
Instructions taken from here: http://www.linuxtopia.org/online_books/rhel5/rhel5_administration/rhel5_s1-networkscripts-interfaces.html Here’s another good reference: http://www.cyberciti.biz/tips/linux-bond-or-team-multiple-network-interfaces-nic-into-single-interface.html Create /etc/sysconfig/network-scripts/ifcfg-bond0 DEVICE=bond0 BOOTPROTO=none ONBOOT=yes NETWORK=192.168.25.0 NETMASK=255.255.255.0 IPADDR=192.168.25.20 IPV6INIT=no IPV6_AUTOCONF=no USERCTL=no Edit /etc/sysconfig/network-scripts/ifcfg-eth1 # Broadcom Corporation NetXtreme II BCM5709 Gigabit Ethernet DEVICE=eth1 HWADDR=3C:4A:92:E4:48:A6 BOOTPROTO=none MASTER=bond0 SLAVE=yes IPV6INIT=no IPV6_AUTOCONF=no ONBOOT=yes USERCTL=no HOTPLUG=no Edit /etc/sysconfig/network-scripts/ifcfg-eth0 # Broadcom Corporation NetXtreme II BCM5709 Gigabit Ethernet DEVICE=eth0 HWADDR=3C:4A:92:E4:48:A4 BOOTPROTO=none MASTER=bond0 SLAVE=yes IPV6INIT=no IPV6_AUTOCONF=no ONBOOT=yes USERCTL=no [ READ MORE ]
Taken from here: http://blog.chris.tylers.info/index.php?/archives/17-How-to-Rollback-Package-UpdatesInstallation-on-Fedora.html Fedora Core 5, like FC4, uses yum for package management. yum is built on top of rpm, and pirut, pup, and yumexare graphical interfaces built on top of yum. Together, these tools provide a simple-to-use, powerful package management system. One of the least-known secrets about rpm is that it can rollback (undo) package changes. It can take a fair bit [ READ MORE ]
Introduction Here are the steps I took to install Subversion over https on RHEL5 Requirements You will need mod_dav_svn in order to use Apache authentication for subversion repositories and mod_ssl for Apache over SSL to configure https+svn. To install these if you are using the Apache RPM provided by RedHat Network: yum install mod_ssl mod_dav_svn [ READ MORE ]
Install json – This was actually trickier than expected. I assumed I would be able to install this via pear. Apparently, a PEAR Services_JSON package was developed, but it has never been accepted into the official repository. The trick instead is to use the PECL json package. This was as easy as running pecl install json and watching the [ READ MORE ]
Get every new post delivered to your Inbox.