Pencarian

Rss Posts

 

 

 

Berita pada kategori ‘Aplikasi’

Shorewall Loadbalancing with 3 Speedy

Apr 29, 2010

sebelumnya http://bayu.blitar.org/index.php/shorewall-load-balancing/
dimana dengan 2 Speedy (re-fixed)
eth0 ? LAN ? 192.168.0.1
eth1 ? Speedy1 ? 192.168.1.10 ? gw 192.168.1.1
eth2 ? Speedy2 ? 192.168.10.10 ? gw 192.168.10.1
???????????????????????
/etc/shorewall/interfaces
loc? eth0? detect
net? eth1? detect
net? eth2? detect
???????????????????????
/etc/shorewall/providers
Speedy1? 1? 1? main? 192.168.1.1? track,balance? eth0
Speedy2? 1? 1? main? 192.168.10.1? track,balance? eth0
???????????????????????-
/etc/shorewall/masq
eth1? 192.168.10.10? 192.168.1.10
eth1? eth0? 192.168.1.10
eth2? 192.168.1.10? 192.168.10.10
eth2? eth0? 192.168.10.10
eth1? eth2? 192.168.1.10
eth2? eth1? 192.168.10.10
???????????????????????-
More

Download PDF : Tutorial Samba PDC+OpenLDAP Pengganti Windows Domain Controller File Server

Apr 26, 2010


Kalau ada polling, layanan service apa dari Windows server yang paling banyak digunakan di Indonesia dan kerap membuat para Admin Windows ragu untuk migrasi ke Linux, Domain Controller mungkin bisa menjadi salah satu jawaban terbanyak selain aplikasi database server.
Windows Domain Controller adalah service server yang memberikan layanan domain logon, domain authentication, share authentication, permission, hak [...]

WordCamp San Francisco 2010

Apr 24, 2010

A week from today on May 1, hundreds of WordPress users, developers, designers and general enthusiasts will descend upon San Francisco for the 4th annual WordCamp SF. Since that first WordCamp in 2006, back when WordPress was on version 2.0 (Duke), the number of people using WordPress to power their web publishing — from personal [...]

New Email Archiving System From The Linux Box Provides IT and Compliance Managers with …

Apr 20, 2010

p class=MsoHeader style=text-align: center; margin: 0in 0.5in 0pt 0in; align=centernbsp;/pbr/p class=MsoNormal style=text-align: center; line-height: normal; margin: 0in 0.5in 0pt 0in; align=centerbr/p class=MsoNormal style=text-align: center; line-height: normal; margin: 0in 0in 0pt; align=center/pbr/System Slashes the Email Recovery/Discovery Process from Days to Minutes;/pbr/p class=MsoNormal style=text-align: center; line-height: normal; margin: 0in 0in 0pt; alignRead More…

Tips : Cara Mudah Update ClamAV untuk Zimbra

Apr 17, 2010


Hari Kamis tanggal 15 April 2010 menjadi hari yang cukup sibuk bagi sebagian Administrator mail server yang menggunakan ClamAV sebagai anti virus, baik bagi para pengguna Zimbra Mail Server maupun bagi para pengguna mail server lain. Hal ini karena adanya End of Life (EOL) terhadap ClamAV versi 0.94, yang digunakan pada Zimbra Mail Server versi [...]

Martinus Ady H: Diskusi Manajemen Proyek

Mar 31, 2010

Pingin tahu bagaimana tips dan trik mengelola proyek IT ? Atau mungkin, pingin tahu bagaimana sih dapur-nya sebuah Software House itu ? Atau ingin tahu bagaimana sih penerapan Extreme Programming, Agile Metodologi, dan berbagai macam metodologi keren yang lain. Kalau iya dan teman-teman ingin tahu, mungkin teman-teman bisa bergabung ke milis Manajemen Proyek IT yang [...]

Summer of WordPress 2010: Act I

Mar 21, 2010

Scene: A college classroom
Professor: Is anyone here applying for Google Summer of Code this year? If so, see me after class to discuss getting independent study credit toward your degree.
Jack, a student: Isn’t that a really hard program to get into? Like, hard like getting to level 70 in Modern Warfare 2?
Sophie, a student: I [...]

Latest Open-Xchange Groupware Offers Integrated VoIP

Mar 16, 2010

p class=MsoBodyText style=text-align: center; margin: 0in 0in 0pt; align=centernbsp;/pbr/p class=MsoBodyText style=text-align: center; margin: 0in 0in 0pt; align=centerUser interface, calendar also enhanced in open source Exchange alternative/pbr/p class=MsoBodyText style=text-align: center; margin: 0in 0in 0pt; align=centernbsp;/pbr/p class=MsoBodyText style=margin: 0in 0in 0pt;NUREMBERG, Germany, March 16, 2010 ndash; Open-Xchange, a provider of business-class Read More…

Running Apache with a dozen PHP versions – Christian Weiske

Mar 12, 2010

After showing you how to set up
multiple PHP versions on a single
machine
, it’s time to explain how to stuff all those compiled
php-cgi executables into a single Apache web server instance.

Idea

  • Instead of using mod_php, mod_fastcgi is going
    to be utilized.
  • Every single PHP version runs its own CGI server
  • Configuration of used PHP version is made per virtual host.

Installation of FastCGI

Debian

The Debian setup is painless:

aptitude install libapache2-mod-fastcgi apache2-mpm-worker apache2-suexec
a2enmod actions fastcgi suexec

CentOS

The open source version of Redhat’s operating system does not provide
the fastcgi module for Apache, which is why one needs to install it
by hand. It’s trivial.

Assuming phpfarm is installed in /root/phpfarm,
you need to chmod +x /root. Last but not least is
setting up permissions for the fastcgi state files:
chmod +x /var/log/httpd.

FastCGI setup

After mod_fastcgi is available, we need to prepare the FastCGI
servers. Open /etc/{apache2,httpd}/{apache2,httpd}.conf
and make it load conf/php-cgisetup.conf before including
server.conf. Put the following
lines into conf/php-cgisetup.conf:

#php-cgi setup
#used for multiple php versions
FastCgiServer /var/www/cgi-bin/php-cgi-5.2.12
FastCgiServer /var/www/cgi-bin/php-cgi-5.3.0
FastCgiServer /var/www/cgi-bin/php-cgi-5.3.1
ScriptAlias /cgi-bin-php/ /var/www/cgi-bin/

PHP-CGI setup

For each single php version you installed with
phpfarm,
you need to create a file
/var/www/cgi-bin/php-cgi-$version and make
it executable. Example for php-cgi-5.3.2:

#!/bin/sh
PHPRC="/etc/php5/cgi/5.3.2/"
export PHPRC

PHP_FCGI_CHILDREN=3
export PHP_FCGI_CHILDREN

PHP_FCGI_MAX_REQUESTS=5000
export PHP_FCGI_MAX_REQUESTS

exec /root/phpfarm/inst/bin/php-cgi-5.3.2

Activating a PHP version in a virtual host

If you followed all of the previous steps, everything is
setup now and ready to be used. In your
/etc/{apache2,httpd}/conf/server.conf, put the following
code in each section that you
like to switch to a certain version of PHP:

  
    AddHandler php-cgi .php
    Action php-cgi /cgi-bin-php/php-cgi-5.3.2
  

Conclusion

With the simple steps listed above and the help of phpfarm,
you are able to test your web applications in a dozens or more
PHP versions easily.

As as side note: The CGI versions of PHP are only used on the vhosts
that you determine. All others are still served by mod_php
that was probably setup before, making it trivially easy to keep your
server’s main web sites up-to date with your distribution’s
package manager.

Filsh.net video clip converter….

Mar 12, 2010

pFilsh.net is a video clip converter. It works with all OS’s. I believe it’s an add on to Firefox.nbsp; A friend in Germany sent it to me.nbsp; (www.filsh.net).nbsp; I haven’t tried it. But for those who are into doing video clips with You tube, etc.nbsp; it’s worth a try. It has a lot of good reviews. Seems easy to download, and use.nbsp;/p