provides software and services that enable enterprises
Live Chat 1-888-673-6564

Open Source Software Technical Articles

  • Home
  • Search
  • Contact Us
  • Products and Support
  • Services
  • Enterprise OSS Blog
  • Wazi Technical Blog
  • About Wazi
  • Attributions and Licensing
  • Supply Chain Compliance
  • How to Contribute
  • Contributors
  • Resources Library
  • Cloud Services
  • Partners
  • Customers
  • Community
  • Company
  • Careers
  • News and Events

Subscribe to Wazi by Email

Your email:


Enterprise Developer Support 24 x 7, Get a Support Quote Now!


click-here-to-chat-with-an-online-representative

download-oss-discovery

Latest Posts

  • A more colorful LibreOffice unveiled
  • Toward a more colorful LibreOffice
  • Flexible administration with Puppet's Facter and templates
  • Knock for OpenSSH
  • Get more out of phpMyAdmin
  • Image annotation in GIMP, Dia, and OpenOffice Draw
  • Solr, Drupal 7, and faceted search
  • Using FreeNAS' new full disk encryption for ZFS
  • Create distributed storage with Gluster
  • How to set up Solr 4.2 on Drupal 7 with Apache

Connect with Us!

Current Articles | RSS Feed RSS Feed

Flexible administration with Puppet's Facter and templates

Posted by Anatoliy Dimitrov on Thu, May 09, 2013
  
Email This Email Article  
Tweet  
  

One of the strengths of Puppet, the IT automation application, is the flexibility it offers administrators to manage multiple servers through the use of customized templates and remote system facts, which are essentially variable values from remotely managed nodes. Thanks to this flexibility you can administer each Puppet node with instructions tailored for its specific environment – something you cannot do with simpler multiserver administration tools.

Read More

0 Comments Click here to read/write comments
Tags: Technical, Tutorial, Puppet

Get more out of phpMyAdmin

Posted by Mayank Sharma on Thu, May 02, 2013
  
Email This Email Article  
Tweet  
  

phpMyAdmin is popular with both individuals and enterprise users who want a graphical interface for administering MySQL databases. Although the app has an expansive list of features, most people don't use it for much beyond basic tasks such as creating new databases. Here are some features tucked beneath phpMyAdmin's folds that can make you more efficient.

Read More

1 Comments Click here to read/write comments
Tags: MySQL, Technical, Tutorial, phpMyAdmin

Image annotation in GIMP, Dia, and OpenOffice Draw

Posted by Colin Beckingham on Mon, Apr 29, 2013
  
Email This Email Article  
Tweet  
  

The GIMP is a wonderful image editor, but it might be overkill if all you want to do is annotate an image. If you want to highlight a part of an image, so that for example the audience for your presentation can focus on a particular aspect, you'll probably find it easier and more intuitive to do that in a program such as Dia or OpenOffice Draw. Let's see how to annotate an image in all three programs.

Read More

2 Comments Click here to read/write comments
Tags: Technical, OpenOffice, Tutorial, Gimp, Dia

Solr, Drupal 7, and faceted search

Posted by Juliet Kemp on Thu, Apr 25, 2013
  
Email This Email Article  
Tweet  
  

It's easy to get started with the search server Apache Solr and the popular CMS platform Drupal, as described in our previous tutorial on setting up Solr 4.2 with Drupal 7. Straight out of the box Solr handles basic text searching, but you can increase its power by adding faceted search – the ability to filter on specific facets or aspects of the data on a site. For example, on a Drupal site you might want to be able to filter your searching by author, date, or tags. Solr's faceted search allows users to combine this type of filtering with text searching to find the information they're after faster. Read on for the lowdown on setting up and configuring basic faceted search using Solr 4.2 and Drupal 7, running on Apache on Linux.

Read More

0 Comments Click here to read/write comments
Tags: Apache, Technical, Drupal, Tutorial, Solr

Using FreeNAS' new full disk encryption for ZFS

Posted by Gary Sims on Mon, Apr 22, 2013
  
Email This Email Article  
Tweet  
  

Last month's release of FreeNAS 8.3.1 adds new functionality that allows system administrators of the open source-based network attached storage solution to encrypt entire disks while using ZFS. ZFS has been the primary filesystem for FreeNAS since FreeNAS 8, and has supplanted FreeBSD's UFS as the project's focus. The new security functionality applies only to ZFS and is the first time that FreeNAS has supported encryption.

Read More

0 Comments Click here to read/write comments
Tags: Technical, Tutorial, FreeNas

Create distributed storage with Gluster

Posted by Anatoliy Dimitrov on Thu, Apr 18, 2013
  
Email This Email Article  
Tweet  
  

If you're looking for Linux-based, hardware-agnostic storage software, check out Gluster, an open source project for creating a distributed filesystem. It provides fast performance, high availability, and horizontal scalability by spreading storage volumes over redundant cluster nodes. Here's how you can build a Gluster distributed storage system yourself.

Read More

0 Comments Click here to read/write comments
Tags: CentOS, Technical, Tutorial, Gluster

How to set up Solr 4.2 on Drupal 7 with Apache

Posted by Juliet Kemp on Mon, Apr 15, 2013
  
Email This Email Article  
Tweet  
  

Solr is an open source search server based on Apache Lucene. Lucene provides Java-based indexing and a search library, and Solr extends it to provide a variety of APIs and search functionality, including faceted search and hit highlighting, and handles Word and PDF document searching. It also provides caching and replication, making it scalable, robust, and very fast.

Read More

1 Comments Click here to read/write comments
Tags: Apache, CentOS, Technical, Drupal, Tutorial, Solr, Lucene

Caching web service results can enhance Apache application performance

Posted by Federico Kereki on Thu, Apr 11, 2013
  
Email This Email Article  
Tweet  
  

Since in most web services, reads outnumber updates by far, you can enhance the performance of a RESTful server by implementing a local cache, so repeated requests can be fed with local data and don't actually require more expensive processing. Caches are usually associated with static content such as images or videos that don't change over time, but in this article we'll see how to configure Apache to work as a reverse proxy, caching dynamic requests to reduce the load on your server.

Read More

0 Comments Click here to read/write comments
Tags: Apache, Technical, Tutorial

How to write CentOS initialization scripts with Upstart

Posted by Anatoliy Dimitrov on Thu, Apr 04, 2013
  
Email This Email Article  
Tweet  
  

On Linux systems, initialization (init) scripts manage the state of system services during system startup and shutdown. When the system goes through its runlevels, the System V init system starts and stops services as configured. While this tried-and-true technology has been around since the dawn of Unix, you can now create modern and efficient CentOS 6 init scripts by using Upstart, an event-based replacement for System V init.

Read More

0 Comments Click here to read/write comments
Tags: MySQL, Apache, CentOS, Technical, Tutorial, Varnish

Write your own Ant tasks

Posted by Juliet Kemp on Mon, Apr 01, 2013
  
Email This Email Article  
Tweet  
  

Apache Ant is a Java-based build tool, and because it's based on Java, it is entirely cross-platform. It comes with a huge list of available tasks that you can run simply by including them in a build.xml file, but if there's something you want it to do and no existing task can do it, it's easy to extend Ant just by writing a new Java class. Here's how to write your very own Ant tasks.

Read More

0 Comments Click here to read/write comments
Tags: Ant, Technical, Tutorial
All Posts
Next Page
Error sending email
Email sent successfully

Email article
Email To : 
Your name : 
Message : (maximum 200 characters)
Home | Search | Contact Us | Products and Support | Services | Enterprise OSS Blog | Wazi Technical Blog | Resources Library | Cloud Services | Partners | Customers | Community | Company | Careers | News and Events
Products
OpenLogic Exchange (OLEX)
License Compliance Module
OSS Discovery
OSS Deep Discovery
OpenUpdate
Services
Open Source Support
CentOS Support
Scanning & Compliance
Open Source Training
Professional Services
Solutions
Support & Indemnification
Open Source Governance
Open Source Scanning
Open Source Provisioning
Consulting & Training
Contact Us
1-888-673-6564


© 2013 OpenLogic, Inc. All rights reserved.
Site Map  |  Privacy Policy