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!.
August 24, 2016
12:30 pm
Comments: 0
Eli Kleinman
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)...
August 17, 2016
2:52 pm
Comments: 0
Eli Kleinman
https://blogs.oracle.com/raghuram/entry/fibre_channel_sr_iov
August 4, 2016
11:37 am
Comments: 0
Eli Kleinman
https://thornelabs.net/2014/03/13/openstack-commands-cheat-sheet.html
July 28, 2016
5:11 pm
Comments: 0
Eli Kleinman
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...
July 27, 2016
5:46 pm
Comments: 0
Eli Kleinman
(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...
July 26, 2016
3:45 pm
Comments: 0
Eli Kleinman
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...
July 21, 2016
9:44 am
Comments: 0
Eli Kleinman
(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/...
July 18, 2016
1:04 pm
Comments: 0
Eli Kleinman
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....
No posts found