Created
May 22, 2017 21:03
-
-
Save meet-bhagdev/c787a8c29db7678b36046127dafbc9ea to your computer and use it in GitHub Desktop.
Script to install ODBC Drivers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test | |
sudo apt-get update | |
sudo -i export CPPFLAGS="-DSIZEOF_LONG_INT=8" | |
sudo apt-get -y install gcc-5 g++-5 | |
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 60 --slave /usr/bin/g++ g++ /usr/bin/g++-5 | |
cd ~ | |
echo "Configuring the unixODBC 2.3.1 Driver Manager" | |
wget ftp://ftp.unixodbc.org/pub/unixODBC/unixODBC-2.3.1.tar.gz | |
tar -xzf unixODBC-2.3.1.tar.gz | |
cd unixODBC-2.3.1/ | |
./configure --prefix=/usr --libdir=/usr/lib64 --sysconfdir=/etc --disable-gui --disable-drivers --enable-iconv --with-iconv-char-enc=UTF8 --with-iconv-ucode-enc=UTF16LE 1> odbc_con.log 2> make_err.log | |
echo "Building and Installing the unixODBC 2.3.1 Driver Manager" | |
sudo make 1> make_std.log 2> make_err.log | |
sudo make install 1> makeinstall_std.log 2> makeinstall_err.log | |
cd ~ | |
echo "Downloading the Microsoft ODBC Driver 13 for SQL Server - Ubuntu" | |
wget "https://meetsstorenew.blob.core.windows.net/contianerhd/Ubuntu%2013.0%20Tar/msodbcsql-13.0.0.0.tar.gz?st=2016-10-18T17%3A29%3A00Z&se=2022-10-19T17%3A29%3A00Z&sp=rl&sv=2015-04-05&sr=b&sig=cDwPfrouVeIQf0vi%2BnKt%2BzX8Z8caIYvRCmicDL5oknY%3D" -O msodbcsql-13.0.0.0.tar.gz | |
tar -xzf msodbcsql-13.0.0.0.tar.gz | |
cd msodbcsql-13.0.0.0/ | |
echo "Installing Dependencies" | |
sudo apt-get -y install libssl1.0.0 | |
sudo apt-get -y install libgss3 | |
sudo echo "/usr/lib64" >> /etc/ld.so.conf | |
sudo ldconfig | |
echo "Installing the Microsoft ODBC Driver 13 for SQL Server - Ubuntu" | |
sudo bash ./install.sh install --force --accept-license | |
cd ~ | |
export LC_ALL=C |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment