I try to install msodbcsql17 on AWS EC2 with CentOS/RedHat (Linux).
These are the steps, I have followed, from Microsoft (LINK):
sudo su
#Download
After a long time of research, I have figured out a solution:
sudo rpm -i unixODBC-2.3.1-11.el7.x86_64.rpm
to install the necessary version (Perhaps, you have to change the version number to the version number of the uploaded file)sudo rpm -i msodbcsql17-17.1.0.1-1.x86_64.rpm
Enter sudo rpm -i mssql-tools-17.1.0.1-1.x86_64.rpm
Follow the rest of the Microsoft instruction, like in your question.
Instead of rpm -i
, you can use yum install
as well
UPDATE: Please take a look at the comment from @KnudLarsen!