Category: Business

  • Using Verifone RiTA software with IBM WAS

    If you are running the RiTA software by Verifone, you may encounter a number of issues configuring the software to work in an IBM WebSphere environment. There are two issues you want to avoid: Not being able to find the tid.jcc file Not having the .jar files in the correct location First, the tid.jcc needs…

  • The Essential Startup Reader: 10 Lessons in Entrepreneurship

    By Om Malik Jan. 2, 2010, 2:47pm 24 Comments 0 3 74 847 As a blogger, I spend most of my time writing. But it’s time spent reading that’s most satisfying. Here’s a short (and by no means a complete) list of 10 articles that encapsulate the art of the startup. Most were published during…

  • How to copy Subversion repositories to another server

    Ensure you have a working Subversion installation with Apache installed on your system. On the source machine, dump each repository: > svnadmin dump /path/to/repository > repository-name.dmp Copy repository-name.dmp to the target server. Load the repository into the new server: > cd /path/to/new-repository > svnadmin create repository-name > svnadmin load repository-name < repository-name.dmp Reassign apache permissions:…

  • How to install Subversion with Apache HTTPD

    Ensure you have Apache installed on your system. Ensure you have mod_dav_svn installed: > yum -y update mod_dav_svn Install ssl support to enable https: > yum install mod_ssl Edit /etc/httpd/conf.d/subversion.conf and append the following lines to the end of your config file: <Location /svn> DAV svn SVNParentPath /var/svn AuthType Basic AuthName “Subversion repository” AuthUserFile /etc/svn-auth-file…