1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

メモ: BIG-IP Application Connector Proxyのdocker runコマンド

Last updated at Posted at 2017-10-20

Application Connector Proxy インスール

  • F5 downloadサイトからDocker Imageのダウンロード
  • Node.jsのインストール
  • Dockerのインストール
  • Dockerのスタート
  • f5_ac.tar.gzのDocker Load
  • Install the Application Connector Proxy
    Before you can install the Application Connector Proxy, you need to download the installation package from downloads.f5.com.
    To access the Application Connector Proxy, you install the Proxy Docker image onto your Linux instance.

1.Log in to the Linux instance in your cloud environment where you would like to install the Proxy.
2.Use SCP to copy the TGZ file to your Linux instance to the /home/<user>/cloud_vendors/aws directory.
3.Install the Docker image.

sudo docker load -i .tar.gz

4.Start the Docker container.

sudo docker run -d -e httpPort=8090 --restart=always --net=host -e proxyName= -e user= -e passwd= -it -v /home//cloud_vendors/aws:/app/proxy/vendors/aws -v /app/proxy/log -v /app/proxy/config f5/acproxy:x.x.x-build.xx

 5.Verify that the Docker container is running.

sudo docker ps

You should now be able to log in to the Proxy using the public IP address, plus port 8090, for your Linux instance, using the username and password that you set when you started the Docker container.

docker run のオプションで指定している「httpPort=8090」は「adminPort=8090」のことかな

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?