Perl Getting https pages with Perl Perl's LWP package is a great way to get web pages and display the content of the resulting http header. Out of the box it does not support https, the following describes how to configure perl to access https pages. Configure CPANThe first thing to do is to
Apache Using Java Web Start with Opera Out of the box the Opera web browser is not setup to run jnlp files, therefore java webstart will not run properly. To fix this a new mime-type needs to be added to the browser. Follow instructions at: http://www.opera.com/support/search/supsearch.dml?index=470
Apache Adding LDAP Authentication to a Site Add the following entry to the VirtualHost <Directory "/var/www/html"> order allow,deny allow from all AuthName "Staff only" AuthType Basic AuthLDAPURL ldap://localhost/dc=example,dc=com require valid-user </Directory>
Apache Security failure. Data decryption error. When using IE on a Mac On Mac OS X when opening a new IE window from a site running under https there is no content in the window and the following error message is displayed: This can be correct by changing the SSLSessionCache in the Apache httpd.conf file. The error shows up when SSLSessionCache
Linux Link down on RedHat Linux 3 On RedHat Enterprise 3 Linux on VMWare each interface link is always down. The following needs to be added to all the ifcfg-eth in /etc/sysconfig/networking-scripts/ check_link_down() { return 1; } See http://www.vmware.com/support/guestnotes/doc/guestos_redhat90.html for more information.
Linux No output from the Console when connecting to a Server running on Linux The problem is that the vmx file is not executable. Go to the VM directory and run: chmod 755 *.vmx Then restart the vmware server, output will then be displayed on the console.
Linux Syslogd Stops working after installing VMWare Server Seems that VMWare server adds a new service to the /etc/service file. If you have SELinux running the file's security context changes. To fix run: /sbin/restorecon /etc/services For more information see http://www.vmware.com/community/thread.jspa?messageID=435464
Linux Mounting ISO in Linux To mount an ISO file in linux so it turns up as a directory structure do the following: mount -o loop -t iso9660 filename.iso /mnt/iso Simple as that.
Linux Installing Java on Fedora Core 3 using JDK 1.4.2 Excellent Howto for setting up Tomcat5 from jpackage.org on RedHat Fedora Core3. http://www.mksearch.mkdoc.org/howto/jpackage-sun-fc3/ But required JDK 1.4.2 to be used in place of 1.5 Downloaded http://mirrors.sunsite.dk/jpackage/1.6/generic/non-free/SRPMS/java-1.4.2-sun-1.4.2.
Linux Setting up sshd for Public Key Authentication To create key only authentication the users public key needs to be put on the server in their home directory under .ssh/authorizated_keys. Create the users private key on their workstation: ssh-keygen -t rsa Send the private key to the server: cat .ssh/id_rsa.pub | ssh newmachine "
Linux Cyrus Imapd 2.2.12 and Autocreate Patch Building cyrus-imapd 2.2.12 with the autocreate patch causes an error when compiling. To fix edit the imap/Makefile and add the following to the end of the CPPFLAGS parameter -I../et Then resume the make.
Oracle Oracle XE web server returns HTTP 400 Bad Request With the production version of Oracle XE the default is to not allow remote access to the web server. This sometimes causes even local access to not work. To fix run the following as sys: exec dbms_xdb.setListenerLocalAccess(false); Access to the web server will now be enabled.
Oracle Oracle Enterprise Linux Virtual Machine Setup How to create a VMware virtual machine to run Oracle Enterprise Linux using VMware Workstation 6. Startup VMware Workstation 6.Go to File -> New -> Virtual MachineClick Next Select Custom Select Workstation 5 * this is required if you are going to run the VM under VMware Server