implementasi nginx, php dan mysql pada vps centos x86_64

nginx. dibaca Engine – X merupakan High Performance HTTP Server dan Reverse Proxy serta IMAP/POP3 Proxy Server yang bersifat opensource dan gratis. Dikembangkan oleh Igor Sysoe pada tahun 2005 Nginx dengan cepat menjadi populer karena kestabilan, kekayaan fitur dan konsumsi resources yang sangat rendah meskipun masih dalam status beta, diambil dari wiki Nginx.

Bericut langkah-langkah nya :

nano /etc/yum.repos.d/Centos-Base.repo
list repo punya biznet
Setelah itu

yum update -y
yum groupinstall 'Development Tools' -y
yum install -y mysql-server mysql-devel
service mysqld start
mysql_secure_installation

isi pil pil the blank blank

yum install -y wget patch gcc libtool libmcrypt-devel libxml2-devel flex bison make pcre-devel zlib-devel openssl-devel gd-devel

Continue reading

memperbaiki kesalahan [ffmpeg_frame.lo] Error 1

waktu install FFMPeg-php ( versi baru ) adalah :

make: *** [ffmpeg_frame.lo] Error 1

ada 2 cara untuk membetulkan nya antara lain :

1. edit file: ffmpeg_frame.c dan ganti semua teks PIX_FMT_RGBA32 menjadi PIX_FMT_RGB32

$# nano fmpeg_frame.c

2. Rename file ffmpeg_frame.loT menjadi ffmpeg_frame.lo

$# mv ffmpeg_frame.loT ffmpeg_frame.lo

lalu konfigurasi ulang lagi dengan perintah

$# make clean
$# ./configure
$# make
$# make install

Selesai deh.. bis ini ntar di update lagi installasi library pada linux untuk FFMPEG dan kawan kawan

instalasi litespeed pada centos

Pernah pengen nyoba pakai web server yang cepat dan dapat di handalkan selain apache? Cobalah web server litespeed yang ringan, cepat, handal dan 100% kompatibel dengan konfigurasi apache dan server cpanel seperti yang saya lakukan setelah mencoba menggunakan web server ringan lainnya, lighttpd, yang memang juga dapat diandalkan namun lighttpd tidak dimaksudkan untuk menggantikan apache sehingga ada beberapa masalah dalam hal kompatibilitas dengan apache.

1. Fitur Litespeed Web Server

Kaya akan fitur:

  • CGI, FastCGI, LSAPI, PHP, Servlet/JSP, Proxy
  • Mendukung SSL, IPv4, IPv6
  • Dukungan terbaik pada Ruby on Rail
  • Kompatibel dengan Apache .htaccess
  • Dukungan kompatibilitas dengan mod_security request filtering
  • Kompatibel dengan Apache URL rewrite engine
  • MS FrontPage Server Extension

Continue reading

konfigurasi dns pada kloxo

iseng-iseng lagi nyobain kloxo, gratisan gitu :ngakaks saoale pake cpanel bayar :hammer:
nih langkah langkah nya boleh nyomot dari mas mustapha from djogjakarta

1. install kloxo di VPS1 and VPS2
2. VPS 1 buat domain
3. VPS2 buat subdomain

4. Domain mydomain.com dan subdomain adalah subdom.mydomain.com
5. IP for VPS1 is 123 111 111 111 123 222 222 222 and for VPS2 is
6. IP for dns registrar is 123 333 333 333

set “Sebuah catatan” (childnameserver) dan “Record NS” (nameserver) pada Panitera (di mana kita membeli domain) panel:

ns1 A - 123.111.111.111
ns2 A - 123.333.333.333
- NS - ns1.mydomain.com
- NS - ns2.mydomain.com

membuat dns-template pada VPS1 dengan ‘default’ nama domain:

__base__ A – 123.111.111.111
cp A – 123.111.111.111
mail A – 123.111.111.111
ns A – 123.111.111.111
ns1 A – 123.111.111.111
ns2 A – 123.333.333.333
ftp CN – __base__
lists CN – mail
webmail CN – mail
www CN – __base__
default.dnst MX 10 mail.default.dnst
- NS – ns1.default.dnst
- NS – ns2.default.dnst

Continue reading

install SSL di web server apache

This guide will assist you with enabling SSL for websites served under the Apache web server. We assume you’ve completed the steps detailed in our getting started guide, and that you’ve successfully set up Apache for serving virtual hosts as outlined in our Apache 2 on CentOS 5 guide. These steps should be performed via an SSH session to your Linode as the root user.

These instructions work with the Linode platform. If you don’t have a Linode yet, sign up for a Linux VPS and get started today.

hese instructions will help you generate a generic self-signed certificate, which may be used to provide SSL service for all name-based hosts on your VPS. Please note that self-signed certificates will generate warnings in a visitor’s browser; proceed to “Installing a Commercial SSL Certificate” if you need to set up SSL on a domain using a certificate signed by a commercial SSL provider.

Continue reading