Join the community today
Become a Member

Featured CentOS 7.x How to help test .08 CentOS 7 Betas with Github code ?

Discussion in 'Beta release code' started by eva2000, Jul 11, 2014.

  1. rdan

    rdan Well-Known Member

    5,444
    1,408
    113
    May 25, 2014
    Ratings:
    +2,201
    Local Time:
    2:45 AM
    Mainline
    10.2
    Still the bug on vhost traffic when disabled on initial install is still there.
    I have tried it twice on Linode CentOS 7.

     
  2. rdan

    rdan Well-Known Member

    5,444
    1,408
    113
    May 25, 2014
    Ratings:
    +2,201
    Local Time:
    2:45 AM
    Mainline
    10.2
    Another 2 new Droplet on DO :)
    upload_2015-6-30_3-40-6.png
     
  3. eva2000

    eva2000 Administrator Staff Member

    54,363
    12,198
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,763
    Local Time:
    4:45 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    definitely fixed it at my end.. just leave it enabled :p
     
  4. pamamolf

    pamamolf Premium Member Premium Member

    4,077
    427
    83
    May 31, 2014
    Ratings:
    +833
    Local Time:
    8:45 PM
    Nginx-1.25.x
    MariaDB 10.3.x
    If i am not wrong you add a fix so if i download the latest Centminmod and run it once it will auto copy the files for multiple pools:

    Code:
    phpfpm_pool2.conf-disabled
    phpfpm_pool3.conf-disabled
    phpfpm_pool4.conf-disabled
    phpfpm_pool5.conf-disabled
    to:

    Code:
    /usr/local/nginx/conf/phpfpmd
    But i just test it and the files are not there after running ./centmin.sh :(
     
  5. eva2000

    eva2000 Administrator Staff Member

    54,363
    12,198
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,763
    Local Time:
    4:45 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    yeah it could of copied over files without -disabled label .. will check it out
     
  6. eva2000

    eva2000 Administrator Staff Member

    54,363
    12,198
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,763
    Local Time:
    4:45 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
  7. pamamolf

    pamamolf Premium Member Premium Member

    4,077
    427
    83
    May 31, 2014
    Ratings:
    +833
    Local Time:
    8:45 PM
    Nginx-1.25.x
    MariaDB 10.3.x
    That's great :)

    If i want one extra pool can i just create another file phpfpm_pool6.conf and copy the contents from one of the other related files?

    Or i must add/edit anything else also?
     
  8. eva2000

    eva2000 Administrator Staff Member

    54,363
    12,198
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,763
    Local Time:
    4:45 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
  9. pamamolf

    pamamolf Premium Member Premium Member

    4,077
    427
    83
    May 31, 2014
    Ratings:
    +833
    Local Time:
    8:45 PM
    Nginx-1.25.x
    MariaDB 10.3.x
    Ok now the shortcuts don't work :(

    Code:
    [root@server ~]# fpmconf-2
    -bash: fpmconf-2: command not found
     
  10. pamamolf

    pamamolf Premium Member Premium Member

    4,077
    427
    83
    May 31, 2014
    Ratings:
    +833
    Local Time:
    8:45 PM
    Nginx-1.25.x
    MariaDB 10.3.x
    Changing ssh port at Centos 7.1 minimal i got this:
    Code:
    iptables -I INPUT -p tcp --dport 22 -j REJECT
    iptables -I INPUT -p tcp --dport 1011 -j ACCEPT
    systemctl restart iptables.service
    Failed to issue method call: Unit iptables.service failed to load: No such file or directory.
    systemctl restart sshd.service
     
  11. eva2000

    eva2000 Administrator Staff Member

    54,363
    12,198
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,763
    Local Time:
    4:45 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    works here
    Code:
    iptables -I INPUT -p tcp --dport 22 -j REJECT
    iptables -I INPUT -p tcp --dport 999 -j ACCEPT
    systemctl restart iptables.service
    service csf restart
    Redirecting to /bin/systemctl restart  csf.service
    sounds like iptables service didn't get installed properly what do you get for these 2 commands

    Code:
    yum list iptables-services -q
    service iptables status
    Code:
    yum list iptables-services -q
    Installed Packages
    iptables-services.x86_64                                          1.4.21-13.el7                                           @base
    Code:
     service iptables status
    Redirecting to /bin/systemctl status  iptables.service
    iptables.service - IPv4 firewall with iptables
       Loaded: loaded (/usr/lib/systemd/system/iptables.service; enabled)
       Active: active (exited) since Wed 2015-07-01 20:42:40 UTC; 1min 26s ago
      Process: 2919 ExecStop=/usr/libexec/iptables/iptables.init stop (code=exited, status=0/SUCCESS)
      Process: 2999 ExecStart=/usr/libexec/iptables/iptables.init start (code=exited, status=0/SUCCESS)
    Main PID: 2999 (code=exited, status=0/SUCCESS)
       CGroup: /system.slice/iptables.service
    
    Jul 01 20:42:40 centos7.localdomain iptables.init[2999]: iptables: Applying firewall rules: [  OK  ]
    Jul 01 20:42:40 centos7.localdomain systemd[1]: Started IPv4 firewall with iptables.
     
  12. eva2000

    eva2000 Administrator Staff Member

    54,363
    12,198
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,763
    Local Time:
    4:45 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
  13. pamamolf

    pamamolf Premium Member Premium Member

    4,077
    427
    83
    May 31, 2014
    Ratings:
    +833
    Local Time:
    8:45 PM
    Nginx-1.25.x
    MariaDB 10.3.x
    Code:
    [root@server ~]# yum list iptables-services -q
    Installed Packages
    iptables-services.x86_64                                                    1.4.21-13.el7                                                    @base
    
    Code:
    [root@server ~]# service iptables status
    Redirecting to /bin/systemctl status  iptables.service
    iptables.service - IPv4 firewall with iptables
       Loaded: loaded (/usr/lib/systemd/system/iptables.service; enabled)
       Active: active (exited) since Wed 2015-07-01 20:59:03 UTC; 1h 27min ago
    Main PID: 28148 (code=exited, status=0/SUCCESS)
       CGroup: /system.slice/iptables.service
    
    Jul 01 20:59:03 server.mydomain.com systemd[1]: Starting IPv4 firewall with iptables...
    Jul 01 20:59:03 server.mydomain.com iptables.init[28148]: iptables: Applying firewall rules: [  OK  ]
    Jul 01 20:59:03 server.mydomain.com systemd[1]: Started IPv4 firewall with iptables.
     
  14. eva2000

    eva2000 Administrator Staff Member

    54,363
    12,198
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,763
    Local Time:
    4:45 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
  15. eva2000

    eva2000 Administrator Staff Member

    54,363
    12,198
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,763
    Local Time:
    4:45 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Just a heads up that .08 beta 03 to stable release will be delayed somewhat.

    I decided that rather than update the existing site with .08 stable related info and then later having to do a full site redesign, that I will work on a new centminmod.com design with .08 stable info already in place - 2 birds with 1 stone :)

    So it has begun, preview of what the new centminmod.com site will look like is at CentminMod.com Site Redesign Preview ! | Centmin Mod Community The new centminmod.com site will fully utilise everything that Centmin Mod .08 release will have to offer including Nginx ngx_pagespeed, vhost traffic stats, geoip and lua modules and openresty's nginx modules at some point :D
     
  16. eva2000

    eva2000 Administrator Staff Member

    54,363
    12,198
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,763
    Local Time:
    4:45 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    So while folks wait for centminmod.com new design, thought I'd add something to .08 beta03 for folks to play with on test servers. I have merged in the custom curl/libcurl 7.43 RPM packages feature Merge branch '123.08beta03curl743' into 123.08beta03 · centminmod/centminmod@401114e · GitHub It's disabled by default (CUSTOM_CURLRPM=n) so you still get default curl 7.19 for centos 6 and curl 7.29 for centos 7 out of the box. If you opt to test and enable the feature (CUSTOM_CURLRPM=y), you can get curl 7.43 latest release at fresh install time or via addons/customcurl.sh for existing .08 beta 03 installs - full details at Beta Branch - Centmin Mod .08 beta 03 addon - curl 7.43 custom rpms | Centmin Mod Community
     
  17. eva2000

    eva2000 Administrator Staff Member

    54,363
    12,198
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,763
    Local Time:
    4:45 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    For .08 beta stable release, I will be writing up a how to upgrade guide for .07 stable users. However, as my perception of the process might be masked by my familiarity with the process, I am asking other Centmin Mod users for a list of questions or issues you maybe confused with in regards to the upgrade process from .07 stable to .08 stable. The plan is to properly address that list of questions or issues you have so can make the update process much easier for existing folks.
     
  18. Tracy Perry

    Tracy Perry Active Member

    280
    118
    43
    Aug 24, 2014
    Texas
    Ratings:
    +210
    Local Time:
    12:45 PM
    1.21.6
    MariaDB 10.3.36
    Upgrade process? Upgrade Process?
    You mean it's not as simple as pulling the new .8 one in and using it? :angelic:
     
  19. eva2000

    eva2000 Administrator Staff Member

    54,363
    12,198
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,763
    Local Time:
    4:45 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
  20. Tracy Perry

    Tracy Perry Active Member

    280
    118
    43
    Aug 24, 2014
    Texas
    Ratings:
    +210
    Local Time:
    12:45 PM
    1.21.6
    MariaDB 10.3.36
    Just pulled the newest code in.. may get adventurous and try it on my live server. :whistle:

    But before I do I ned to make sure i pull all my configs off. Would hate to have to figure out how to get all the mail stuff working again.