phreeq

Members
  • Posts

    35
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

phreeq's Achievements

Newbie

Newbie (1/14)

10

Reputation

  1. Thanks for this, not sure if I just missed it when I tried it, or if it didn't work for me then. I'll give it another go in a little bit to see if I screwed up, which is ALWAYS possible. EDIT: Okay, the answer is I screwed up. I just tried it again and it did work. The only thing I can think of is, I was trying to use it behind SWAG and maybe I couldn't register the first account when processing through SWAG, but this time I did it from the local IP of my server. I set up the first account, then tested accessing through SWAG, and I was able to log in and all looks good. Now, I just need to dig in and figure out how to use the system. Thanks @Marzel!
  2. No, and I gave up on not getting anywhere with it so I uninstalled the docker
  3. @Shane Israel Okay, I switched over to the develop image; so far, so good. I'll check over the next couple of days to make sure that it stays running. Thanks!
  4. I've run into a problem with this docker. It crashed on me at some point and now when I try to start it, it immediately stops and I get this in the logs: rm: cannot remove '/jobs.sqlite': Permission denied 2022-08-21 17:17:57,558 INFO __init__.update_config:26 | Validating configuration file... INFO [alembic.runtime.migration] Context impl SQLiteImpl. INFO [alembic.runtime.migration] Will assume non-transactional DDL. 2022-08-21 17:17:58,398 INFO __init__.update_config:26 | Validating configuration file... 2022-08-21 17:17:58,481 INFO schedule.init_schedule:17 | Initializing scheduled video scan. minutes=5 /usr/local/lib/python3.9/site-packages/apscheduler/util.py:94: PytzUsageWarning: The zone attribute is specific to pytz's interface; please migrate to a new time zone provider. For more details on how to do so, see https://pytz-deprecation-shim.readthedocs.io/en/latest/migration.html if obj.zone == 'local': /usr/local/lib/python3.9/site-packages/apscheduler/triggers/interval.py:66: PytzUsageWarning: The normalize method is no longer necessary, as this time zone supports the fold attribute (PEP 495). For more details on migrating to a PEP 495-compliant implementation, see https://pytz-deprecation-shim.readthedocs.io/en/latest/migration.html return self.timezone.normalize(next_fire_time) Traceback (most recent call last): File "/usr/local/lib/python3.9/site-packages/sqlalchemy/engine/base.py", line 1819, in _execute_context self.dialect.do_execute( File "/usr/local/lib/python3.9/site-packages/sqlalchemy/engine/default.py", line 732, in do_execute cursor.execute(statement, parameters) sqlite3.IntegrityError: UNIQUE constraint failed: apscheduler_jobs.id The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/usr/local/lib/python3.9/site-packages/apscheduler/jobstores/sqlalchemy.py", line 98, in add_job self.engine.execute(insert) File "<string>", line 2, in execute File "/usr/local/lib/python3.9/site-packages/sqlalchemy/util/deprecations.py", line 401, in warned return fn(*args, **kwargs) File "/usr/local/lib/python3.9/site-packages/sqlalchemy/engine/base.py", line 3176, in execute return connection.execute(statement, *multiparams, **params) File "/usr/local/lib/python3.9/site-packages/sqlalchemy/engine/base.py", line 1306, in execute return meth(self, multiparams, params, _EMPTY_EXECUTION_OPTS) File "/usr/local/lib/python3.9/site-packages/sqlalchemy/sql/elements.py", line 325, in _execute_on_connection return connection._execute_clauseelement( File "/usr/local/lib/python3.9/site-packages/sqlalchemy/engine/base.py", line 1498, in _execute_clauseelement ret = self._execute_context( File "/usr/local/lib/python3.9/site-packages/sqlalchemy/engine/base.py", line 1862, in _execute_context self._handle_dbapi_exception( File "/usr/local/lib/python3.9/site-packages/sqlalchemy/engine/base.py", line 2043, in _handle_dbapi_exception util.raise_( File "/usr/local/lib/python3.9/site-packages/sqlalchemy/util/compat.py", line 207, in raise_ raise exception File "/usr/local/lib/python3.9/site-packages/sqlalchemy/engine/base.py", line 1819, in _execute_context self.dialect.do_execute( File "/usr/local/lib/python3.9/site-packages/sqlalchemy/engine/default.py", line 732, in do_execute cursor.execute(statement, parameters) sqlalchemy.exc.IntegrityError: (sqlite3.IntegrityError) UNIQUE constraint failed: apscheduler_jobs.id [SQL: INSERT INTO apscheduler_jobs (id, next_run_time, job_state) VALUES (?, ?, ?)] [parameters: ('fireshare_scan', 1661120578.617649, <memory at 0x150cb439cd00>)] (Background on this error at: https://sqlalche.me/e/14/gkpj) During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/usr/local/bin/gunicorn", line 8, in <module> sys.exit(run()) File "/usr/local/lib/python3.9/site-packages/gunicorn/app/wsgiapp.py", line 67, in run WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run() File "/usr/local/lib/python3.9/site-packages/gunicorn/app/base.py", line 231, in run super().run() File "/usr/local/lib/python3.9/site-packages/gunicorn/app/base.py", line 72, in run Arbiter(self).run() File "/usr/local/lib/python3.9/site-packages/gunicorn/arbiter.py", line 58, in __init__ self.setup(app) File "/usr/local/lib/python3.9/site-packages/gunicorn/arbiter.py", line 118, in setup self.app.wsgi() File "/usr/local/lib/python3.9/site-packages/gunicorn/app/base.py", line 67, in wsgi self.callable = self.load() File "/usr/local/lib/python3.9/site-packages/gunicorn/app/wsgiapp.py", line 58, in load return self.load_wsgiapp() File "/usr/local/lib/python3.9/site-packages/gunicorn/app/wsgiapp.py", line 48, in load_wsgiapp return util.import_app(self.app_uri) File "/usr/local/lib/python3.9/site-packages/gunicorn/util.py", line 412, in import_app app = app(*args, **kwargs) File "/usr/local/lib/python3.9/site-packages/fireshare/__init__.py", line 123, in create_app init_schedule(app.config['SCHEDULED_JOBS_DATABASE_URI'], File "/usr/local/lib/python3.9/site-packages/fireshare/schedule.py", line 20, in init_schedule scheduler.start() File "/usr/local/lib/python3.9/site-packages/apscheduler/schedulers/background.py", line 33, in start BaseScheduler.start(self, *args, **kwargs) File "/usr/local/lib/python3.9/site-packages/apscheduler/schedulers/base.py", line 162, in start self._real_add_job(job, jobstore_alias, replace_existing) File "/usr/local/lib/python3.9/site-packages/apscheduler/schedulers/base.py", line 867, in _real_add_job store.add_job(job) File "/usr/local/lib/python3.9/site-packages/apscheduler/jobstores/sqlalchemy.py", line 100, in add_job raise ConflictingIdError(job.id) apscheduler.jobstores.base.ConflictingIdError: 'Job identifier (fireshare_scan) conflicts with an existing job' ------------------------------------- User uid: 99 User gid: 100 -------------------------------------
  5. I just installed this and I can't seem to register an account. Is there something I missed?
  6. Have anyone gotten this working behind SWAG? I've tried building a conf file for it but I haven't gotten one to work yet.
  7. You're welcome, glad it worked for you Sent from my HD1905 using Tapatalk
  8. I may be wrong, but I think your domain should either be 192\.168\.39\.159 or maybe just 192.168.39.159
  9. Now I remember. I saw this info once before and halfway did it but didn't finish the process because, at the time, I wasn't having any issues. Now that I've finished the last couple of steps, my server is back up and running and my RPG group is cheering. Thanks!
  10. I'm having the same problem with my install. Please update if you find anything and I'll do the same.
  11. This worked for me, and I'm glad it did. I had been stuck at 3.7.1 for a while now.
  12. Do we need to wait for the docker to be updated, or is there a way to update rocket chat to the latest version? I just installed the other day (version 3.7.0) and today I've got a message telling me that 3.7.1 is available.
  13. Problem is kind of resolved. It seems that the iStarUSA drive docks were not properly supplying power to the drives. Once I pulled out a drive and directly connected it to the power supply and restarted my server, the drive showed up like expected.
  14. I just installed my 'new' LSI 9207-8e (purchased from Art of Server on ebay) and I'm not seeing any drives showing up in unRAID. The logs show where the driver is loading during boot up, the UI shows the card under system devices, but neither of the two drives I've got attached to the card are showing up in either the UI or when I run lsscsi. This is in a Dell R-710 that has been running unRAID for a couple of years now on the Perc6i that it came with. The LSI card is flashed to IT and was bought and installed to try and add more drives to the array. The card is in IT mode and I'm using it to connect to a homebrew DAS
  15. @njdowdy, I'm lazy. I started with a pre-generated template for dokuwiki because it was a very simple template and then made a few changes until it worked. Guess my laziness caused me to miss removing that comment from the config. I can't answer your question about the icons because I'm still real new to using Foundry and still trying to figure a lot of it out.