how to upload django project (attendancesystem) into centOS server - mysql

I am just getting my hands on to django and linux server so still newbie. My question is I have a django project which is an attendance system and I would like to upload it to my server and i'm using CentOS6. I would like it so that other user can also use it and log into it. I totally no idea on what to do first and what to be aware off and so on. I am totally lost. Can anyone help me step by step that will help me on archiving this. Please ask if you need more information on anything.
Thank you in advanced.

Hopefully, someone has made a step by step documentation on how to install Django to a CentOs server:
http://itekblog.com/installing-python-django-on-centos-6-3-is-easy/
Deploying a web application in production is a critical task. If you have no knowledge about Linux, you will need assistance from a system administrator to understand exactly what you are doing.

Related

Setup MySQL with flutter/dart for local development and testing on mobile/android

Please Suggest Minimum Viable packages/ plugins to setup and query MySQL locally on phones using Flutter/Dart.
I am out in the wild with zero knowledge. Googling gave me sqlJocky, Dart http package, Shelf package.
Is that all I need to setup? any blog or guide is appreciated. Thank you!

using which mysql_backup packages?

I have a DB program and I want to use mysql_backup that is from here:
http://mysqlbackupnet.codeplex.com
When you download the package,there is 3 folders: .Net 2, .Net 4 and .Net 4.5
Is there any difference that which package I use?
Although it's better to use .Net 2 because all my clients have Windows XP that .Net 4 has some crashes on it.
And if there is no difference, then why there is three packages?
thanks
What "DB program" do you have? I'll take a guess it's MySQL you're working with, but are you using something like Percona or MariaDB as a drop in? Also what flavor of linux are you running on? I only ask because perhaps there are easier/cleaner ways of doing what you are trying to do.
If you have root access to the server you are working with, then why not write a bash script to take care of backing up your databases. Going your own custom route might seem to daunting, but the upside is you get to control how your system backs up. You could get a cron job to make backups to a specific user folder, or even have backups sent to a remote Dropbox. I've got a system similar setup on my own VPS. Happy to help you out if I'm able.

Deploying Django on VPS using Apache2 mysql using Ubuntu

I am trying to deploy my project on VPS(Ubuntu). I tried following all the steps from the Django documentation as well as other websites without any success.
My issue is that when i run the server, it will be alive only till the terminal is open.
So i am predicting that there is some issue with the procedure am using.
I am using Django with Apache2, mod_wsgi, cartridge, mysql, python.
I am now struck with a VPS and nothing in mind.
I wish if somebody could suggest me tutorial or any documentation which will help me continue.
I have successfully run the server on Ubuntu VPS. But it is on Development server.
thanks in advance
Sameer
you will use this Link please do not miss any step after complete all steps you will able to run your application.
there are more guideline's, follow the step by step.
http://thecodeship.com/deployment/deploy-django-apache-virtualenv-and-mod_wsgi/
http://michal.karzynski.pl/blog/2013/09/14/django-in-virtualenv-on-webfactions-apache-with-mod-wsgi/
https://library.linode.com/frameworks/django-apache-mod-wsgi/ubuntu-10.10-maverick

MySQL standalone or via XAMPP?

This is my first question ever at stackoverflow, hope I make sense out of it. I am starting to learn about databases and also programming these days. So I would want to get some advice on MySQL database. Though it's open source and available for download, Should I install the standalone MySQL GUI version on my laptop (Windows 7 32bit) or should I install XAMPP and then access it through phpMyAdmin ?? My purpose of asking this question is that , for starters..I am learning SQL and querying. And then I would want to learn to create web application using php or JavaEE.
I am completely unaware of these concepts, so I would appreciate if someone can just take few minutes and guide me accordingly.
Thanks !
Regards
and welcome :)
If you're planning on concentrating on PHP more than MySQL, it's a good start to install XAMPP. It's more lightweight and contains both PHP and Mysql. It's better for you to concentrate on learning the basics first, rather than spend time on software components. That's why I would choose XAMPP (or my personal favorite: WAMP Server)
If you'd like to spend a bit more time on database management such as user management, jobs,... it could be interesting to download the Mysql server package from their site.
Also, that package comes with example databases which you can use to learn some SELECT and UPDATE queries. It queries a lot easier that PHPMyAdmin.
If your goal is to use MySQL with self-made applications, get XAMPP and learn some PHP before diving into queries
And then I would want to learn to create web application using php
In this case XAMPP should be your friend. BTW with XAMPP you get an MySQL-Server which is identically with the MySQL standalone. You can fire your querys by using phpmyadmin, or connect via shell (console) or thridparty programms ....
In case that you are using NPM, you can install a standalone version of MySQL using the mysql-server package: https://www.npmjs.com/package/mysql-server

How do I connect to a remote MySQL database in Pentaho Report Designer?

I already installed pentaho report designer in my laptop platform ubuntu 10.10. I need to create report but the problem was how to connect the mysql database map in other server not in my laptop. I already tried researching but I cannot understand is there any step by step way on how to work on this?
Please help me badly needed this week. Thank you!!! I would appreciate any assistance you can give.
Don't really know anything about Pentaho, but you may find the Pentaho forum a useful place.
http://forums.pentaho.com/showthread.php?58459-how-to-connect-to-database-MySQL
This may help
http://wiki.pentaho.com/display/COM/Designing+Reports+With+MySQL+and+JNDI
The easiest solution is to clone the database locally to your laptop, and use JNDI definitions (which you can put in ~/.pentaho/simple-jndi/default.properties for PRD, and configure with Pentaho Administration Console for bi-server) - and as long as the JNDI sources have the same name, and point to databases with the same schema, your reports should work fine when you deploy them.
Dave.