Tag

hosting

Browsing

In today’s marketplace, organizations have become increasingly reliant on IT to improve business productivity and customer retention.  At the same token, many faces with the dilemma of costly legacy IT systems.

The current economic climate has coerced many companies to find ways to reduce IT costs.  For many companies, this can mean a massive undertaking and challenge presents a challenge for IT departments with budgetary restrictions.  With traditional legacy IT systems, cutting costs on IT budgets could mean making do with aging in-house infrastructures which impede business productivity and customer demands for new technologies. The good news is there are ways you can reduce IT costs while gaining access to the latest technologies.

Cloud and information technology performance capabilities continue to expand, and security for this technology must grow alongside. Hackers, phishers, and identity thieves all pose significant risks, but one of the most significant growing threats in the eyes of IT professionals is the recent information about National Security Agency data collection and monitoring. The industry is scrambling to ensure security in a heightened time of paranoia. Data security in the cloud is one of the platforms that need protection.

If you regularly work with scripts on any Unix or Linux platform and it gets killed when you log out from ssh, the session dies or the scripts stop working after x time then you need to down it and fork it to the background.
So instead of running
/your/script/filename
run
nohup /your/script/filename &
What this does is start the script, the nohup downs the scripts (meaning that it has no owner so you can log out without killing the process) and the & at the end sends the process to the background. This is the alternative method to run something from within screen but this version works well with a crontab.
FYI the crontab is a file and a program (both named the same) that executes commands (opening files, sending email, any command that you could do via the regular shell) at specific interval or times.
ServerPronto offers the best affordable and secure hosting service in all dedicated server packages.

Simple HTTP server

1. Make sure your port 8000 is open
Nano /etc/sysconfig/iptables
Copy any of the rules (ctrl +K is cut, ctrl+U is paste) and swap the port for 8000, save and close
Service iptables restart
2. Go to the folder you want to share
cd /to/any/folder/you/want
3. Fire up the server
python –m SimpleHTTPServer
or
python -m http.server
4. Go to http://yourip:8000
Further information:
This will act as a regular apache server, if on that folder is an index.html file, it will be displayed, otherwise, a list of the files on that folder will be shown.
To stop the server just press Ctrl + C
To send the process to the background add a & symbol at the very end of any of the python commands
Otherwise, press Ctrl + Z and then type bg and enter
To stop the process when the above has been done just type:
Ps aux | grep python
Look for the first group of 4 or 5 digits and then type
Kill #####