by skufel | Oct 3, 2018 | Linux, SysAdmin
Once you install Ubuntu 18.04 some packages might not be found by default in repositories (example: php7.2-fpm). If you want to have more packages available just add repository with more packages available 🙂 sudo add-apt-repository universe Now you can enjoy more...
by skufel | Oct 16, 2017 | Cloud, Cryptocurrency, Linux, Uncategorized
If you interested in cryptocurrency and want to support certain coin and community as well as earn some money, you might be interested in running MasterNode for chosen coins. In this article I put together some quick guide how to setup ArcticCoin MasterNode. I have...
by skufel | Apr 4, 2017 | Infrastructure, Linux, SysAdmin
By default elasticsearch has 2GB of RAM set for JVM. In case you run it on VM with less memory you need to change: -Xms2g to -Xms512m -Xmx2g to -Xmx512m in /etc/elasticsearch/jvm.options configuration file.
by skufel | Sep 28, 2016 | Development, Linux, SysAdmin, Web Servers
If you need to install Xdebug on openSUSE and don’t want ot use existing binary repo easiest way is to use pecl to do that and here is how… First install all required packages dev-lnx-02:~ # zypper --non-interactive install gcc autoconf automake php5...
by skufel | Aug 8, 2016 | Development, Linux, Web Servers
When Yii-based project doesn’t want to update, there might be missing component. Once you add one plugin everything goes back to normal. [root@arb-srv-01 easyforms]# composer update Running composer as root/super user is highly discouraged as packages,...
by skufel | Aug 8, 2016 | Databases, Linux, Scripting, Security, SysAdmin
In order to install MySQL/MariaDB database engine on CentOS follow these: [root@localhost ~]# yum install mariadb-server [root@localhost ~]# systemctl enable mariadb [root@localhost ~]# systemctl start mariadb [root@localhost ~]#...