Gitea how to install

1) Pre-Requisite # Install Mariadb yum -y install mariadb mysql -u root -p CREATE DATABASE gitea; CREATE USER ‘gitea’@’localhost’; SET PASSWORD FOR ‘gitea’@’localhost’ = PASSWORD(‘NEW_gitea’); grant all privileges on gitea.* to ‘gitea’@’localhost’; # Install go wget “https://dl.google.com/go/go1.10.linux-amd64.tar.gz” mv go1.10.linux-amd64.tar.gz /usr/local/ […]

Tags: , , , , , ,

URBACKUP CENTOS 7 HOW TO INSTALL

URBACKUP CENTOS 7 HOW TO INSTALL Centos 7 x64bit urbackup-server-2.0.36 Requirements: yum install autoconf automake binutils bison flex gcc gcc-c++ gettext libtool make patch pkgconfig redhat-rpm-config rpm-build rpm-sign yum install zlib-devel.x86_64 zlib.x86_64 libcurl-devel.x86_64 cryptopp-devel.x86_64 wget “https://hndl.urbackup.org/Server/2.0.36/urbackup-server-2.0.36.tar.gz” tar -zxvf urbackup-server-2.0.36.tar.gz cd […]

Tags: , , , , , ,

nagios vmware esx plugin

The best script to monitor VMWare ESX using nagios was developed by Steve Shipway. 1. Download the script wget http://felipeferreira.net/wp-content/uploads/2015/05/VMWare.zip unzip VMWare.zip cd VMWare chmod +x check_vmware.pl && sed -i -e ‘s/\r$//’ check_vmware.pl ./check_vmware.pl OBS: It is normal to get […]

Tags: , , , , , , ,

how to install zabbix on centos

How to install Zabbix yum -y update yum -y install httpd php php-cli php php-ctype php-bcmath php-xmlreader php-xmlwriter php-xmlwriterfping libcurl libiksemel net-snmp php-net-socket php-mbstring php-gettext mysql mysql-server mysql-devel.x86_64 php-mysql.x86_64 libxml2-devel.x86_64 libxml2.x86_64 libxml2-static.x86_64 net-snmp-devel.x86_64 net-snmp-libs.x86_64 net-snmp-utils.x86_64 libcurl-devel.x86_64 libcurl.x86_64 curl.x86_64 gd.x86_64 gd-progs.x86_64 […]

Tags: , , , ,

Fix Install of Citrix Reciever on Ubuntu 12.04 x64

Fix Install of Citrix Reciever on Ubuntu 12.04 x64 I had two errors: 1. /var/lib/dpkg/info/icaclient.postinst: 696: /var/lib/dpkg/info/icaclient.postinst: nspluginwrapper: not found 2. dpkg: error processing icaclient (–install): Solution: 1. sudo apt-get install nspluginwrapper 2. sudo vi /var/lib/dpkg/info/icaclient.postinst Find echo $Arch|grep “i0-986” […]

Tags: , , , , ,