Skip to main content

Setup Windows

Ikuti langkah-langkah berikut untuk melakukan installasi pada Windows Server.

Install XAMPP​

  1. Install XAMPP dengan konfigurasi seperti pada gambar dibawah ini.

    XAMPP Select Components XAMPP Installation Folder

  2. Buka xampp-control.exe dengan run as administrator.

    Open XAMPP Control Panel

  3. Install apache dan mysql sebagai service dengan klik tanda silang merah pada bagian Service.

    Install XAMPP Service

  4. Jalankan apache dan mysql dengan klik tombol Start.

    Install XAMPP Service

Config phpMyAdmin​

  1. Buka file config.inc.php phpmyadmin di sini.
C:\Program Files\SystemEQ\phpMyAdmin
  1. Kemudian ubah dan simpan konfigurasi seperti berikut (blowfish_secret bebas random menggunakan kombinasi alphanumerik) atau bisa menggunakan generator ini.
C:\Program Files\SystemEQ\phpMyAdmin\config.inc.php
$cfg['blowfish_secret'] = 'UBAH_BLOWFISH_SECRET';
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = false;

Config MySQL​

  1. Buka file my.ini yang ada di sini.
C:\Program Files\SystemEQ\mysql\bin
  1. Cari variable max_allowed_packet dan ubah menjadi seperti ini.
C:\Program Files\SystemEQ\mysql\bin\my.ini
max_allowed_packet=20M

Install PHP Extension​

  1. Extract file php_ext_ioncube_sqlserver.zip ke directory ini.
C:\Program Files\SystemEQ\php\ext
  1. Buka php.ini yang ada di sini.
C:\Program Files\SystemEQ\php
  1. Tambahkan dan simpan variable seperti berikut:
C:\Program Files\SystemEQ\phpMyAdmin\config.inc.php
zend_extension="C:\Program Files\SystemEQ\php\ext\ioncube_loader_win_7.3.dll";
extension=pdo_sqlsrv_73_ts
extension=sqlsrv_73_ts
  1. Install msodbc driver menggunakan file msodbcsql_17.4.2.1_x64.msi (64Bit) atau msodbcsql_17.4.2.1_x86.msi (32Bit)

Restart XAMPP​

Stop dan Start service Apache dan MySQL

Install XAMPP Service

Configure MySQL User​

Buka localhost/phpmyadmin atau http://ip_server/phpmyadmin, kemudian buat user dengan setting sebagai berikut:

Install XAMPP ServiceInstall XAMPP Service

  • Host Local
    • Username: sa
    • Host Name: localhost
    • Password: U6v1pPnVE513nz75
    • Global Privileges: Check All

Install XAMPP Service

  • Host % (Untuk issue EQUAL Scheduler)
    • Username: sa
    • Host Name: %
    • Password: U6v1pPnVE513nz75
    • Global Privileges: Check Tab β€œData”

Install XAMPP Service