Blogs

How to Add Disk Space to an OpenStack Instance Using a flavor Volume

  While installing Openshift on Openstack I was quickly informed that my masters needed at least 40 GB of Disk Volume, while my Openstack Flavor had only 10. If your Openstack Instance is using an attached volume, it is pretty straightforward to expand the volume with: openstack volume set VOLUME-ID –size 10 This only works with a number […]

Articles

Create Multiple Instances with a single Openstack CLI Command

Multiple instances in OpenStack CLI   I have been developing Infrastructure as code. Openstack is getting more powerful and popular everyday. You quickly get to a point when you need multiple instances. I am presently installing Openshift, which rfequires several instances. Here I will show you how to make multiple instances of the same size and flavor using Heat Stacks. […]

Articles

How to Enable ntp updates on FreeBSD

Login to the BSD machine as root user. edit /etc/rc.conf add the following lines to have ntpdate running on startup: ntpdate_hosts=”pool.ntp.org”ntpdate_enable=”YES” In case ntpdate doesn’t run start it. BSD# /etc/rc.d/ntpdate start Enjoy.

Articles

Subversion – TortoiseSVN first use

  Introduction The intent of this article is to show how to use TortoiseSVN for Windows. SVN, or Subversion, is a file versioning system, that comes to help developers. This system helps keep control over code written. TortoiseSVN is the client on Windows which helps us managing the code and keep in sync. Installation  a. […]

Articles

בניית אתרים – השלבים שכולם צריכים לדעת

תוכן השלב הראשון בבניית אתר הוא איסוף כל החומרים (תמונות, טקסטים, מאמרים וכל העולה על הדעת) שרוצים לשים באתר. איסוף זה חשוב לקביעת מהות האתר, סוג האתר וכן מספר העמודים שצריך באתר.פירוט על סוגי האתרים השונים ישנו בסוף המצגת. רעיון לפני שבונים אתר, צריך שני דברים, קודם כל צריך רעיון, ויותר מרעיון, צריך לחשוב מה רוצים […]

Articles

HTML and CSS Tips

CSS Styling Basic definitions such as ,html,body,a etc. I recommend starting a CSS document with these. An example would be: define font and color. This is the first global definition.{ font: XXXXXXXX; color: XXXXX; }html { }body { width: 100%; height: 100%; margin: 0px; }This could some some problems when you are working in dimensions that […]

Articles

How to Add httpd.conf for Your Virtual Site on Plesk

Introduction This tutorial is made to help Plesk hosting providers setup a different rule per virtual site on their Plesk Shared Hosting Server Procedure 1. Login to you server by ssh2. go to the virtual site directory# cd /var/www/vhosts//conf3. edit your vhost.conf file. It has to be named vhost.conffor example:# vi vhost.confAlias /some_link /var/some_directory_to_link_to/ SetEnv REMOTE_USER=$REDIRECT_REMOTE_USER     Options […]

Articles

הוספת ניתוב סטטי (ראוט סטטי) במכונת לינוקס

הקדמה בכל מכונת לינוקס אם מוסיפים משורת פקודה ראוט (ניתוב) סטטי, לאחר REBOOT של המחשב הראוט (ניתוב) הזה יימחקיש להוסיף ראוט סטטי על מנת שישאר גם לאחר REBOOT.אחת הדרכים להוסיף ראוט סטטי (ניתוב) היא בעזרת הקובץ /etc/sysconfig/static-routes הוספת ראוט סטטי למכונה אחת HOST: אם אתה מקליד בשורת הפקודה ככה: # route add -host 192.168.12.1 gw […]

Articles

How to Configure Soft RAID-1 on openSUSE with mdadm

Introduction As a hosting services provider company, the company needed a solution for automatically backing up our clients’ data on an external to the farm data storage. So in order to set up the different geo-location server with good standard backup we needed a raid of any kind. We’ve had a card laying here for […]

Articles