Installing Autoscript (Centos 6)
Login to VPS guna ROOT untuk access#isi command ini :
yum -y install wget
#isi script ini :
wget https://raw.github.com/choirulanam217/script/master/centos6.sh && bash centos6.sh
Installing From Zero (Debian)
Tested on Debian versi 7.8 (wheezy)
1. Update Apt-Get
apt-get update
2. Install MySQL
apt-get install mysql-server
setelah selesai jalankan perintah ini
mysql_secure_installation
nanti muncul seperti, tinggal masukkan password yang tadi.
Enter current password for root (enter for none):
Lanjut, muncul seperti
Change the root password? [Y/n]
balas Y kalau merasa pengen rubah password yang tadi, balas N kalau merasa tidak perlu, selanjutnya tinggal Y aja terus sampe selesai.
Terakhir kasih hak akses untuk MySQL
chown -R mysql:mysql /var/lib/mysql/
chmod -R 755 /var/lib/mysql/
3. Install Nginx + PHP
sedikit copas dari sini
apt-get install nginx php5 php5-fpm php5-cli php5-mysql php5-mcrypt
setelah selesai ganti config nginx + fpm-php nya, jalankan perintahnya.
rm /etc/nginx/sites-enabled/default
rm /etc/nginx/sites-available/default
mv /etc/nginx/nginx.conf /etc/nginx/nginx.conf.old
curl http://script.jualssh.com/nginx.conf > /etc/nginx/nginx.conf
curl http://script.jualssh.com/vps.conf > /etc/nginx/conf.d/vps.conf
sed -i 's/cgi.fix_pathinfo=1/cgi.fix_pathinfo=0/g' /etc/php5/fpm/php.ini
sed -i 's/listen = \/var\/run\/php5-fpm.sock/listen = 127.0.0.1:9000/g' /etc/php5/fpm/pool.d/www.conf
AddUser + Directory untuk Web Root
useradd -m vps
mkdir -p /home/vps/public_html
untuk testing
echo "<?php phpinfo() ?>" > /home/vps/public_html/info.php
beri hak akses
chown -R www-data:www-data /home/vps/public_html
chmod -R g+rw /home/vps/public_html
restart nginx + fpm-php
service php5-fpm restart
service nginx restart
sampai sini install webserver sudah selesai, tinggal test pake browser
http://ip-server:81/info.php
klo muncul seperti gambar, berarti Success, bisa lanjut ke step berikutnya
4. Install OCS Panels
1. Upload Project OcsPanels
Biar simple kita pake Git untuk Clone project langsung Github
apt-get install git
setelah kita clone master project nya
cd /home/vps/public_html
git init
git remote add origin https://github.com/adenvt/OcsPanels.git
git pull origin master
2. Membuat Database
login ke MySQL
mysql -u root -p
membuat Database,
OCS_PANEL
boleh diganti sesuai seleraCREATE DATABASE IF NOT EXISTS OCS_PANEL;EXIT;
3. Install OcsPanels
Buka lewat Browser, alamat
http://ip-server:81/
dan ikuti langkah - langkahnya sampe selesai.
setelah selesai tinggal hapus folder
installation/
rm -R /home/vps/public_html/installation
=====================OcsPanels
Simple and lightweight panel for Reseller SSH based on Webmin API, 100% free.
Simple and lightweight panel for Reseller SSH based on Webmin API, 100% free.
Features
- Sistem Deposit : Seller cukup Deposit, sudah bisa create Account SSH sendiri.
- Remote Webmin : cukup 1 panel bisa dipakai untuk banyak VPS.
Requirements
Hosting
- PHP versi 5.3.4 keatas.
- MySQL versi 5.0.0 keatas.
VPS
- Webmin
- Perl XML::Parser Module (biasa otomatis terinstall bersama webmin)
Installation
- Upload / Hosting ke Cpanel / VPS yang sudah diinstall WebServer.
- Buat Database di MySQL.
- Masuk ke
http://*domainmu_atau_ip_VPS*/
dan Ikuti langkah-langkah. - Setelah selesai hapus folder
Installation/
.
No comments:
Post a Comment