「インストール - Azure Data Studio」の版間の差分

ナビゲーションに移動 検索に移動
16行目: 16行目:
<br><br>
<br><br>


== インストール方法 ==
== Azure Data Studioのインストール ==
インストーラまたはtar.gzアーカイブを使用して、インストールする。<br>
RPMファイルまたはTarballを使用してインストールする。<br>
[https://docs.microsoft.com/ja-jp/sql/azure-data-studio/download-azure-data-studio?view=sql-server-ver15 MicrosoftのWebサイト]から、Linux用のAzure Data Studioをダウンロードする。<br>
[https://docs.microsoft.com/ja-jp/sql/azure-data-studio/download-azure-data-studio?view=sql-server-ver15 MicrosoftのWebサイト]からAzure Data Studioをダウンロードする。<br>
* rpm
* tar.gz
<br>
<br>
Azure Data Studioを起動するには、新しいターミナル ウィンドウを開いて次のコマンドを実行する。<br>
==== RPMファイルからインストール ====
# rpmを使用する場合
Azure Data Studioをインストールする。<br>
  # RHEL
  # RHEL
  sudo dnf install azuredatastudio-linux-<version string>.rpm
  sudo dnf install azuredatastudio-linux-<version string>.rpm
31行目: 28行目:
  sudo zypper install azuredatastudio-linux-<version string>.rpm
  sudo zypper install azuredatastudio-linux-<version string>.rpm
<br>
<br>
  # tar.gzファイルを使用する場合
コンソールからAzure Data Studioを起動する。<br>
azuredatastudio
<br>
==== Tarballからインストール ====
ダウンロードしたファイルを解凍する。<br>
tar xf azuredatastudio-linux-<バージョン>.tar.gz
mv azuredatastudio-linux-<バージョン>/* <Azure Data Studioのインストールディレクトリ> # 必要な場合
<br>
必要ならば、~/.profileファイル等に環境変数<code>PATH</code>を追記する。<br>
vi ~/.profile
<br>
<syntaxhighlight lang="sh">
# ~/.profileファイル
   
   
  tar zxvf azuredatastudio-linux-<version string>.tar.gz
  export PATH="<Azure Data Studioのインストールディレクトリ>:$PATH"
</syntaxhighlight>
<br>
<br>
環境変数PATHを追加するため、.bashrcファイルに以下を追記する。<br>
Azure Data Studioのデスクトップエントリファイルを作成する。<br>
  export PATH="/home/ユーザ名/azuredatastudio-linux-x64:$PATH"
  vi ~/.local/share/applications/AzureDataStudio.desktop
.bashrcファイルの変更を反映する。<br>
source .bashrc
<br>
<br>
Azure Data Studioを起動する時は、以下のコマンドを実行する。<br>
<syntaxhighlight lang="ini">
  azuredatastudio
# ~/.local/share/applications/AzureDataStudio.desktopファイル
[Desktop Entry]
Type=Application
Name=Azure Data Studio
GenericName=Text Editor
Comment=Data Management Tool that enables you to work with SQL Server, Azure SQL DB and SQL DW from Windows, macOS and Linux.
Exec=/<Azure Data Studioのインストールディレクトリ>/azuredatastudio --unity-launch %F
Icon=/<Azure Data Studioのインストールディレクトリ>/resources/app/resources/linux/code.png
Categories=TextEditor;Development;IDE;
MimeType=text/plain;inode/directory;application/x-azuredatastudio-workspace;
Keywords=azuredatastudio;
StartupNotify=false
StartupWMClass=azuredatastudio
Actions=new-empty-window;
[Desktop Action new-empty-window]
Name=New Empty Window
Exec=/<Azure Data Studioのインストールディレクトリ>/azuredatastudio --new-window %F
Icon=/<Azure Data Studioのインストールディレクトリ>/resources/app/resources/linux/code.png
</syntaxhighlight>
<br>
vi ~/.local/share/applications/AzureDataStudio-url-handler.desktop
<br>
  <syntaxhighlight lang="ini">
# ~/.local/share/applications/AzureDataStudio-url-handler.desktopファイル
[Desktop Entry]
Type=Application
Name=Azure Data Studio - URL Handler
GenericName=Text Editor
Comment=Azure Data Studio
Exec=/<Azure Data Studioのインストールディレクトリ>/azuredatastudio --open-url %U
Icon=/home/<Azure Data Studioのインストールディレクトリ>/resources/app/resources/linux/code.png
Categories=Utility;TextEditor;Development;IDE;
MimeType=x-scheme-handler/azuredatastudio;
Keywords=azuredatastudio;
NoDisplay=true
StartupNotify=true
</syntaxhighlight>
<br><br>
<br><br>


案内メニュー