Wednesday, April 29, 2009
Oracle to Buy Sun (April 20, 2009)
Oracle to Buy Sun (April 20, 2009) Sun and Oracle today announced a definitive agreement for Oracle to acquire Sun for $9.50 per share in cash. The Sun Board of Directors has unanimously approved the transaction. It is anticipated to close this summer.
Monday, April 20, 2009
PostgreSQL 8.4 Beta 1 Released
The first beta of Version 8.4 of the world's most advanced open source database, PostgreSQL, was just released by the PostgreSQL Global Development Group. After fourteen months of development, 8.4 is ready for testing by PostgreSQL users all over the world in order to make it our best release ever.
Please download and install version 8.4 and test out these new features as soon as you can! You can especially help the PostgreSQL developers by trying new features in combination, and by doing a test port of your production applications to version 8.4.
Please download and install version 8.4 and test out these new features as soon as you can! You can especially help the PostgreSQL developers by trying new features in combination, and by doing a test port of your production applications to version 8.4.
Tuesday, April 7, 2009
YUM edit on Fedora
Fedora Linux has few package managers (rpm , yum)
now , we will use yum as package manager.
we assumed , you have been installed yum ; its OK
then we will use yum :
1. we must choice repository (mirrors) where there are many fedora package
2. login as root
3. edit yum
vim /etc/yum.repos.d/fedora-extras.repo
then modify the '[extras] ' part to include your chosen mirrors:
[extras]
5. then you can use yum
yum update
yum install package-name
now , we will use yum as package manager.
we assumed , you have been installed yum ; its OK
then we will use yum :
1. we must choice repository (mirrors) where there are many fedora package
2. login as root
3. edit yum
vim /etc/yum.repos.d/fedora-extras.repo
then modify the '[extras] ' part to include your chosen mirrors:
[extras]
name=Fedora Extras $releasever - $basearch4. exit vim
#baseurl=http://download.fedora.redhat.com/pub/fedora/linux/extras/$releasever/$basearch/
baseurl=http://ftp.uni-bayreuth.de/linux/fedora/linux/extras/$releasever/$basearch/
ftp://ftp.tu-chemnitz.de/pub/linux/fedora-core-extras/$releasever/$basearch/
failovermethod=priority
mirrorlist=http://fedora.redhat.com/download/mirrors/fedora-extras-$releasever
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-extras
gpgcheck=1
5. then you can use yum
yum update
yum install package-name
Apache Geronimo v2.1.4 - Released
2009-03-31
The Apache Geronimo project is pleased to announce the new v2.1.4 server release. This is primarily a maintenance release. Among the updates and fixes included in the release are several security fixes for vulnerabilities in the administration console. Details of the security vulnerabilities fixed in this release can be found in the Security Report. Other fixes and enhancements are listed in the Release Notes
.
Visit the Downloads page for details on downloading Apache Geronimo v2.1.4 server assemblies.
Friday, March 27, 2009
PostgreSQL On Linux : POST INSTALLATION (3)
We assume you have installed postgresql on linux, and running.
if we want that postgresql receive connection from other (not localhost), we must setting file pg_hba.conf (ex. /usr/local/pgsql/dataku/pg_hba.conf) ; i have installed on /usr/local/pgsql , and folder dataku.
you must edit file pg_hba.conf :
#############################################################
# TYPE DATABASE USER CIDR-ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all trust
# IPv4 local connections:
host all all 127.0.0.1/32 trust
host all all 10.107.0.0/16 md5
host mydata deklompen 10.100.0.0/16 md5
# IPv6 local connections:
host all all ::1/128 trust
#############################################################
After edit it, you must restart postgresql.
in this case, database mydata can be accessed from ip-address start 10.100.0.1 end 10.100.255.255 ; user database = deklompen ; with md5 encryption.
if you use md5 encryption, you must create a database user with option encryption
ex. createuser new_user -s -E
the default createuser is not encrypted.
if we want that postgresql receive connection from other (not localhost), we must setting file pg_hba.conf (ex. /usr/local/pgsql/dataku/pg_hba.conf) ; i have installed on /usr/local/pgsql , and folder dataku.
you must edit file pg_hba.conf :
#############################################################
# TYPE DATABASE USER CIDR-ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all trust
# IPv4 local connections:
host all all 127.0.0.1/32 trust
host all all 10.107.0.0/16 md5
host mydata deklompen 10.100.0.0/16 md5
# IPv6 local connections:
host all all ::1/128 trust
#############################################################
After edit it, you must restart postgresql.
in this case, database mydata can be accessed from ip-address start 10.100.0.1 end 10.100.255.255 ; user database = deklompen ; with md5 encryption.
if you use md5 encryption, you must create a database user with option encryption
ex. createuser new_user -s -E
the default createuser is not encrypted.
Wednesday, March 18, 2009
PostgreSQL updates released
The PostgreSQL Global Development Group has released minor versions 8.3.7, 8.2.13, 8.1.17, 8.0.21 and 7.4.25. All users should upgrade to receive the latest fixes.
Wednesday, March 11, 2009
Auto Refresh on JSP
on jsp / servlet you can force to refresh web client, in other case you can use java script.
on jsp you only add 1 line code :
response.setIntHeader("Refresh", 600);
600 = 600 second = 6 minutes
good luck
on jsp you only add 1 line code :
response.setIntHeader("Refresh", 600);
600 = 600 second = 6 minutes
good luck
Subscribe to:
Posts (Atom)
