v2.0-rc1 not starting, runtime not building
Hi, I just did a pull from Git and trouble starting pgAdmin4 since. I am now at commit 512afd66182f463e6ce9515910205dcf0221e58c This is on ubuntu 16.04.03, using python3 and firefox 55.0.2 I did a fresh pip install -r requirements.txt With Debug = True, i got the following errors and execution aborted: (pgadmin4) wbloos@wb:~/python-files/pgadmin4/web$ python pgAdmin4.py ERROR: [Errno 2] No such file or directory: 'run' 2017-09-11 17:18:39,412: ERRORpgadmin:Unable to generate javascript 2017-09-11 17:18:39,412: ERRORpgadmin:To run the app ensure that yarn install command runs successfully Traceback (most recent call last): File "pgAdmin4.py", line 79, in raise Exception("No generated javascript, aborting") Exception: No generated javascript, aborting With Debug = False, the server starts (Starting pgAdmin 4. Please navigate to http://127.0.0.1:5050 in your browser.) But when visiting that page, there's no CSS is the background and a grey layer in the foreground, displayiong the text "Loading pgAdmin 4 v2.0-rc1.." without any progress. I checked where the Erno 2 comes from, it's in the function try_building_js() of javascript_bundler.py . The line that calls yarn. I tried entering the web directory and running yarn install, and that's where i find the same error again: ERROR: [Errno 2] No such file or directory: 'install' The same goes for "yarn run" and "yarn --run=bundle:dev" Is there a file missing? I'm not sure if this is also the cause of the web page not loading. The line of code is only executed if Debug=True Also, the desktop runtime is (still) not building (same in both checked out versions). (pgadmin4) wbloos@wb:~/python-files/pgadmin4/runtime$ qmake Project MESSAGE: Building for QT5+... Project MESSAGE: Using QWebEngine... Project MESSAGE: Building for Linux/Mac... Project MESSAGE: Using /home/wbloos/.virtualenvs/pgadmin4/bin/python-config Project MESSAGE: Python3 detected. Project ERROR: Unknown module(s) in QT: webenginewidgets Even though i do have libqt5webkit5-dev installed. Is there any other diagnosis that i can perform for more insight? Cheers, -- Willy-Bas Loos
Re: v2.0-rc1 not starting, runtime not building
I mentioned "both checked out versions", i forgot to describe that. I checked out REL-1_6 (and a new install of the requirements) as an attempt to be able to use pgAdmin4 again, but it doesn't help much. The browser mode now gives the error "Error loading script - /sqleditor/sqleditor" That's probably the javascript that fails to be generated. On Tue, Sep 12, 2017 at 12:24 PM, Willy-Bas Loos wrote: > Hi, > > I just did a pull from Git and trouble starting pgAdmin4 since. > I am now at commit 512afd66182f463e6ce9515910205dcf0221e58c > This is on ubuntu 16.04.03, using python3 and firefox 55.0.2 > I did a fresh pip install -r requirements.txt > > With Debug = True, i got the following errors and execution aborted: > > (pgadmin4) wbloos@wb:~/python-files/pgadmin4/web$ python pgAdmin4.py > ERROR: [Errno 2] No such file or directory: 'run' > 2017-09-11 17:18:39,412: ERRORpgadmin:Unable to generate javascript > 2017-09-11 17:18:39,412: ERRORpgadmin:To run the app ensure that > yarn install command runs successfully > Traceback (most recent call last): > File "pgAdmin4.py", line 79, in > raise Exception("No generated javascript, aborting") > Exception: No generated javascript, aborting > > With Debug = False, the server starts (Starting pgAdmin 4. Please navigate > to http://127.0.0.1:5050 in your browser.) > But when visiting that page, there's no CSS is the background and a grey > layer in the foreground, displayiong the text "Loading pgAdmin 4 > v2.0-rc1.." without any progress. > > I checked where the Erno 2 comes from, it's in the function > try_building_js() of javascript_bundler.py . The line that calls yarn. > > I tried entering the web directory and running yarn install, and that's > where i find the same error again: > ERROR: [Errno 2] No such file or directory: 'install' > The same goes for "yarn run" and "yarn --run=bundle:dev" > > Is there a file missing? > I'm not sure if this is also the cause of the web page not loading. The > line of code is only executed if Debug=True > > Also, the desktop runtime is (still) not building (same in both checked > out versions). > > (pgadmin4) wbloos@wb:~/python-files/pgadmin4/runtime$ qmake > Project MESSAGE: Building for QT5+... > Project MESSAGE: Using QWebEngine... > Project MESSAGE: Building for Linux/Mac... > Project MESSAGE: Using /home/wbloos/.virtualenvs/ > pgadmin4/bin/python-config > Project MESSAGE: Python3 detected. > Project ERROR: Unknown module(s) in QT: webenginewidgets > > Even though i do have libqt5webkit5-dev installed. > Is there any other diagnosis that i can perform for more insight? > > Cheers, > -- > Willy-Bas Loos > -- Willy-Bas Loos
Re: v2.0-rc1 not starting, runtime not building
Hi thanks for answering. On Tue, Sep 12, 2017 at 12:45 PM, Dave Page wrote: > Hi > > On Tue, Sep 12, 2017 at 11:24 AM, Willy-Bas Loos > wrote: > >> >> I tried entering the web directory and running yarn install, and that's >> where i find the same error again: >> ERROR: [Errno 2] No such file or directory: 'install' >> The same goes for "yarn run" and "yarn --run=bundle:dev" >> > > If you're getting those errors when running yarn directly, that implies > there's something wrong with your yarn installation. What is the full > output from "yarn install" when run from the web/ directory? > It seems that we were talking about different products that both go by the name "yarn". I deinstalled cmdtest and installed the yarn that is a dependency manager for javascript. I also checked out REL-2_0-RC1 again. Then: (pgadmin4) wbloos@wb:~/python-files/pgadmin4/web$ yarn install yarn install v1.0.1 warning package.json: No license field warning No license field [1/4] Resolving packages... [2/4] Fetching packages... info fsevents@1.1.2: The platform "linux" is incompatible with this module. info "fsevents@1.1.2" is an optional dependency and failed compatibility check. Excluding it from installation. error extract-text-webpack-plugin@2.1.2: The engine "node" is incompatible with this module. Expected version ">=4.3.0 < 5.0.0 || >= 5.10". error Found incompatible module info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command. (pgadmin4) wbloos@wb:~/python-files/pgadmin4/web$ python pgAdmin4.py Starting pgAdmin 4. Please navigate to http://127.0.0.1:5050 in your browser. The errors persist. > >> >> >> Also, the desktop runtime is (still) not building (same in both checked >> out versions). >> >> If you're using QT 5.0+, then it'll default to QtWebEngine, which I guess > you don't have installed. QtWebKit is generally preferred for performance > reasons; you can force the use of that with: > > qmake "DEFINES += PGADMIN4_USE_WEBKIT" > Ah, when i use that, it builds. With the warning that i should definitely use Qt 5.5.0 Which i do, afaik. dpkg -l tells me that i have version 5.5.1 of qt5-default:amd64, qt5-qmake:amd6, pyqt5-dev, python3-pyqt5 and many more derived package names. When i run the runtime, it misses flask. Which is in the requirements. pip freeze says: Flask==0.11.1 (pgadmin4) wbloos@wb:~/python-files/pgadmin4/runtime$ ./pgAdmin4 Python path: "/home/wbloos/.virtualenvs/pgadmin4/bin/" Python Home: "" Webapp path: "/home/wbloos/python-files/pgadmin4/web/pgAdmin4.py" Traceback (most recent call last): File "/home/wbloos/python-files/pgadmin4/web/pgAdmin4.py", line 34, in import config File "/home/wbloos/python-files/pgadmin4/web/config.py", line 30, in from pgadmin.utils import env, IS_PY2, IS_WIN, fs_short_path File "/home/wbloos/python-files/pgadmin4/web/pgadmin/__init__.py", line 17, in from flask import Flask, abort, request, current_app, session, url_for ImportError: No module named flask "Failed to launch the application server, server thread exiting." -- Willy-Bas Loos
Re: v2.0-rc1 not starting, runtime not building
Hi On Tue, Sep 12, 2017 at 1:50 PM, Surinder Kumar < surinder.ku...@enterprisedb.com> wrote: > > It seems the node version used is outdated. Please upgrade to latest > version of node and then run `yarn install` > nodejs:amd64 (4.2.6~dfsg-1ubuntu4.1) was installed by apt as a dependency of yarn today, which i got from this repository: deb https://dl.yarnpkg.com/debian/ stable main So some consideration might have to go to making this available once to 16.04 users that don't want to compile stuff. Anyhow, i removed yarn including nodejs and compiled the latest stable nodejs, then reinstalled yarn After that yarn install gives some warnings and works. I then need to set Debug to True to get the web interface to start. And then it starts :D :D Looks great too. Only sadly all my settings seem to have been lost. Thanks for your help on that. I hope other ubuntu users profit from it somewhat. Any ideas considering the runtime trouble with flask? (below) > > >> >>> >>>> >>>> >>>> Also, the desktop runtime is (still) not building (same in both checked >>>> out versions). >>>> >>>> If you're using QT 5.0+, then it'll default to QtWebEngine, which I >>> guess you don't have installed. QtWebKit is generally preferred for >>> performance reasons; you can force the use of that with: >>> >>> qmake "DEFINES += PGADMIN4_USE_WEBKIT" >>> >> >> Ah, when i use that, it builds. With the warning that i should definitely >> use Qt 5.5.0 >> Which i do, afaik. dpkg -l tells me that i have version 5.5.1 of >> qt5-default:amd64, qt5-qmake:amd6, pyqt5-dev, python3-pyqt5 and many more >> derived package names. >> >> When i run the runtime, it misses flask. Which is in the requirements. >> pip freeze says: Flask==0.11.1 >> >> (pgadmin4) wbloos@wb:~/python-files/pgadmin4/runtime$ ./pgAdmin4 >> Python path: "/home/wbloos/.virtualenvs/pgadmin4/bin/" >> Python Home: "" >> Webapp path: "/home/wbloos/python-files/pgadmin4/web/pgAdmin4.py" >> Traceback (most recent call last): >> File "/home/wbloos/python-files/pgadmin4/web/pgAdmin4.py", line 34, in >> >> import config >> File "/home/wbloos/python-files/pgadmin4/web/config.py", line 30, in >> >> from pgadmin.utils import env, IS_PY2, IS_WIN, fs_short_path >> File "/home/wbloos/python-files/pgadmin4/web/pgadmin/__init__.py", >> line 17, in >> from flask import Flask, abort, request, current_app, session, url_for >> ImportError: No module named flask >> "Failed to launch the application server, server thread exiting." >> >> >> -- >> Willy-Bas Loos >> > > -- Willy-Bas Loos
Re: v2.0-rc1 not starting, runtime not building
On Tue, Sep 12, 2017 at 4:33 PM, Willy-Bas Loos wrote: > > > Any ideas considering the runtime trouble with flask? > > > oops, turns out i overlooked that i need to run make too, not just qmake. So i was actually running an old executable. make gives me ld errors. Any idea? g++ -m64 -lpython3.5m -lpthread -ldl -lutil -lm -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-O1 -Wl,-rpath-link,/usr/lib/x86_64-linux-gnu -o pgAdmin4 pgAdmin4.o BrowserWindow.o Server.o TabWindow.o WebViewWindow.o ConfigWindow.o qrc_pgAdmin4.o moc_BrowserWindow.o moc_Server.o moc_TabWindow.o moc_WebViewWindow.o moc_ConfigWindow.o -L/usr/X11R6/lib64 -lpython3.5m -ldl -lutil -lm -lQt5WebKitWidgets -lQt5Widgets -lQt5WebKit -lQt5Gui -lQt5Network -lQt5Core -lGL -lpthread ConfigWindow.o: In function `ConfigWindow::~ConfigWindow()': ConfigWindow.cpp:(.text+0x55): undefined reference to `QString::free(QString::Data*)' ConfigWindow.cpp:(.text+0x65): undefined reference to `QString::free(QString::Data*)' ConfigWindow.o: In function `ConfigWindow::ConfigWindow(QWidget*)': ConfigWindow.cpp:(.text+0x128): undefined reference to `QString::shared_null' ConfigWindow.cpp:(.text+0x12f): undefined reference to `QString::shared_null' ConfigWindow.cpp:(.text+0x13a): undefined reference to `QString::shared_null' ConfigWindow.cpp:(.text+0x141): undefined reference to `QString::shared_null' ConfigWindow.cpp:(.text+0x18e): undefined reference to `QString::fromUtf8(char const*, int)' ConfigWindow.cpp:(.text+0x227): undefined reference to `QString::fromUtf8(char const*, int)' ConfigWindow.cpp:(.text+0x27f): undefined reference to `QString::fromUtf8(char const*, int)' ConfigWindow.cpp:(.text+0x2ff): undefined reference to `QString::fromUtf8(char const*, int)' ConfigWindow.cpp:(.text+0x36a): undefined reference to `QString::fromUtf8(char const*, int)' ConfigWindow.o:ConfigWindow.cpp:(.text+0x3e2): more undefined references to `QString::fromUtf8(char const*, int)' follow ConfigWindow.o: In function `ConfigWindow::ConfigWindow(QWidget*)': ConfigWindow.cpp:(.text+0x539): undefined reference to `QCoreApplication::translate(char const*, char const*, char const*, QCoreApplication::Encoding)' ConfigWindow.cpp:(.text+0x57e): undefined reference to `QCoreApplication::translate(char const*, char const*, char const*, QCoreApplication::Encoding)' ConfigWindow.cpp:(.text+0x5c4): undefined reference to `QCoreApplication::translate(char const*, char const*, char const*, QCoreApplication::Encoding)' ConfigWindow.cpp:(.text+0x641): undefined reference to `QString::free(QString::Data*)' ConfigWindow.cpp:(.text+0x659): undefined reference to `QString::free(QString::Data*)' ConfigWindow.cpp:(.text+0x669): undefined reference to `QString::free(QString::Data*)' ConfigWindow.cpp:(.text+0x681): undefined reference to `QString::free(QString::Data*)' ConfigWindow.cpp:(.text+0x696): undefined reference to `QString::free(QString::Data*)' ConfigWindow.o:ConfigWindow.cpp:(.text+0x6a6): more undefined references to `QString::free(QString::Data*)' follow moc_ConfigWindow.o:(.rodata._ZTV12ConfigWindow[_ZTV12ConfigWindow]+0x60): undefined reference to `QObject::connectNotify(char const*)' moc_ConfigWindow.o:(.rodata._ZTV12ConfigWindow[_ZTV12ConfigWindow]+0x68): undefined reference to `QObject::disconnectNotify(char const*)' moc_ConfigWindow.o:(.rodata._ZTV12ConfigWindow[_ZTV12ConfigWindow]+0x160): undefined reference to `QWidget::x11Event(_XEvent*)' moc_ConfigWindow.o:(.rodata._ZTV12ConfigWindow[_ZTV12ConfigWindow]+0x190): undefined reference to `QWidget::styleChange(QStyle&)' moc_ConfigWindow.o:(.rodata._ZTV12ConfigWindow[_ZTV12ConfigWindow]+0x198): undefined reference to `QWidget::enabledChange(bool)' moc_ConfigWindow.o:(.rodata._ZTV12ConfigWindow[_ZTV12ConfigWindow]+0x1a0): undefined reference to `QWidget::paletteChange(QPalette const&)' moc_ConfigWindow.o:(.rodata._ZTV12ConfigWindow[_ZTV12ConfigWindow]+0x1a8): undefined reference to `QWidget::fontChange(QFont const&)' moc_ConfigWindow.o:(.rodata._ZTV12ConfigWindow[_ZTV12ConfigWindow]+0x1b0): undefined reference to `QWidget::windowActivationChange(bool)' moc_ConfigWindow.o:(.rodata._ZTV12ConfigWindow[_ZTV12ConfigWindow]+0x1b8): undefined reference to `QWidget::languageChange()' collect2: error: ld returned 1 exit status Makefile:175: recipe for target 'pgAdmin4' failed make: *** [pgAdmin4] Error 1 -- Willy-Bas Loos
Multiple head revisions after git pull (2.0rc1 --> 2.0)
Hi, After my stash & pull to upgrade from 2.0rc1 to 2.0, these commands both end in the error below. - ../web$ FLASK_APP=pgAdmin4.py flask db revision - ../web$ python pgAdmin4.py File "/home/wbloos/.virtualenvs/pgadmin4/lib/python3.5/site-packages/alembic/script/revision.py", line 270, in get_current_head "%s@head" % branch_label if branch_label else "head") alembic.util.exc.CommandError: Multiple head revisions are present for given argument 'head'; please specify a specific target revision, '@head' to narrow to a specific head, or 'heads' for all heads I use Version: webpack 3.6.0 Any tips? Cheers, -- Willy-Bas Loos
Re: Multiple head revisions after git pull (2.0rc1 --> 2.0)
Just to clarify, this is not a git question Op 1 nov. 2017 12:19 p.m. schreef "Willy-Bas Loos" : > Hi, > > After my stash & pull to upgrade from 2.0rc1 to 2.0, these commands both > end in the error below. > >- ../web$ FLASK_APP=pgAdmin4.py flask db revision >- ../web$ python pgAdmin4.py > > > File "/home/wbloos/.virtualenvs/pgadmin4/lib/python3.5/site- > packages/alembic/script/revision.py", line 270, in get_current_head > "%s@head" % branch_label if branch_label else "head") > alembic.util.exc.CommandError: Multiple head revisions are present for > given argument 'head'; please specify a specific target revision, > '@head' to narrow to a specific head, or 'heads' for all heads > > I use Version: webpack 3.6.0 > > Any tips? > > Cheers, > -- > Willy-Bas Loos >
Re: Multiple head revisions after git pull (2.0rc1 --> 2.0)
thanks for the answer. flask won't give me a history, i get the same error (multiple head revisions). I've looked into the flask manual, and tried some things that the message suggests, like FLASK_APP=pgAdmin4.py flask db revision --head master@head But that doesn't help, still the same error. I don't mind doing a hard reset or anything. Is there a trick to get this back on track? Cheers, Willy-Bas On Thu, Nov 2, 2017 at 12:07 PM, Murtuza Zabuawala < murtuza.zabuaw...@enterprisedb.com> wrote: > I suspect you have some local revisions, Could you run below command and > see if you have any local revisions? > > ../web$ FLASK_APP=pgAdmin4.py flask db history > > You can compare it with what we(pgadmin4) have in revision history, > ... > ... > d85a62333272 -> ef590e979b0d (head), empty message > f195f9a4923d -> d85a62333272, empty message > 3c1e4b6eda55 -> f195f9a4923d, Encrypt the existing user password. > 09d53fca90c7 -> 3c1e4b6eda55, empty message > fdc58d9bd449 -> 09d53fca90c7, Update DB to version 14 > -> fdc58d9bd449, Initial database creation > > > -- > Regards, > Murtuza Zabuawala > EnterpriseDB: http://www.enterprisedb.com > The Enterprise PostgreSQL Company > > > On Thu, Nov 2, 2017 at 3:37 PM, Willy-Bas Loos wrote: > >> Just to clarify, this is not a git question >> >> Op 1 nov. 2017 12:19 p.m. schreef "Willy-Bas Loos" : >> >>> Hi, >>> >>> After my stash & pull to upgrade from 2.0rc1 to 2.0, these commands both >>> end in the error below. >>> >>>- ../web$ FLASK_APP=pgAdmin4.py flask db revision >>>- ../web$ python pgAdmin4.py >>> >>> >>> File "/home/wbloos/.virtualenvs/pgadmin4/lib/python3.5/site-packa >>> ges/alembic/script/revision.py", line 270, in get_current_head >>> "%s@head" % branch_label if branch_label else "head") >>> alembic.util.exc.CommandError: Multiple head revisions are present for >>> given argument 'head'; please specify a specific target revision, >>> '@head' to narrow to a specific head, or 'heads' for all heads >>> >>> I use Version: webpack 3.6.0 >>> >>> Any tips? >>> >>> Cheers, >>> -- >>> Willy-Bas Loos >>> >> > -- Willy-Bas Loos
Re: Multiple head revisions after git pull (2.0rc1 --> 2.0)
On Fri, Nov 3, 2017 at 1:14 PM, Murtuza Zabuawala < murtuza.zabuaw...@enterprisedb.com> wrote: > Can you try following command see if that helps, > ../web$ FLASK_APP=pgAdmin4.py flask db merge heads > > Given command will try to merge two conflicting heads together > automatically. > For more information refer alembic documentation: http://alembic. > zzzcomputing.com/en/latest/branches.html > > -- Murtuza > > > That sounds and looks good and logical but it's not working Whatever i do, i keep getting the same error. I've attached a log, maybe it will clarify . -- Willy-Bas Loos (pgadmin4) wbloos@wb:~/python-files/pgadmin4/web$ FLASK_APP=pgAdmin4.py flask db merge heads yarn run v1.3.2 warning package.json: No license field $ yarn run linter && yarn run webpacker warning package.json: No license field $ yarn run eslint pgadmin/static/jsx/**/*.jsx pgadmin/static/js/selection/*.js regression/javascript/**/*.jsx regression/javascript/**/*.js *.js warning package.json: No license field $ /home/wbloos/python-files/pgadmin4/web/node_modules/.bin/eslint pgadmin/static/jsx/history/query_history.jsx pgadmin/static/jsx/history/query_history_detail.jsx pgadmin/static/jsx/history/query_history_entries.jsx pgadmin/static/jsx/history/query_history_entry.jsx pgadmin/static/jsx/history/query_history_entry_date_group.jsx pgadmin/static/js/selection/active_cell_capture.js pgadmin/static/js/selection/clipboard.js pgadmin/static/js/selection/column_selector.js pgadmin/static/js/selection/copy_data.js pgadmin/static/js/selection/grid_selector.js pgadmin/static/js/selection/range_boundary_navigator.js pgadmin/static/js/selection/range_selection_helper.js pgadmin/static/js/selection/row_selector.js pgadmin/static/js/selection/set_staged_rows.js pgadmin/static/js/selection/xcell_selection_model.js regression/javascript/history/query_history_spec.jsx regression/javascript/alerts/alertify_wrapper_spec.js regression/javascript/browser/generate_url_spec.js regression/javascript/browser/menu_spec.js regression/javascript/history/history_collection_spec.js regression/javascript/selection/active_cell_capture_spec.js regression/javascript/selection/column_selector_spec.js regression/javascript/selection/copy_data_spec.js regression/javascript/selection/grid_selector_spec.js regression/javascript/selection/range_boundary_navigator_spec.js regression/javascript/selection/range_selection_helper_spec.js regression/javascript/selection/row_selector_spec.js regression/javascript/selection/set_staged_rows_spec.js regression/javascript/selection/xcell_selection_model_spec.js regression/javascript/slickgrid/cell_selector_spec.js regression/javascript/sqleditor/keyboard_shortcuts_spec.js regression/javascript/sqleditor/query_tool_actions_spec.js karma.conf.js webpack.config.js webpack.shim.js webpack.test.config.js warning package.json: No license field $ yarn run webpack -- --config webpack.config.js --progress warning package.json: No license field warning From Yarn 1.0 onwards, scripts don't require "--" for options to be forwarded. In a future version, any explicit "--" will be forwarded as-is to the scripts. $ /home/wbloos/python-files/pgadmin4/web/node_modules/.bin/webpack --config webpack.config.js --progress 10% building modules 8/9 modules 1 active .../web/pgadmin/static/scss/pgadmin.scss[hard-source:util] A child compiler (extract-text-webpack-plugin) has a memory cache but its cache name is unknown. HardSourceWebpackPlugin will be disabled for this child compiler. (node:29952) DeprecationWarning: Chunk.modules is deprecated. Use Chunk.getNumberOfModules/mapModules/forEachModule/containsModule instead. Hash: cc167ab3da8851b0dbd9 Version: webpack 3.6.0 Time: 5259ms Asset Size ChunksChunk Names img/drag-drop-rtl.png 402 bytes [emitted] fonts/OpenSans-Regular.ttf 217 kB [emitted] img/tree-branch.png 104 bytes [emitted] fonts/glyphicons-halflings-regular.eot20.1 kB [emitted] fonts/context-menu-icons.eot3.53 kB [emitted] img/tree-small.png1.47 kB [emitted] img/tree-big.png2.42 kB [emitted] img/tree-small-rtl.png1.51 kB [emitted] img/tree-big-rtl.png2.44 kB [emitted] img/tree-arrow-small.png 1.6 kB [emitted] img/tree-arrow-big.png2.48 kB [emitted] img/tree-arrow-small-rtl.png1.67 kB [emitted] img/tree-ar
Re: Multiple head revisions after git pull (2.0rc1 --> 2.0)
Op 3 nov. 2017 21:00 schreef "Rob Lewis" : All of a sudden this list is generating lots of traffic and I would like to unsubscribe, but I can't find out how to. Please help. A bit of topic, but I think you should go to https://lists.postgresql.org/manage/
Re: Installing pgAdmin 4 in Runtime Mode (stand alone) in Linux
wow this works. thanks Floris and Victor -- Willy-Bas Loos