ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Install Nextcloud 13.0.0 on Fedora 27

    Scheduled Pinned Locked Moved IT Discussion
    how tonextcloudnextcloud 13real instructionsguidefedora 27
    188 Posts 21 Posters 31.3k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • scottalanmillerS
      scottalanmiller
      last edited by

      What should which piece look like?

      DonahueD 1 Reply Last reply Reply Quote 0
      • DonahueD
        Donahue @scottalanmiller
        last edited by

        @scottalanmiller what should the config.php contain

        1 Reply Last reply Reply Quote 0
        • DonahueD
          Donahue
          last edited by

          mine looks like it has too much stuff in it.

          1 Reply Last reply Reply Quote 0
          • DonahueD
            Donahue
            last edited by

            'memcache.locking' => '\OC\Memcache\Redis','memcache.locking' => '\OC\Memcache\Redis','memcache.locking' =>
            '\OC\Memcache\Redis',<?php $CONFIG = array ( 'memcache.local' => '\OC\Memcache\Redis', 'memcache.local' =>
            '\OC\Memcache\Redis', 'redis' => array(
            'memcache.local' => '\OC\Memcache\Redis',
                'redis' => array(
                'host' => 'localhost',
                'port' => 6379,
            ),    'redis' => array(
                'host' => 'localhost',
                'port' => 6379,
            ),    'host' => 'localhost',
                'port' =>6379,
            ),  'instanceid' => 'oc6fqyizalj6',
              'passwordsalt' => 'aHdWc/uw5GBAEkcCjSXrGsUEw52U83',
              'secret' => 'n8kBWYVghXuKUQZHk+ZPgDTEWUqsYAaSUWtAAjFD8EOumpdX',
              'trusted_domains' =>
              array (
                0 => 'nextcloud.gem.local',
              ),
              'datadirectory' => '/var/www/html/nextcloud/data',
              'dbtype' => 'mysql',
              'version' => '15.0.0.10',
              'overwrite.cli.url' => 'https://nextcloud.gem.local/nextcloud',
              'dbname' => 'nextcloud',
              'dbhost' => 'localhost',
              'dbport' => '',
              'dbtableprefix' => 'oc_',
              'mysql.utf8mb4' => true,
              'dbuser' => 'ncadmin',
              'dbpassword' => '***',
              'installed' => true,
            );
            
            
            scottalanmillerS 1 Reply Last reply Reply Quote 0
            • scottalanmillerS
              scottalanmiller
              last edited by

              Yup, way too much stuff in it 🙂

              1 Reply Last reply Reply Quote 0
              • scottalanmillerS
                scottalanmiller @Donahue
                last edited by

                @Donahue Yours is ALL messed up. Here is an example of yours assembled into something that should work...

                <?php 
                $CONFIG = array (
                  'passwordsalt' => 'aHdWc/uw5GBAEkcCjSXrGsUEw52U83',
                  'secret' => 'n8kBWYVghXuKUQZHk+ZPgDTEWUqsYAaSUWtAAjFD8EOumpdX',
                  'trusted_domains' =>
                  array (
                    0 => 'nextcloud.gem.local',
                  ),
                  'datadirectory' => '/var/www/html/nextcloud/data',
                  'dbtype' => 'mysql',
                  'version' => '15.0.0.10',
                  'overwrite.cli.url' => 'https://nextcloud.gem.local/nextcloud',
                  'dbname' => 'nextcloud',
                  'dbhost' => 'localhost',
                  'dbport' => '',
                  'dbtableprefix' => 'oc_',
                  'mysql.utf8mb4' => true,
                  'dbuser' => 'ncadmin',
                  'dbpassword' => '***',
                  'installed' => true,
                  'memcache.local' => '\OC\Memcache\Redis',
                  'memcache.locking' => '\OC\Memcache\Redis',
                  redis' => array(
                    'host' => 'localhost',
                    'port' => 6379,
                  ), 
                );
                
                DonahueD 1 Reply Last reply Reply Quote 0
                • DonahueD
                  Donahue @scottalanmiller
                  last edited by Donahue

                  @scottalanmiller said in Install Nextcloud 13.0.0 on Fedora 27:

                  @Donahue Yours is ALL messed up. Here is an example of yours assembled into something that should work...

                  <?php 
                  $CONFIG = array (
                    'passwordsalt' => 'aHdWc/uw5GBAEkcCjSXrGsUEw52U83',
                    'secret' => 'n8kBWYVghXuKUQZHk+ZPgDTEWUqsYAaSUWtAAjFD8EOumpdX',
                    'trusted_domains' =>
                    array (
                      0 => 'nextcloud.gem.local',
                    ),
                    'datadirectory' => '/var/www/html/nextcloud/data',
                    'dbtype' => 'mysql',
                    'version' => '15.0.0.10',
                    'overwrite.cli.url' => 'https://nextcloud.gem.local/nextcloud',
                    'dbname' => 'nextcloud',
                    'dbhost' => 'localhost',
                    'dbport' => '',
                    'dbtableprefix' => 'oc_',
                    'mysql.utf8mb4' => true,
                    'dbuser' => 'ncadmin',
                    'dbpassword' => '***',
                    'installed' => true,
                    'memcache.local' => '\OC\Memcache\Redis',
                    'memcache.locking' => '\OC\Memcache\Redis',
                    redis' => array(
                      'host' => 'localhost',
                      'port' => 6379,
                    ), 
                  );
                  

                  still doesnt work, is there a missing comma or something somewhere?

                  DonahueD 1 Reply Last reply Reply Quote 0
                  • DonahueD
                    Donahue @Donahue
                    last edited by

                    @Donahue got it. It was missing a single quote in front of redis, and also the instance ID

                    scottalanmillerS 1 Reply Last reply Reply Quote 0
                    • scottalanmillerS
                      scottalanmiller @Donahue
                      last edited by

                      @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                      @Donahue got it. It was missing a single quote in front of redis, and also the instance ID

                      I edited it all by hand, so pretty easy to miss something.

                      1 Reply Last reply Reply Quote 0
                      • EddieJenningsE
                        EddieJennings
                        last edited by

                        Guide works with Fedora 29. As always @JaredBusch guide works. 🙂

                        1 Reply Last reply Reply Quote 2
                        • W
                          WindowsGuy
                          last edited by

                          The Apache vhost file location is no longer available. Do you have another location where I can find it or steps to configure it manually?

                          JaredBuschJ 2 Replies Last reply Reply Quote 0
                          • JaredBuschJ
                            JaredBusch @WindowsGuy
                            last edited by

                            @WindowsGuy said in Install Nextcloud 13.0.0 on Fedora 27:

                            The Apache vhost file location is no longer available. Do you have another location where I can find it or steps to configure it manually?

                            Should be on my github. maybe it got moved when I cleaned things up. let me look.

                            1 Reply Last reply Reply Quote 0
                            • JaredBuschJ
                              JaredBusch @WindowsGuy
                              last edited by

                              @WindowsGuy said in Install Nextcloud 13.0.0 on Fedora 27:

                              The Apache vhost file location is no longer available. Do you have another location where I can find it or steps to configure it manually?

                              here:

                              wget https://raw.githubusercontent.com/sorvani/scripts/master/Nextcloud/nextcloud.conf
                              
                              1 Reply Last reply Reply Quote 2
                              • 1
                              • 2
                              • 6
                              • 7
                              • 8
                              • 9
                              • 10
                              • 10 / 10
                              • First post
                                Last post