ML
    • Register
    • Login
    • Search
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Tags
    3. lamp
    Log in to post
    • All categories
    • scottalanmiller

      Fedora 30 LAMP Web Server Varnish Cache Broken After Update
      IT Discussion • fedora linux fedora 30 varnish cache nginx apache httpd lamp web server • • scottalanmiller

      10
      1
      Votes
      10
      Posts
      304
      Views

      scottalanmiller

      Worth noting that the issue comes back when you upgrade to Fedora 31 as well. Same fix still applies.

    • Emad R

      LAMP on the cheap, or how to optimize ?
      IT Discussion • lamp cheap vps • • Emad R

      24
      1
      Votes
      24
      Posts
      312
      Views

      Emad R

      @tonyshowoff said in LAMP on the cheap, or how to optimize ?:

      Installing crappy cPanel is like buying a sports car and putting a boot on the wheel. There's literally no good reason what so ever to have it, it's slow as hell and eats resources like crazy. Just learn a few commands and you'll be fine.

      Don't get yourself stuck with PHP 5.x, it's a dead end, fix your code now and/or do it right from the start and use PHP 7.

      Apache with mod_php is a hell of a lot faster than PHP-FPM, because it's executed as a part of your running httpd thread pool rather than executing PHP literally every single page request. Nginx is faster than Apache except when it comes to PHP then hands down always use Apache with mod_php. If you turn on PHP 7's opcache you'll do even better.

      In case you consider it and try to go with nginx, since that's what the cool kids try to push on people, OPcache won't make up for PHP-FPM having to literally start a process every single page request, every, single, page request. Nginx is a great reverse proxy though.

      It also depends on what you're doing overall, memcached is great I've used it on a huge scale but what are you caching? What database are you looking at using, that'd really be the only reason to have an object cache like memcached at all.

      Interesting, I will see how it performs without PHP FPM.

    • Obsolesce

      Installing Fedora 27 LAMP Stack plus WordPress and SSL
      IT Discussion • fedora 27 wordpress lamp how-to • • Obsolesce

      24
      3
      Votes
      24
      Posts
      2896
      Views

      Obsolesce

      @bnrstnr said in Installing Fedora 27 LAMP Stack plus WordPress and SSL:

      @tim_g said in Installing Fedora 27 LAMP Stack plus WordPress and SSL:

      Create a new secure SSH key:
      ssh-keygen -t rsa -b 4096 -C "root-webserv1-key"

      Hit enter for default location and name.
      Hit enter again to skip passphrase creation.
      Now you should SSH to server to continue.

      Does this step disable normal logins or change anything at all? After my first restart my root password isn't working.

      This only generates a new certificate and does not do anything else. If your root password is not working, maybe you are typing it in incorrectly, or it's something else entirely, as what @NashBrydges is referring to. If you are using Putty, perhaps it's caching the old public key.

    • scottalanmiller

      Deploying an NGinx Reverse Proxy with SSL on a LAMP Server with SaltStack
      IT Discussion • lamp proxy reverse proxy nginx salt saltstack devops web server lets encrypt ssl tls https https2 • • scottalanmiller

      42
      2
      Votes
      42
      Posts
      4575
      Views

      stacksofplates

      This way you can share the config(s) under conf.d between multiple machines using the same roles (or whatever Salt calls them) and have different main NGINX server settings.

    • scottalanmiller

      Installing Varnish Cache to a LAMP Stack on Fedora 25 with SaltStack
      IT Discussion • varnish cache web server lamp linux apache salt saltstack fedora fedora 25 state file • • scottalanmiller

      3
      2
      Votes
      3
      Posts
      1260
      Views

      scottalanmiller

      @aaronstuder said in Installing Varnish Cache to a LAMP Stack on Fedora 25 with SaltStack:

      @scottalanmiller said in Installing Varnish Cache to a LAMP Stack on Fedora 25 with SaltStack:

      Varnish Cache cannot handle TLS connections, so Apache will continue to server HTTPS on port 443, for now at least.

      That's unfortunate 😕 I use Varnish on Cloudways, but everything is HTTPS... Does that mean Varnish is doing nothing?

      It just means that an SSL layer has to be in front of it. Nginx is used on most platforms to handle SSL.

    • scottalanmiller

      Virtual Hosts for Apache Using SaltState
      IT Discussion • salt saltstack lamp linux apache state file state machine • • scottalanmiller

      1
      2
      Votes
      1
      Posts
      629
      Views

      No one has replied

    • scottalanmiller

      Using SaltStack to Install High Performance LAMP on Fedora 25
      IT Discussion • linux salt saltstack lamp apache httpd php php 7 mariadb • • scottalanmiller

      12
      1
      Votes
      12
      Posts
      2439
      Views

      C

      @scottalanmiller How are you liking Salt Stack?

    • scottalanmiller

      Open Source LAMP Web Hosting Panels
      IT Discussion • cpanel zpanel web hosting lamp open source • • scottalanmiller

      37
      1
      Votes
      37
      Posts
      5308
      Views

      scottalanmiller

      @jmoore said in Open Source LAMP Web Hosting Panels:

      It does not seem easier to me. Could just be me though.

      It's often not just more steps, but more complex too!

    • Minion Queen

      Web Hosting Options
      IT Discussion • a small orange aso web hosting drupal php lamp • • Minion Queen

      11
      3
      Votes
      11
      Posts
      1827
      Views

      scottalanmiller

      @wirestyle22 said in Web Hosting Options:

      @scottalanmiller said in Web Hosting Options:

      A Small Orange uses cPanel and has been very good.

      I love a small orange. Have never had a bad experience with them.

      It's been great here.

    • scottalanmiller

      Building a LAMP Server on Fedora 25 with SaltStack
      IT Discussion • salt saltstack devops linux lamp apache mariadb mysql php fedora fedora 25 • • scottalanmiller

      1
      3
      Votes
      1
      Posts
      1168
      Views

      No one has replied

    • scottalanmiller

      Deploying WordPress on CentOS 7 LAMP
      IT Discussion • linux centos centos 7 lamp wordpress • • scottalanmiller

      11
      1
      Votes
      11
      Posts
      1881
      Views

      A

      @scottalanmiller Add virualhosts to the list too 😉

    • scottalanmiller

      Installing a Basic LAMP Stack on CentOS 7
      IT Discussion • lamp linux mysql mariadb apache httpd php centos centos 7 rhel rhel 7 • • scottalanmiller

      20
      4
      Votes
      20
      Posts
      3813
      Views

      JaredBusch

      @scottalanmiller said in Installing a Basic LAMP Stack on CentOS 7:

      @NashBrydges said in Installing a Basic LAMP Stack on CentOS 7:

      @scottalanmiller I haven't yet. About to give it a try. Stuck to legacy since that was what I was reading everywhere.

      Where is everywhere? Technet says to not use legacy.

      https://technet.microsoft.com/en-us/windows-server-docs/compute/hyper-v/supported-centos-and-red-hat-enterprise-linux-virtual-machines-on-hyper-v

      Legacy is a fallback driver that you never want to use, it's low performance and high overhead. If you needed that for CentOS, it would make Hyper-V a silly, non-production ready platform. But Hyper-V is a good, solid performer.

      Not only that, but I install all of my CentOS 7 VM's as Generation 2 when on Hyper-V they work perfectly with default settings for everything except secure boot. Uncheck secure boot. Everything else is 100% default settings.

    • Ambarishrh

      LAMP replication to DR site
      IT Discussion • mysql lamp disaster recovery linux replication backup and disaster recovery • • Ambarishrh

      16
      1
      Votes
      16
      Posts
      3203
      Views

      scottalanmiller

      @Ambarishrh said in LAMP replication to DR site:

      How about setup MySQL replication to remote site and then enable MySQLdump local backup on the DR site as well with increased frequency than daily ( may be twice a day). This way we have an up to date/latest copy and in case let's say there was a drop table command on master, and primary site failed, I can still switch to secondary, use the latest mysql backup to restore and make it up and running.

      Yup, that's what I would do. Get HA and DR all in one setup. Have it take backups 24 times a day if you want. The impact is pretty much zero.

    • scottalanmiller

      Testing out EspoCRM
      IT Discussion • crm espocrm php lamp a smal aso mysql • • scottalanmiller

      5
      0
      Votes
      5
      Posts
      1556
      Views

      stacksofplates

      @art_of_shred said:

      @johnhooks Zurmo is on our list to look at. What did you like about it? Anything specific?

      I liked the interface a lot. It was pretty easy to use. I didn't use nearly all of the features. Mostly just to track possible website jobs and some other small stuff. It was one of the only free ones that had a nice mobile interface at the time.

    • thanksajdotcom

      Can't apt-get when running Bridged NIC on Oracle Virtualbox Ubuntu Server 14.04
      IT Discussion • linux web server lamp • • thanksajdotcom

      21
      0
      Votes
      21
      Posts
      4997
      Views

      scottalanmiller

      @ajstringham said:

      I'm creating the VMDK now. My only concern is that, all my research suggests Ubuntu is the best distro to run a LAMP server on. I'm also much more familiar with Debian systems over RPM...

      RHEL has always been the LAMP leader. No upside to Ubuntu for LAMP. That's not where Ubuntu is strong. Ubuntu is better for alternative, non-LAMP, application stacks like RoR and Node.js where RHEL's conservative approach is a major problem.

      Other than needing the EPEL enabled, RHEL is as straightforward as you really get for LAMP. Ubuntu has only squeaked by as being even a reasonable choice until the latest few releases.