User Tools

Site Tools


computing:pix3lfed

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
computing:pix3lfed [2026/03/01 21:51] oemb1905computing:pix3lfed [2026/03/02 03:25] (current) oemb1905
Line 260: Line 260:
   curl -s https://gnulinux.pics/.well-known/nodeinfo   curl -s https://gnulinux.pics/.well-known/nodeinfo
   curl -s https://gnulinux.pics/api/nodeinfo/2.0   curl -s https://gnulinux.pics/api/nodeinfo/2.0
 +  curl -s "https://gnulinux.pics/.well-known/webfinger?resource=acct:admin@gnulinux.pics"
   sudo -u www-data php artisan route:list | grep -i nodeinfo   sudo -u www-data php artisan route:list | grep -i nodeinfo
 +  
  
 For updating, something like the following is minimally required: For updating, something like the following is minimally required:
Line 313: Line 315:
   * [[https://github.com/pixelfed/pixelfed/issues/5496|#5496]]   * [[https://github.com/pixelfed/pixelfed/issues/5496|#5496]]
  
- --- //[[alerts@haacksnetworking.org|oemb1905]] 2026/03/01 21:49//+I'm having an issue where the sql of the instance wrongly uses 19 for the re-issuance of the new client registration. Since this conflicts with 19 being used by the default personal client, it fails. After repeatedly messing with auto-increment according to github iALTER TABLE oauth_clients DROP PRIMARY KEY;ssues and seeing it fail once the keys and passport were re-initialized, I decided to change the entry to a varchar assignment instead, removing the conflict: 
 + 
 +  ALTER TABLE oauth_clients MODIFY id INT NOT NULL; 
 +  ALTER TABLE oauth_clients DROP PRIMARY KEY; 
 +  ALTER TABLE oauth_clients MODIFY id VARCHAR(255) NOT NULL; 
 +  ALTER TABLE oauth_clients ADD PRIMARY KEY (id); 
 +  DESCRIBE oauth_clients; #verify it changed properly 
 +  EXIT; 
 +  cd /var/www/pixelfed 
 +  sudo -u www-data php artisan passport:install --force 
 +  sudo -u www-data php artisan passport:keys --force 
 +  sudo /usr/local/bin/refresh.sh 
 +   
 +Once I did this, the ''passport:keys'' step no longer failed or barfed about row 19. I am worried about this lol, but at least the error is gone ;O. To assist actor status: 
 + 
 +  https://gnulinux.pics/i/actor 
 +  https://github.com/pixelfed/support/issues/183 
 +   
 +More coming ...  
 + 
 + --- //[[alerts@haacksnetworking.org|oemb1905]] 2026/03/02 02:12//
computing/pix3lfed.1772401889.txt.gz · Last modified: by oemb1905