Archive for the “Uncategorized” CategorySolr with JettyCreate etc/ solr/ and war/ directories. ResourcesProblemHow to enable Apache SSL in Ubuntu. AnalysisSolution# apt-get install apache2 Now, enable ssl: # a2enmod ssl Enabling module ssl. See /usr/share/doc/apache2.2-common/README.Debian.gz on how to configure SSL and create self-signed certificates. Run '/etc/init.d/apache2 restart' to activate new configuration! Configure: References
Aug
13
2010
Setting up Subversion on UbuntuPosted by: admin in Uncategorized, tags: Apache, SVN, Ubuntu, WebDAVProblemSet up Ubuntu workstation to provide SVN using Apache and WebDAV. AnalysisThere are basically 2 ways to do it:
SolutionWe take the second one. # apt-get install libapache2-svn # cd /etc/apache2/sites-enabled # vi 000-default The content of 000-default: <Location /svn/repos>
AuthType Basic
AuthName "Subversion Repository"
AuthUserFile /etc/apache2/passwd
Require valid-user
DAV svn
SVNPath /var/svn/repos
</Location>
Reload web server: /etc/init.d/apache2 force-reload Create your password file: htpasswd -c /etc/apache2/passwd user Resources$ cd /usr/local/jini/lib $ java -cp ./browser.jar -Djava.security.policy=../examples/all.policy com.sun.jini.example.browser.Browser References |

Entries (RSS)