Orangescrum not installing in Centos 7?

In summary, Orangescrum is not currently compatible with Centos 7, making installation on this operating system difficult. This issue has been reported by users and is being addressed by the Orangescrum team. As a workaround, users may need to install Orangescrum on a different operating system or wait for a resolution from the developers.
  • #1
Brief-Wishbone
12
0
TL;DR Summary
Orangescrum not installing in Centos 7?
The official tutorial for automated installation of centos 7 doesn't work. So, I had to refer to online tutorials.

I installed apache 2.4,php 7.2, mysql 5.7.
Then I downloaded .zip source code from here

https://github.com/Orangescrum/orangescrum.
Then, I setup some permissions and ownership as per documentation.
Code:
    $ sudo mv ~/orangescrum-main /var/www/html && sudo chown root:root -R /var/www/html
    $ sudo chmod -R 0777 /var/www/html/orangescrum-main/{app/Config,app/tmp,app/webroot}

Then I setup a virtual host orangescrum.conf in /etc/httpd/conf.d.
Code:
  <VirtualHost *:80>
    ServerName orangescrum.example.com
    DocumentRoot /var/www/html/orangescrum-main
    <Directory /var/www/html/orangescrum-main>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All
    Order allow,deny
    allow from all
    </Directory>
    </VirtualHost>

Then I created mysql database
Code:
  CREATE DATABASE orangescrum;
    CREATE USER 'orangescrumuser'@'localhost' IDENTIFIED BY 'yourpassword';
    GRANT ALL PRIVILEGES ON orangescrum.* TO 'orangescrumuser'@'localhost' IDENTIFIED BY 'yourpassword' WITH GRANT OPTION;
    FLUSH PRIVILEGES;
    EXIT;
Then I imported the database.

Code:
    $ mysql -u root -p orangescrum < /var/www/html/orangescrum-main/database.sql
Then I updated orangescrum credentials inside `/var/www/html/orangescrum-1.6.1/app/Config/database.php`

Code:
 'login' => 'orangescrumuser',
    'password' => 'yourpassword',
    'database' => 'orangescrum',

But it's not working and I'm getting the below output when I enter my ip address in browser.How do I fix this issue? Is there a way?

http://i.stack.imgur.com/7FQg1.png
 
Technology news on Phys.org
  • #2
Brief-Wishbone said:
How do I fix this issue? Is there a way?
I wouldn't call this as an "issue", you just haven't configured Apache to serve PHP files. There are better places to learn how to do this stuff than PhysicsForums.
 
  • #3
pbuk said:
I wouldn't call this as an "issue", you just haven't configured Apache to serve PHP files. There are better places to learn how to do this stuff than PhysicsForums.
Any suggestions for places?
 
  • #5
I've tried all tutorials at least five times. None of them work.
 
  • #6
pbuk said:
you just haven't configured Apache to serve PHP files
Have you fixed this?

If so, how do you know?
If not, how much progress do you think you are going to make?
 
  • #7
Is your Apache server configured to load index.php file by default? (I'm assuming this is the file you have in your /app/webroot/ folder.)

See the DirectoryIndex directive for more info.

Just adding this filename to your request should also work.
 

Related to Orangescrum not installing in Centos 7?

1. Why is Orangescrum not installing in Centos 7?

Orangescrum may not be installing in Centos 7 due to compatibility issues with the operating system version or missing dependencies. It is recommended to check the system requirements and ensure all necessary packages are installed before attempting the installation.

2. How can I troubleshoot Orangescrum installation issues in Centos 7?

To troubleshoot Orangescrum installation issues in Centos 7, you can check the installation logs for any error messages, verify the system requirements, and ensure that all dependencies are met. You can also try reinstalling Orangescrum after updating the system packages.

3. Is there a specific installation guide for Orangescrum on Centos 7?

Yes, there is a specific installation guide for Orangescrum on Centos 7 available on the official Orangescrum documentation website. Following the step-by-step instructions provided in the guide can help you successfully install Orangescrum on Centos 7.

4. Are there any known issues with Orangescrum installation in Centos 7?

There may be known issues with Orangescrum installation in Centos 7 related to compatibility with certain system configurations or dependencies. It is recommended to check the Orangescrum community forums or support channels for any reported issues and possible workarounds.

5. Can I seek help from Orangescrum support for installation issues in Centos 7?

Yes, you can seek help from Orangescrum support for installation issues in Centos 7. The Orangescrum support team can provide assistance with troubleshooting installation problems, resolving compatibility issues, and guiding you through the installation process step by step.

Similar threads

  • Computing and Technology
Replies
2
Views
13K
Back
Top