06 Oct 2016 @ 3:44 PM 

If you need http/2 enabled at your CPanel server, you need to do few things:

1. Install nghttp2


cd /usr/src/
wget https://github.com/nghttp2/nghttp2/releases/download/v1.15.0/nghttp2-1.15.0.tar.gz
tar -xvzf nghttp2-1.15.0.tar.gz
cd nghttp2-1.15.0
./configure --prefix=/opt/nghttp2
make
make install
echo "/opt/nghttp2/lib" >> /etc/ld.so.conf.d/custom-libs.conf
ldconfig

More »

Posted By: lvlind
Last Edit: 06 Oct 2016 @ 04:09 PM

EmailPermalinkComments (0)
Tags
 21 Mar 2016 @ 2:35 PM 

If you need master-master replication for your MySQL server. This example is for Centos 6 x64 but on other Linux OS the process is similar.

 

For example we have two following servers with IPs:
1.1.1.1 SERVER_A
2.2.2.2 SERVER_B

  1. Install MySQL server on both servers.yum -y install mysql-server
  2. By default, MySQL works only with localhost (127.0.0.1), so we need to edit MySQL config file /etc/my.cnf and add followingon SERVER_A:
    server-id = 1
    bind-address = 1.1.1.1
    log_bin = /var/log/mysql/mysql-bin.log
    binlog_do_db = database_for_replication
    #replicate-do-table = database_for_replication.table_for_replication (You can replicate only some table(s))
    More »
Posted By: lvlind
Last Edit: 06 Oct 2016 @ 03:51 PM

EmailPermalinkComments (0)
Tags
 22 Oct 2015 @ 11:07 AM 

If you need fast and stable VPN server – I can recommend SoftEther VPN, installation and usage are pretty simple.

1. Install Development packages:
yum -y groupinstall "Development Tools"

2. Download server installation package here

wget http://www.softether-download.com/files/softether/v4.10-9473-beta-2014.07.12-tree/Linux/SoftEther_VPN_Server/64bit_-_Intel_x64_or_AMD64/softether-vpnserver-v4.10-9473-beta-2014.07.12-linux-x64-64bit.tar.gz

or from my source

3. Unpack into /usr/local/
tar -xvzf softether-vpnserver-v4.10-9473-beta-2014.07.12-linux-x64-64bit.tar.gz -C /usr/local/ More »

Posted By: lvlind
Last Edit: 08 Apr 2025 @ 08:40 AM

EmailPermalinkComments Off on SoftEther VPN server
Tags
Tags: , ,
Categories: Uncategorized