AzureのAppServiceのRubyイメージではtiny_tdsを利用できない
概要
タイトルの通りですが、AzureのAppserviceで使えるRubyのデフォルトイメージだとfreeTDSのバージョンが古いため、
tiny_tdsを使ってSQLServerへの接続ができませんでした。
対処法
Appserviceコンソールなどからは対処不可、自前のコンテナイメージ使いましょう。
なお、RubyのデフォルトイメージのgithubにPRあがってるみたいだがまだ未処理
これがマージされれば使えるかな?
https://github.com/Azure-App-Service/ruby/pull/38
以下、いろいろ検証してみたこと。
AppServiceのコンテナをローカルで使ってみる
いろいろ調べるとdockerイメージが公開されている。
https://github.com/Azure-App-Service/ruby
(DockerHubにもある)
これを使って色々と。
こちらにローカルで使う方法がありましたので、それを実行。
https://github.com/Azure-App-Service/teamblog/blob/master/docs/Images.md
docker pull appsvc/<ImageTag>
docker run \
-d -it -P \
--volume $(pwd):/home/site/wwwroot \
--env PORT=8080 \
--publish 8080:8080 \
appsvc/<ImageTag>
curl localhost:8080
docker exec -it <container> bash
これでひとまずは動く。(別にrailsのアプリの場所でなくても大丈夫そう)
で、localhost:8080
を叩くと、AppServiceのおなじみの画面が出る。
ここからbashでコンテナに入ってみて、いろいろ確認。
$ apt show freetds-bin
Package: freetds-bin
Source: freetds (0.91-6)
Version: 0.91-6+b1
Installed-Size: 750 kB
Maintainer: Steve Langasek <[email protected]>
Depends: libc6 (>= 2.17), libgnutls-deb0-28 (>= 3.2.10-0),
libgssapi-krb5-2 (>= 1.10+dfsg~), libodbc1 (>= 2.3.1), libreadline6 (>= 6.0), libsybdb5 (>= 0.82),
libtinfo5, freetds-common
Homepage: http://www.freetds.org/
Tag: interface::commandline, role::program
Section: database
Priority: optional
Download-Size: 217 kB
APT-Manual-Installed: yes
APT-Sources: http://deb.debian.org/debian/ jessie/main amd64 Packages
Description: FreeTDS command-line utilities
(freetds-devも同じような感じ。)
ということで、0.91のfreetdsが入ってる。しかし、直近のtiny_tdsではDo you have FreeTDS 0.95.80 or higher installed?
とか言われる。
tiny_tdsのバージョンを落とせば入るかもしれないが、0.91に対応してるバージョンを見つけるのが大変なのでここで打ち切り。
ちなみにbashで入ったとき、gemとかはここにある。
/usr/local/.rbenv/versions/2.6.2/bin
(Rubyのバージョンは置き換えて)
最後に
早くマージしてほしい。
Author And Source
この問題について(AzureのAppServiceのRubyイメージではtiny_tdsを利用できない), 我々は、より多くの情報をここで見つけました https://qiita.com/hatobeam75/items/cead0a90fd8e7b71177d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .