how to open multiple model/database in mysql workbench

前端 未结 5 1882
时光说笑
时光说笑 2021-02-18 13:16

I have two model

1) Server Model : conneted to remote database which is stored on server

2) Local Host :  connected to my pc database is stored in on pc.
         


        
5条回答
  •  遇见更好的自我
    2021-02-18 13:46

    On linux I can open two msql workbench instances. The second instance can be opened by running the executable file directly.

    Find where the executable file is located by running

    ps -ef | grep workbench
    20084  1989  0 May09 ?        00:00:00 /bin/bash /usr/bin/mysql-workbench
    20123 20084  0 May09 ?        00:00:00 /bin/sh /usr/bin/catchsegv /usr/bin/mysql-workbench-bin
    20125 20123  0 May09 ?        00:13:25 /usr/bin/mysql-workbench-bin
    26810  1499  0 11:00 pts/18   00:00:00 grep --color=auto workbench
    

    Then run the executable file as a root user

    sudo /usr/bin/mysql-workbench 
    

提交回复
热议问题