-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Troubleshooting
Is your question not on here? Please contact us on our user mailing list.
If you are running a production setup, then you need to restart both the webserver serving Canvas, and the automated jobs daemon. On Debian/Ubuntu, you can do this like:
sysadmin@appserver:~$ sudo /etc/init.d/apache2 restart
sysadmin@appserver:~$ sudo /etc/init.d/canvas_init restart
The quick-start setup may only require stopping and starting the script/server
process, if it requires any restart at all.
There are a number of possible reasons why your outgoing mail configuration may not be working correctly. One of the easiest ways to figure out where your Canvas mail is going is to check the outgoing mail table's error column. You can see the last error that Canvas had (if any) after some scheduled job (such as email) by running:
sysadmin@appserver:~$ psql canvas_production -c "select last_error from delayed_jobs order by updated_at desc limit 1;"
Do you have the automated jobs daemon running? Try
sysadmin@appserver:~$ sudo /etc/init.d/canvas_init status
If you want more information about the specific kinds of jobs that may or may not be running in your system, you can visit
https://<your-canvas-hostname>/jobs
Try checking the error_reports table in the database for any messages possibly pertaining to the problem:
sysadmin@appserver:~$ psql canvas_production -c "select message, backtrace from error_reports order by id desc limit 1;"
Following the Quick Start guide when you run
~/canvas$ bundle exec rails server
It binds to localhost. If you need it to bind to localhost and be accessible on your network try
bundle exec rails s -b 0.0.0.0 -p 3000
If you followed the Production Start instructions, you can get a Rails console open by running (with appropriate adjustments):
sysadmin@appserver:~$ cd /var/rails/canvas
sysadmin@appserver:/var/rails/canvas$ sudo su canvasuser -c "env GEM_HOME=/home/sysadmin/gems \
RAILS_ENV=production script/console"
The Quick Start instructions use the default RAILS_ENV value (development), and don't suggest creating a specific canvas user, so you can get away with just setting your GEM_HOME:
~$ cd ~/canvas
~/canvas $ GEM_HOME=~/gems script/console
Accessing a Rails console gives you unprecedented control over Canvas' inner workings. Be sure you know what you're doing.
If you get this error while following the quick start guides, you may need to use the version of rake installed into your gems folder. Replace all instances of rake
on the console with $GEM_HOME/bin/rake
Reset the test database using RAILS_ENV=test rake db:test:reset
then the specs should run.
Errors of this sort:
ActiveRecord::InvalidForeignKey:
PG::ForeignKeyViolation: ERROR: insert or update on table "enrollment_terms" violates foreign key constraint "fk_rails_e182f18b93"
DETAIL: Key (root_account_id)=(1) is not present in table "accounts"
Delete the test
cache_store
keys from config/cache_store.yml
. It is no longer needed.
Normally, when installing using the 'docker_dev_setup.sh' script, the script should ask you to register an admin account once the installation is finished. However, this is not always the case, which can cause you to not be able to log in. To solve this issue, follow the steps below:
We have to log in to the docker container using the command =>
docker exec -u 0 -it <CONTAINER ID> /bin/bash
Once inside the docker container, run the following command to set up an admin account
rails db:initial_setup
Are you looking for one of our commercial subscriptions, professional services, support, or our hosted solution? Check out canvaslms.com.