Showing entries 19623 to 19632 of 44742
« 10 Newer Entries | 10 Older Entries »
Installing Apache2 With PHP5 And MySQL Support On CentOS 6.0 (LAMP)

Installing Apache2 With PHP5 And MySQL Support On CentOS 6.0 (LAMP)

LAMP is short for Linux, Apache, MySQL, PHP. This tutorial shows how you can install an Apache2 webserver on a CentOS 6.0 server with PHP5 support (mod_php) and MySQL support.

getopts in shell script

getopts
The getopts command simplifies the task of validating and parsing command line options and arguments for your shell scripts.

Syntax:

getopts <optstring name> [arg...]

Example:

Step1: First I define all my option holding variables.

ListFiles=0
MoveFiles=0
email=""

Step2: While loop.

The following while statement loops through all the options and sets them to the corresponding variable. getopts returns true while there are options to be processed. The argument string, here "lme:h", specifies which options the script accepts. If the user specifies an option which is not in this string, it will go into * section which will display a help to use this script with examples. If the option is succeeded by a colon, the value immediately following the option is …

[Read more]
How to install MySQL 5.1 on Ubuntu 10.10

Its easy to install MySQL on ubuntu but you must have updated your repository for apt-get utility. If you haven’t than run below command to update it. shell> apt-get update After that, to install MySQL 5.1 on ubuntu run below command. shell>sudo apt-get install mysql-server-5.1 you’ll have to give your password so it will start [...]

Understanding B+tree Indexes and how they Impact Performance

Indexes are a very important part of databases and are used frequently to speed up access to particular data item or items. So before working with indexes, it is important to understand how indexes work behind the scene and what is the data structure that is used to store these indexes, because unless you understand the inner working of an index, you will never be able to fully harness its power.

Percona Server 5.1 with Galera replication

As you may know I closely follow Galera replication development, and right now I am evaluating how it performs in our benchmarks. Of course my closest interest is Percona Server, so I made port of Galera from MySQL/InnoDB-plugin to Percona Server 5.1.57. Right now it is only in source code https://code.launchpad.net/~vadim-tk/percona-server/percona-galera-5.1.57, but it brings couple good things:

  • It is based on Percona Server with XtraDB, with all its performance and diagnostic improvements
  • It contains scripts for xtrabackup node propagation, which provides minimal impact on the cluster when new node joins

You are welcome to try it, however it is not recommended to use in production, as …

[Read more]
New “Meet The MySQL Experts” Podcast Series

During the past year, we’ve put a lot of emphasis at Oracle on sharing information with the MySQL Community. Actions included PR and communications not only about GA products but also about development milestone releases and features available in labs.mysql.com, as well as more technical articles, more blogs, participation to conferences…etc. We very much value the feedback and discussions such communications generate.

We therefore plan to keep communicating this way, and do even more. This is why we’re now very pleased to announce a new Oracle podcast series entitled “Meet the MySQL Experts”! We plan to, once a month, interview an Oracle MySQL Engineer who will share information about his/her domain expertise, and what he/she is currently working on.

For the first edition, it was my …

[Read more]
Take the time now for gains later.

Regardless of which data warehouse paradigm you follow or have heard of, Kimball or Inmon. We should all agree that the data warehouse is often a requirement for business. Different people want different things and they all want it from your data. The data warehouse is not a new concept and yet they are over looked at times. A warehouse is never complete, it is an evolving entity that adjusts with the requirements it is given. It is up to us to make sure that the access to enterprise data in an accurate and timely manner is easy and the standard. MySQL can handle a data warehouse perfectly.
MySQL databases are designed in numerous ways, some good some bad. A warehouse can take that data and organize it for the best use of others. What concerns or issues do you often hear when it comes to gathering data from your database? It is easy for all of your developers to query and get the same data? How many ways does your company slice and dice data? …

[Read more]
High Availability MySQL Training course finally released!

After quite a bit of work, we have now finally released our High Availability for MySQL training course. This course focuses on the different ways of achieving high availability for MySQL servers. When creating the course we had to study a wide range of different options to see what we would include as a possible solution to the course. The course will cover the usual suspects such as standard MySQL replication (including the semi-synch mode), MySQL Cluster, disk-clustering and DRBD which has long been used together with MySQL. We also cover some more unorthodox HA solutions for MySQL, such as Schoner Active Clustering, Continuent Tungsten etc.
To learn more or to register for one of our High Availability classes, please visit our training page

How to make class diagrams using Composition?

Before we move on to making class diagram for this problem lets discuss what is composition relation and how we use it, composition has a solid black diamond symbol.

How to make use case diagram using Generalization in UML

Purpose of this tutorial is to give you understanding of how to use generalization, include and extend relationships when making use case diagrams.

Showing entries 19623 to 19632 of 44742
« 10 Newer Entries | 10 Older Entries »