Firefox 16, a treat for developers http://t.co/cnd27CzT
PostgreSQL 9.0.2 released
PostgreSQL is a powerful, open source object-relational database system. It has more than 15 years of active development and a proven architecture that has earned it a strong reputation for reliability, data integrity, and correctness. It runs on all major operating systems, including Linux, UNIX (AIX, BSD, HP-UX, SGI IRIX, Mac OS X, Solaris, Tru64), and Windows. It is fully ACID compliant, has full support for foreign keys, joins, views, triggers, and stored procedures (in multiple languages). It includes most SQL:2008 data types, including INTEGER, NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERVAL, and TIMESTAMP. It also supports storage of binary large objects, including pictures, sounds, or video. It has native programming interfaces for C/C++, Java, .Net, Perl, Python, Ruby, Tcl, ODBC, among others
The 9.0.2 update also contains several fixes for issues with features introduced or changed in version 9.0:
- Fix low-risk potential denial of service against RADIUS login.
- Make OFF keyword unreserved.
- Fix bug in tracking of latest removed WAL segment in streaming replication.
- Fix for buffer overrun in pg_upgrade.
- Fix memory leak in autovacuum launcher.
- Fix for race condition in transaction ID assignment and lock acquisition in hot standby.
- Improve performance for parallel restore with many blobs.
Install Postgrsql Server ON Fedora/Centos
Login as the root user and enter the command:# yum install postgresql postgresql-server
Start at boot Postgrsql
# chkconfig postgresql on
Start Postgrsql Service
# service postgresql start
Initializing database: [ OK ]
Starting postgresql service: [ OK ]Connect Postgresql Server
psql: FATAL: Ident authentication failed for user "postgres"
[root@centos5-unixmen ~]# su - postgres
-bash-3.2$ psql -d template1 -U postgres
Welcome to psql 8.1.22, the PostgreSQL interactive terminal.
Type: copyright for distribution terms
h for help with SQL commands
? for help with psql commands
g or terminate with semicolon to execute query
q to quit
template1=#Add a database with name alfa
template1=# CREATE DATABASE alfa;
CREATE DATABASEAdd a database user James
template1=# CREATE USER zz WITH PASSWORD 'pass';
CREATE ROLE
template1=#
Now grant all privileges on database alfa for user James
template1=# GRANT ALL PRIVILEGES ON DATABASE alfa to zz;
GRANT
template1=#
Test if user zz can connect to the Database
add user James to the system first
[root@centos5-unixmen ~]# adduser James
[root@centos5-unixmen ~]# passwd James
Changing password for user James.
New UNIX password:
BAD PASSWORD: it does not contain enough DIFFERENT characters
Retype new UNIX password:
passwd: all authentication tokens updated successfully
Connect the database alfa with user zz
#su - zz
[zz@centos5-unixmen ~]$ psql alfa
Welcome to psql 8.1.22, the PostgreSQL interactive terminal.
Type: copyright for distribution terms
h for help with SQL commands
? for help with psql commands
g or terminate with semicolon to execute query
q to quit
alfa=#
show the users and tables
alfa=# du
List of roles
Role name | Superuser | Create role | Create DB | Connections | Member of
-----------+-----------+-------------+-----------+-------------+-----------
james | no | no | no | no limit |
postgres | yes | yes | yes | no limit |
zz | yes | yes | yes | no limit |
(3 rows)
alfa=#
ENJOYFor questions please refer to our Q/A forum at : http://ask.unixmen.com
Like us on Facebook
This week Top Posts 
Top Things to do After Installing Ubuntu 13.04 ‘Raring Ringtail’ : Ubuntu 13.04 Raring Ringtail final is almost out. The final release it scheduled for release on Apri...0 comment(s) |
Howto: Upgrade to Ubuntu 13.04 Raring Ringtail from 12.04, 12,10 | Desktop & Server : Updated 05-04-2013: Ubuntu 13.04 Raring Ringtail will be released Soon, If you have ubuntu 12,10, 12...0 comment(s) |
Install lamp with 1 command in Ubuntu 12.10, 13.04 Raring Ringtail & LinuxMint13 : Updated: 10/09/2012 :LAMP (Linux, Apache, MySQL and PHP) is an open source Web development platform ...0 comment(s) |
Configure conky-Lua in Ubuntu (12.10 & 13.04 Raring Ringtail), Fedora, debian and LinuxMint | Howto Conky : Updated 05-04-2013: Conky is a free, light-weight system monitor for X, that displays any informatio...0 comment(s) |
Howto- Resolve nosound problem on Ubuntu 13.04 Raring Ringtail,12.10 and Older : Updated 05/04/2013 : One of the common issues facing Ubuntu users after installing or upgrading Ubun...0 comment(s) |
Install and Configure Samba share in Ubuntu 13.04 Raring Ringtail , 12.10, 12.04| Howto : Updated 05-04-2013: One of the most asked features for Samba is a graphical user interface to help w...0 comment(s) |
Recent Posts
- Secure File from Removal in Linux and Unix
- How to Install Nginx on FreeBSD 9.x
- Create a Launcher in Ubuntu Using Bash
- Scan Your Home Network With Nmap
- Steganography- Hide Your Files Inside An Image in Linux
- Unix/Linux File Recognition. Did You Know?
- Migrate from MySQL to MariaDB in FreeBSD
- Connect Your Android Galaxy Tablet to Ubuntu via USB
- ElementaryOS Beta 1 and 2 Comparison and Review
- Introduction to the Linux Command Line
Recent Comments



















nombre apellido
| #
Great tool. Thanks a lot
sobriquet
| #
use the ‘browse’ option to select the startupconky.sh file from its location.
Snake
| #
Wow, great. That’s what i’m waiting for too. I want to make DC with LDAP ( Active Directory alternative) and SAMBA on Ubuntu. :-)
Blawer
| #
Thanks!!!!!!!!!!!!!!!!!! you rules!!! all the other “help” in google are useless… yours was very helpful. Thanks again
piCool
| #
Great ! we have another another master trick :-)