When we talk about operating systems, Linux stands out as a preferred and best in openness and collaboration. Over the years Linux has grown as free software and community-driven development platform, Linux has evolved into a powerful ecosystem that underpins a vast array of technologies, from smartphones and servers to embedded systems and supercomputers. At…
Author: blogtsadmin
Protected: KST
There is no excerpt because this is a protected post.
php laravel step by step
This tutorial is practical experience we use to learn php and laravel framework. First step is to have an php environment with laravel framework, a web server and a Database. you can install XAMP on your MAC/Windows/Linux I have setup the environment on my Linux server with mysql database. once your php setup is ready…
Git Repo, push from linux server
To push an existing Project directory to Git Repository, follow below steps –
Laravel Add botman package
To install botman package cd into laravel project directory – composer require botman/botman Warnings – Class App\Http\Controllers\Controller located in ./app/Http/Controllers/admin/Controller.php does not comply with psr-4 autoloading standard. Skipping. > Illuminate\Foundation\ComposerScripts::postAutoloadDump > @php artisan package:discover –ansi
Oracle Weblogic Server Overview and SSL Setup
Oracle WebLogic Server is a Java EE application server, which is developed by Oracle Corporation. It is one of the best and leading application servers for building and deploying enterprise class Java EE applications. WebLogic Server provides a very strong, robust, scalable, and secure runtime environment for Java applications. Oracle weblogic server offers below outlined…
Cloud and on-premises Security
Are security appliances in your network sufficient to keep your infrastructure and applications safe? Cyber threats in the form of- Application exploits (code problems, weak ciphers, deprecated code usage etc.) Database vulnerabilities (SQL injections, privilege escalation, weak passwords stored, deprecated keywords usage) Malware phishing Various forms of network attacks like – Man in the middle Retrovirus…
Docker and docker swarm, quick commands –
docker image ls docker ps -a docker container ls Docker Swarm – docker swarm init docker service ls docker service ps <name of the service> this will show the node where service is running docker swarm leave –force docker service logs kst-lv-de docker service logs kst-lv-de docker service ps kst-lv-dev docker service rm kst-lv-dev docker…
Python by examples
Python is high level object oriented language and is getting acclaimed beacuase of its simple yet robust features to develop, automate and visualise the applications. Its data analystics capabilities are amazing. I am going to share the example programs that I am using while learining it …. Call a Function-: import os, time, sys print(“hello”)…
pre-requisite-checks-oel6
Like required packages # OL6 and OL7 yum install binutils -y yum install compat-libcap1 -y yum install compat-libstdc++-33 -y yum install compat-libstdc++-33.i686 -y yum install gcc -y yum install gcc-c++ -y yum install glibc -y yum install glibc.i686 -y yum install glibc-devel -y yum install glibc-devel.i686 -y yum install libaio -y yum install libaio-devel -y…