phiyuku

Members
  • Posts

    15
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed

Recent Profile Visitors

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

phiyuku's Achievements

Noob

Noob (1/14)

1

Reputation

  1. What do you mean reset it and how do you do that? Cause I'm getting this now and can't get it back up. Fixed it, run mysqld_safe --log-error=er.log then go to databases\er.log to see what is wrong. I had to delete my ib_log files for some reason
  2. Same, I'm getting 500 errors all of a sudden. Looking at github there were no commits though. Think my mariaDB went down... so there's an issue with that now instead as I can't get it back up.
  3. this is how the location block should look: location /plexpy{ proxy_pass http://xxx.xxx.xxx.xxx:8181; proxy_set_header Host $host; proxy_set_header X-Forwarded-Host $server_name; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_read_timeout 90; proxy_set_header X-Forwarded-Proto $scheme; set $xforwardedssl "off"; if ($scheme = https) { set $xforwardedssl "on"; } proxy_set_header X-Forwarded-Ssl $xforwardedssl; proxy_redirect ~^(http(?:s)?://)([^:/]+)(?::\d+)?(/.*)?$ $1$2:$server_port$3; } Also make sure the server block has the server directive set correctly: server_name example.com; I believe yours right now is: server_name _;
  4. That did it. Thank you. There actually wasn't any daemon directive but, I specifically specified dameon off and that did it.
  5. It seems like it but, I'm not. If I stop Letsencrypt none of my sites work. If I start it up they start working again while still throwing that error. I thought it might be because of some weird behavior with subdomains listening on the same port but, that is not the case since I switched all ports around so each listen directive is different but, that just throws errors for each port I specified.
  6. Hi, I took a look at the logs of the letsencrypt docker and noticed a lot of these: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address in use) nginx: [emerg] bind() to 0.0.0.0:443 failed (98: Address in use) constantly. The thing is it works perfectly fine and any changes I make to the listen directives makes it change there as well. All the servers work and I have tested each one individually so I'm not sure what is going on and how to get rid of these. As far as I can tell there are no issues. I even changed each listen directive to a different port and it just throws one for each port I state.
  7. error: plugins/unassigned.devices/UnassignedDevices.php: wrong csrf_token Newest version. Uninstalled Plugin and installed again.
  8. Anyone else getting find: '/tmp/.preclear/' : No such file or directory error after upgrading the plugin?
  9. Could this cause it and does anyone know how to resolve this: 2016-07-02 16:49:22.658+0000: 18773: error : main:1279 : Can't load config file: Failed to open file '/etc/libvirt/libvirtd.conf': No such file or directory: /etc/libvirt/libvirtd.conf That's KVM component to me.... So if you're not talking about an issue with virtual machines, no I don't think it is the cause and liek someone has already told you... Honestly could not tell you how I fixed it since I did a lot of things. What I did first was I noticed in advanced VM was using /mnt/user/domains but that share did not exist so I created it. Shutting the Array did not stop it. After restarting and starting the Array, I noticed VM is still Stopped and for some reason I decided it was a good idea to delete the virtio driver and redid the VM Manager settings. I tried stopping again. The next boot I noticed VM manager actually started though which fixed one issue. But it still did not stop properly. so I rebooted again but this time I noticed when shutting down it said cache was not unmounted properly. Next boot I took off cache and tried to stop array and it worked. I put back cache and tried again but it failed. =(. I restarted yet once again and left the cache in and started it and then tried to stop the array and it worked. Very odd since this even failed with a totally new config when I did a format of the flash drive and started fresh. Weirdly even when this happened in 6.2 beta23 it did not happen once I reverted back to 6.19.
  10. If you want some intelligent help, you will have to post your diagnostics file (Go to 'Tools') and a list of the plugins and Dockers that you are running would also be helpful. Could this cause it and does anyone know how to resolve this: 2016-07-02 16:49:22.658+0000: 18773: error : main:1279 : Can't load config file: Failed to open file '/etc/libvirt/libvirtd.conf': No such file or directory: /etc/libvirt/libvirtd.conf
  11. Is anyone having trouble stopping the array. I also had to reset my config because of some bug where I could not add hard drives cause the option was grayed out and also cache did not have a selection for how many drives and was just blank. After renaming config this issue was resolved but I am still having trouble stopping the array.
  12. After a long persistent night, I finally got it. There seems to be a bug with logging out though which causes it to become server.com/owncloud/owncloud and you need to change base.php but, since I don't have access to that in the docker, I had to use a hackish solution and there probably is a better way to do it. Here is the code: config.php <?php $CONFIG = array ( 'overwrite.cli.url' => 'https://server.com/owncloud', 'memcache.local' => '\\OC\\Memcache\\APCu', 'instanceid' => 'INSTANCE', 'passwordsalt' => 'SALT', 'secret' => 'SECRET', 'trusted_domains' => array ( 0 => 'ip', 1 => 'server.com', ), 'trusted_proxies' => ['proxy_ip'], 'overwritehost' => 'server.com', 'overwriteprotocol' => 'https', 'overwritewebroot' => '/owncloud', 'datadirectory' => '/data', 'dbtype' => 'mysql', 'version' => '8.2.2.2', 'dbname' => 'owncloud', 'dbhost' => '192.168.1.185', 'dbtableprefix' => 'oc_', 'dbuser' => 'dbuser', 'dbpassword' => 'dbpassword', 'logtimezone' => 'EST', 'installed' => true, ); nginx location /owncloud { rewrite /owncloud/(.*) /$1 break; rewrite ^/owncloud$ /owncloud/ permanent; proxy_pass https://owncloud_ip:8000/; proxy_redirect / /owncloud/; proxy_set_header Host $host; proxy_buffering off; location /owncloud/owncloud { return 301 https://server.com/owncloud; } }
  13. No it's not that. I don't have to set the boot drive in the BIOS as long as I just reboot. I actually don't even have to save any changes.
  14. Hi, I am having an issue where owncloud keeps redirecting or port 8000 using a reverse proxy. I believe it is a config.php issue and not nginx. Can someone take a look cause I have no idea whats wrong. Config.php <?php $CONFIG = array ( 'memcache.local' => '\\OC\\Memcache\\APCu', 'instanceid' => 'INSTANCE', 'passwordsalt' => 'SALT', 'secret' => 'SECRET', 'forwarded_for_headers' => array('HTTP_X_FORWARDED', 'HTTP_FORWARDED_FOR'), 'trusted_domains' => array ( 0 => 'localip', 1 => 'server.com' ), 'proxy' => 'server.com', 'overwritehost' => 'server.com', 'overwriteprotocol' => 'https', 'overwritewebroot' => '/owncloud', 'datadirectory' => '/data', 'overwrite.cli.url' => 'https://server.com', 'dbtype' => 'mysql', 'version' => '8.2.2.2', 'dbname' => 'owncloud', 'dbhost' => 'dbip', 'dbtableprefix' => 'oc_', 'dbuser' => 'user', 'dbpassword' => 'password', 'logtimezone' => 'EST', 'installed' => true, ); nginx location /owncloud/ { proxy_pass http://192.168.1.185:8000; proxy_set_header Host $host; proxy_redirect http:// https://; } The config is just a proxy_pass which I'm not sure if it works but at the moment the issue is the redirecting to port 8000. If i put the local ip it goes to localip:8000 and if I put the URL it goes to URL:8000. I have no idea what is going on here and I've been at it for like 2 hours already. Edit: Not sure what I changed but it finally stopped redirecting but, now I am getting File Not found error. Also if I go to port 8000 the text fields show up but thats about it. <?php $CONFIG = array ( 'overwrite.cli.url' => 'https://server.com/owncloud', 'memcache.local' => '\\OC\\Memcache\\APCu', 'instanceid' => 'INSTANCE', 'passwordsalt' => 'SALT', 'secret' => 'SECRET', 'trusted_domains' => array ( 0 => 'ip', 1 => 'server.com', ), 'trusted_proxies' => ['ip'], 'overwritehost' => 'server.com', 'overwriteprotocol' => 'https', 'overwritewebroot' => '/owncloud', 'overwritecondaddr' => "ip", 'datadirectory' => '/data', 'dbtype' => 'mysql', 'version' => '8.2.2.2', 'dbname' => 'owncloud', 'dbhost' => 'ip', 'dbtableprefix' => 'oc_', 'dbuser' => 'user', 'dbpassword' => 'password', 'logtimezone' => 'EST', 'installed' => true, ); Edit 2: Nvm figured out why it stopped redirecting is because I used https:// in nginx for proxy_pass. Now not sure how to fix File not found. though
  15. Hi, I am not sure if any of you ever experienced this problem but, if you have, how did you manage to solve it? My computer when cold booting it, won't recognize the USB Drive until I restart the server from the BIOS. I think sometimes it might have worked since but, it might have just been a reboot for all I know since I had been shutting down and starting up the computer trying to get it to recognize the USB Drive on a cold boot. There is a setting in the BIOS which keeps the BIOS screen on longer and that didn't solve it either as it must look for boot drives way before that screen shows up. Fast boot is turned off and even when it was on the restart from BIOS would boot it fine. If I was to hit F11 to show my boot drives, that drive won't even show up. I don't know if there is anything I can do or even if its a motherboard issue or a flash drive issue. I am using a z77 ASRock Fatal1ty with a AData S102 which is a highly recommended drive atleast on Newegg. I really do wish there was a way to install unRAID on a SATA drive.