In this post, we are trying to cover up how to install on plain ubuntu server. We are going to use Apache 2.4.7 with PHP FPM 5.5.9 for the moodle application to run on ubuntu host. Install the dependent packages. apt-get install apache2 mysql-server php5 libapache2-mod-fastcgi php5-fpm Install other dependencies for… Continue Reading Moodle installation on Ubuntu

This post explains how to convert ppk key to pem on Mac. Let’s install putty using brew. brew install putty Execute the following command to convert ppk to pem. puttygen key.ppk -O private-openssh -o key.pem where, key.ppk is your ppk file key.pem is new name of your key file. Change… Continue Reading Convert ppk key to pem on Mac

Scrumblr is a simple web-based simulation of a physical agile kanban board(or say a white board) that supports real-time collaboration with other teammates. It is built using node.js, websockets (using socket.io), CSS3, and jquery. The installation of Scrumblr is quite simple and straight forward. Hope this post helps. Steps: 1)… Continue Reading Install Scrumblr in Ubuntu 14.04

Moodle is a free and open-source software learning management system written in PHP. In this post, we will be sharing you step by step installations guide to setup Moodle with MariaDB or MySQL on Apache Webserver with PHP FPM support. We have select PHP FPM support(mod_fastcgi & php-fpm) for Apache… Continue Reading Install Moodle with MariaDB in Ubuntu 14.04

In this article going to discuss login and logout using php .The first read previous article  https://blog.pheonixsolutions.com/basic-insert-delete-update-database-image-upload-using-php/. LOGIN.PHP $query=mysql_connect(“localhost”,”root”,””); mysql_select_db(“demo”,$query); session_start(); if(isset($_POST[‘send’])) { $name=$_POST[‘name’]; $password=$_POST[‘password’]; if($name!=”” && $password!=””) { $s=mysql_query(“select *from reg where name = ‘$name’ AND password = ‘$password'”); $a=mysql_fetch_array($s); $count=mysql_num_rows($s); if($count==0) { echo “user does not exist”; } else… Continue Reading Basic Login and logout using php

In this post, we are going to explain how to insert, delete, update tables on a database using php. DataBase And Table: CREATE DATABASE demo; CREATE TABLE reg ( id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY, name VARCHAR(30) NOT NULL, password VARCHAR(30) NOT NULL, address VARCHAR(30) NOT NULL, email VARCHAR(50), fathername… Continue Reading Basic insert, delete, update database & Image upload using php

In this post, we will explain how to upgrade IPMI firmware version on supermicro motherboard. Its highly recommended to perform this maintenance when OS is installed on the server and it has ipmicfg  installed in it because incase if the ipmi interface goes down, we can bring the interface up using ipmicfg.… Continue Reading IPMI Firmware Upgrade – SuperMicro

You may seen lot of posts on installing node, npm and pm2. Here we go in our site, how to install node, npm and pm2 on linux distribution. Let’s download the node version and extract the files. cd /opt;wget https://nodejs.org/dist/v6.2.2/node-v6.2.2-linux-x64.tar.gz && tar -xvf node-v6.2.2-linux-x64.tar.gz Create a symlink to /use/bin directory ln… Continue Reading Installing node,npm and pm2

Let’s consider, we want to move the job to one project to another project or move the jobs to one rundeck server to another rundeck server. Rundeck provides an option to export the job in the form of xml or yaml. First download the jobs from existing project or source rundeck… Continue Reading Exporting/Importing a job on Rundeck

In this post, we will explain on how to add simple rundeck jobs. We are not going to cover how to install rundeck on the host. This post defaults assumes that rundeck is installed and running on port 8000. Configure rundeck user on remote host:   useradd rundeck passwd rundeck… Continue Reading Setting a job on Rundeck