Hits: 1022I want to make a “one click” Cloud formation” on AWS that creates a MongoDB or MySql replica set of at least 3 servers in the same or globally in different regions, or even clouds and local Data Center, Wish me luck Finally, let’s look at the most interesting tool in the …
Setup standalone #Docker swarms on Localhost
Hits: 1837I am setting up on Localhost, in order to save cloud fees and maybe some time during development. Multi-host networking with standalone swarms Estimated reading time: 11 minutes Standalone swarm only! This article only applies to users who need to use a standalone swarm with Docker, as opposed to swarm mode. Standalone swarms (sometimes …
Continue reading ” Setup standalone #Docker swarms on Localhost”
How to run scripts on #Linux start up? crontab @reboot #devops
Hits: 1109Nothing like a good Geeky command after the Yom Kippur 25 hour fast! Ubuntu loves to run apt-daily.service on Startup, which messes with devops pre-installations. In My case I want to run docker-machine. Turn off auto updates edit file 20-auto-upgrades in /usr/share/unattended-upgrades Turn the service back on after 20 minutes or /etc/apt/apt.conf.d …
Continue reading ” How to run scripts on #Linux start up? crontab @reboot #devops”
Hmailserver script to set account #passwords
Hits: 1363I am going to try the following code to pre-set a password on Hmailserver. My previous code doesn’t work on the newly installed Cloud Instance. Stay Tuned. The link and code are pretty old, but hope it will still work. Advice welcome! <?PHP // Users password $strPassword = “test123”; // Generate 6 Character …
Continue reading “Hmailserver script to set account #passwords”
Tech travelers Be sure to tip Skycaps, They work harder than tech workers and Start-up folks
Hits: 1201Skycaps Don’t Work for the Airlines They Work for You! Many travelers and even airline employees are not aware that skycaps, the people who check in your luggage curbside and carry your bags inside the terminal, and to and from the curb, are not airline employees. These uniformed workers don’t get any benefits such …
Should You Use #Linux / #OpenSource or #Windows #Cloud Hosting?
Hits: 1525The Debate over OpenSource is back! I just read these 2 very interesting articles about whether you should use Windows as your cloud Server, even though it’s less popular? and whether cloud pricing methodologies are making Open Source cost the same as Proprietary? We deal with this question every day. Being cheap and …
Continue reading “Should You Use #Linux / #OpenSource or #Windows #Cloud Hosting? “
Vtiger not syncing with Google Contacts –
Hits: 2431Get Google contacts to sync with your Vtiger Install OpenSource Charming CRM. Everything will work much more smoothly than with Vtiger: https://aws.amazon.com/marketplace/pp/B073WXGVSW Here is a bit of directions to get Google contacts to sync with your Vtiger. You need to create an API for Contacts and/or Calendar and give it your URL. After all …
Continue reading “Vtiger not syncing with Google Contacts – “
How to install and integrate SpamAssassin with Postfix on a CentOS 6 VPS – RoseHosting.com Blog
Hits: 2521Microsoft Oulook’s spam filter is broken for a while now. I got sick of wasting time deleteing spam. So I installed SpamAssassin. the last time I used this it was OK. But needed to be taught not trash transliterated Hebrew words like “Mezuzot” since my other Business is producing such Judaica tutorial we are …
Charming #CRM based on Vtiger 7 – With Bug fixes for WebForms, Opportunities, PDF export.
Hits: 2838Vtiger is the most popular open source CRM. The project owners also have a for pay service, but are still very committed to the open source community edition. Here are fixes for popular issues found in the Open Source edition. WebForms dont save and then give 500 error Opportunities Mbstring error PDF exports instructions …
hmail server – DKIM hmailserver and NameCheap Setup – Stack Overflow
Hits: 2976 For our popular PHPlist server that uses Hmailserver on aws.amazon.com/marketplace/ sometimes you cannot use SES, But the users still want their messages delivered. so here is some info. I hope that it is helpful. I’ve been trying to setup my hmailserver with DKIM. I was following this guide -> https://www.hmailserver.com/forum/viewtopic.php?t=29402 And I created my …
Continue reading “hmail server – DKIM hmailserver and NameCheap Setup – Stack Overflow”
docker-machine with aws driver – Amazon Web Services from Docker Documentation
Hits: 2952Docker-machine for AWS call the ami that you want as the base and much more Source: Amazon Web Services | Docker Documentation docker-machine create –driver amazonec2 –amazonec2-access-key AKI******* –amazonec2-secret-key 8T93C******* aws01 Environment variables You can use environment variables: $ export AWS_ACCESS_KEY_ID=AKID1234567890 $ export AWS_SECRET_ACCESS_KEY=MY-SECRET-KEY $ docker-machine create –driver amazonec2 aws01 Options –amazonec2-access-key: Your …
Continue reading “docker-machine with aws driver – Amazon Web Services from Docker Documentation”
Deploy a Highly-Available MongoDB Replica Set on AWS
Hits: 2436This article about building MongoDB replica sets buy Elad Nava is really good! However, running a scalable, highly-available MongoDB cluster is a whole ‘nother story. You need a good understanding of how replica sets work and be familiar with the inner workings of MongoDB. And you need to set up tooling to constantly …
Continue reading “Deploy a Highly-Available MongoDB Replica Set on AWS”
10 Ways to Generate a Random Password from the Command Line
Hits: 1629This method uses SHA to hash the date, runs through base64, and then outputs the top 32 characters. date +%s | sha256sum | base64 | head -c 32 ; echo This method used the built-in /dev/urandom feature, and filters out only characters that you would normally use in a password. Then it outputs the …
Continue reading “10 Ways to Generate a Random Password from the Command Line”