nixCraft Linux Forum

nixCraft

Linux / UNIX Tech Support Forum

Need Help ! Linux and Oracle (Encryption)

This is a discussion on Need Help ! Linux and Oracle (Encryption) within the Linux software forums, part of the Linux Getting Started category; Dear Friends, I have RedHat AS 2.1 Server with Oracle as Database. I am looking for some tool which can ...


Go Back   nixCraft Linux Forum > Linux Getting Started > Linux software

Linux answers from nixCraft.


Linux software General questions and discussion about Redhat/Fedora Core/Cent OS, Debian and Ubuntu Linux related to softwares should go here.

Reply

 

LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 20-06-2005, 09:21 PM
Junior Member
User
 
Join Date: Jan 2005
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
santoshkamane
Default Need Help ! Linux and Oracle (Encryption)

Dear Friends,

I have RedHat AS 2.1 Server with Oracle as Database. I am looking for some tool which can provide me strong encryption.

I want my data to be encrypted before it gets backed up on tape. These tapes are accessible to third party vendors hence I want soem strong encryprion tool.

Your help is highly appreciated

Thanks
Santosh
Reply With Quote
  #2 (permalink)  
Old 21-06-2005, 12:34 AM
monk's Avatar
Senior Member
User
 
Join Date: Jan 2005
Location: Tibet
OS: Debian GNU/Linux
Posts: 506
Thanks: 0
Thanked 8 Times in 6 Posts
Rep Power: 7
monk has a spectacular aura about monk has a spectacular aura about
Default

Not a big deal!

You can use openssl command
Code:
tar zcvf -  mydata|openssl des3 -salt  -k YOUR-PASSWORD | dd of=/dev/st0
Restore data:
Code:
dd if=/dev/st0|openssl des3 -d -k YOUR-PASSWORD|tar xzf -
Other methods may exists! But this is simple and easy to use if you forget YOUR-PASSWORD it is not possible to get back data!
Reply With Quote
  #3 (permalink)  
Old 25-06-2005, 08:14 PM
nixcraft's Avatar
Never say die
User
 
Join Date: Jan 2005
Location: BIOS
OS: RHEL
Scripting language: Bash and Python
Posts: 2,710
Thanks: 11
Thanked 245 Times in 184 Posts
Rep Power: 10
nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute
Default

You can also use gpg command to create password protected and encrypted file and then simply write file using tar command!
__________________
Vivek Gite
Linux Evangelist
Be proud RHEL user, and let the world know about your enterprise choices! Join RedHat user group.
Always use CODE tags for posting system output and commands!
Do you run a Linux? Let's face it, you need help
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads

Thread Thread Starter Forum Replies Last Post
Error while installing oracle amsreeku Linux software 1 12-10-2007 08:58 PM
MySQL to ORACLE Migration Software zafar466 Databases servers 1 05-01-2007 03:38 PM
How to List my tables in Oracle database Databases servers 3 20-12-2006 03:25 PM
problem with accesing oracle in linux ramjimh Linux software 3 06-07-2006 12:38 PM
Oracle Eyes Novell Acquisition Ashish Pathak The Hangout 0 27-04-2006 03:41 PM


All times are GMT +5.5. The time now is 08:54 PM.


Powered by vBulletin® Version 3.8.5 - Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.2
©2005-2010 nixCraft. All rights reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38