Setting up a database in Ubuntu -


i working on ubuntu 12.04. need set database of sql server. or there anyway set database on our own?

i need practice using sql, working on "informix aix" systems practice. need set done asap.

i recommend installing mysql open source , free use educational purposes. if want redistribute commercial purposes requires license (thought throw in in case).

it pretty simple installed on ubuntu, type in sudo apt-get install mysql-server in terminal , rest you. prompt set password database, once installation complete server should start automatically , ready start using.

if have questions, tutorial @ can found at: https://help.ubuntu.com/12.04/serverguide/mysql.html

to access database command line use: mysql -u <username> -p (don't give argument -p switch; hit enter , make sure -p last word on command line). command prompt enter in password. password should entered password interactively because command history saved in plain text , can press arrow key find password if entered in command line.

hope helps,

trevor


Comments

Popular posts from this blog

javascript - backbone.js Collection.add() doesn't `construct` (`initialize`) an object -

php - Get uncommon values from two or more arrays -

Adding duplicate array rows in Php -