Skip to content

Instantly share code, notes, and snippets.

@din2011
din2011 / gist:59e4d0632b40209fd638066dd6798bd3
Created October 19, 2021 15:11
ORACLE in Linux XAMPP (Ubuntu)
Original Reference : https://medium.com/@arisandyrico/oracle-in-linux-xampp-aaefae236bd4
1. Install Oracle Instant Client
First you need to install Oracle Instant Client which you can find here https://www.oracle.com/database/technologies/instant-client/downloads.html. Download at least for Basic with description OCI support, and SDK/Devel. For easy use, I download it RPM then install it using “alien” command.
( I Downloaded OL8 RPM )
sudo alien -i oracle-instantclient-basic-21.3.0.0.0-1.el8.x86_64.rpm
sudo alien -i oracle-instantclient-devel-21.3.0.0.0-1.el8.x86_64.rpm
*note : -i for install
@din2011
din2011 / main.go
Last active August 29, 2015 14:12 — forked from mschoebel/main.go
package main
import (
"fmt"
"github.com/gorilla/mux"
"github.com/gorilla/securecookie"
"net/http"
)
// cookie handling