Blog Posts

Would you like to start a project with us?

Use the Contact Form to get in touch with us, comments, questions or suggestions. You can also simply say hello!.

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Search in posts
Search in pages
Filter by Categories
alfresco
Andriod
Andriod Studio
angularjs
Apple
Applications
AWS
BDA
bootstrap
brocade
cassandra
Chef
cloud
Configuration Managment
Consul
css
dansguardian
DB
DIP
django
docker
Drupal
elasticsearch
emc
Enterprise Manager 12c
Enterprise Manager 13c
ESX-5.4
Ethernet
firefox
flume
Fun
Genral
Github
grafana
Hadoop
Hardware
highcharts
hitachi-vsp
HP iLO
HylaFax
IB
IDM
ilom
informix
java
javascript
jmeter
jquery
Kubernetes
KVM
LDAP
Load Test
mac
mediawiki
Mongodb
Monitoring
Music
neo4j
NetBackup
NetBeans
NetScaller
network
nginx
node
nodejs
NoSQL
Odsee
oel-6
oel-7
office
OpenGL
openstack
openstack
Ops Center
Oracle
Oracle IDM
Oracle iLOM
Oracle NoSQL
OracleDB
os
OTD
OUD
OUDSM
ovm-for-sparc
OVN
perl
php
Puppet
python
python
redhat-6
redis
scripting
solaris
solaris-11.3
solaris10
solaris11
solaris11.1
solaris11.2
solaris11.4
solaris12
SQLite
squid
storage
Sun
thunderbird
Tripwire
Uncategorized
Veritas
violin
virtualization
web
weblogic
wiki
windows-2008
windows-2012
wordpress
ZFSSA
zones
How To Create a Python Socket Server
Create the Python Socket Server #!/bin/python import socket host = '10.10.10.10' port = 50000 backlog = 5 size = 1024 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.bind((host,port)) s.listen(backlog)...
How to enable update SR-IOV on FiberChanel (FC) on Solaris 16Gb adapters
https://blogs.oracle.com/raghuram/entry/fibre_channel_sr_iov
Openstack Cheat Sheet
https://thornelabs.net/2014/03/13/openstack-commands-cheat-sheet.html
how to install Openstack kilo on Solaris 12 with oVS
First install MySQL and openstack pkg install mysql-56 pkg:/database/mysql-56/client openstack service/network/openvswitch MySQL configuration zfs create -o mountpoint=/mysql rpool/mysql mkdir /mysql/logs...
Enable Solaris 11.4 / 12 Analytics Remote Web GUI Access
(No Ratings Yet)Loading... Enable Solaris 11.4 / 12 Analytics Remote Web GUI Access svcs webui/server sstore $ svccfg -s webui/server:default setprop conf/redirect_from_https=false $ svcadm refresh webui/server...
How to create a Solaris IPS PKG
The below example creates a Solaris pkg from the Nagios application, you can then publishes the pkg to a Solaris repository. Note: To see how-to publish this pkg to a Solaris repository click here Extract...
How to set NPM proxy settings in .npmrc
(No Ratings Yet)Loading...Below you will find, how to set a proxy for Node/NPM by using an .npmrc file. cat .npmrc proxy=http://user:passsword@host.domain.com:8080/ https-proxy=http://user:passsword@host.domain.com:8080/...
Solaris Nginx Performance Tuning
Solaris Nginx Performance Tuning This is kind of old by now, but might still work. This is a huge performance win for Solaris. Nginx can avoid the 0(n) file descriptor problem with event ports support....
1 13 14 15 16 17 58