Results 1 to 4 of 4

Thread: Need help with setting up LAMP enviroment.

  1. #1
    Junior Member registered user
    Join Date
    May 2004
    Location
    Winnipeg MB, Canada
    Posts
    15

    Need help with setting up LAMP enviroment.

    Knoppix 3.4 installed on my hard-drive.

    Hi,

    I'm very new to Linux and want to setup a learning enviroment for PHP/MySQL/Apache.

    Scrounging around these forums for bits of info, I've managed to start Apache and check my version of Perl.

    But I am having no luck with PHP. I've tried "apt-get install PHP" but get errors. Then tried "apt-get update" first then "apt-get install PHP" . Same errors. (Couldn't stat source package list http://ftp.us.debian.....) Maybe apt-get isn't the best approach, but I don't know any other.

    Also any hints at where/how to install MySQL? I'm pretty sure I can config it with phpmyadmin. Just finding and installing this stuff is a problem for me.

    Any help is greatly appreciated

    Obs

  2. #2
    Senior Member registered user
    Join Date
    Mar 2003
    Location
    Portland, OR USA
    Posts
    568
    If you've got Knoppix 3.4 installed, then you've already got some of PHP by default:

    Code:
    root@knoppixbox:/home/andrew# dpkg -l "php*"
    Desired=Unknown/Install/Remove/Purge/Hold
    | Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
    |/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
    ||/ Name           Version        Description
    +++-==============-==============-============================================
    pn  php3           <none>         (no description available)
    pn  php3-imap      <none>         (no description available)
    pn  php3-ldap      <none>         (no description available)
    pn  php3-mysql     <none>         (no description available)
    pn  php3-pgsql     <none>         (no description available)
    ii  php4           4.3.4-4        A server-side, HTML-embedded scripting langu
    un  php4-cgi       <none>         (no description available)
    un  php4-cgi-curl  <none>         (no description available)
    un  php4-cgi-domxm <none>         (no description available)
    un  php4-cgi-gd    <none>         (no description available)
    un  php4-cgi-imap  <none>         (no description available)
    un  php4-cgi-ldap  <none>         (no description available)
    un  php4-cgi-mhash <none>         (no description available)
    un  php4-cgi-mysql <none>         (no description available)
    un  php4-cgi-pgsql <none>         (no description available)
    un  php4-cgi-snmp  <none>         (no description available)
    un  php4-cgi-xml   <none>         (no description available)
    un  php4-dev       <none>         (no description available)
    pn  php4-imap      <none>         (no description available)
    pn  php4-ldap      <none>         (no description available)
    ii  php4-mysql     4.3.4-4        MySQL module for php4
    un  php4-pear      <none>         (no description available)
    pn  php4-pgsql     <none>         (no description available)
    un  php4-sablot    <none>         (no description available)
    un  php4-xml       <none>         (no description available)
    un  phpapi-2002091 <none>         (no description available)
    un  phpdoc         <none>         (no description available)
    Likewise, you've got some of MySQL:

    Code:
    root@knoppixbox:/home/andrew# dpkg -l "mysql*"
    Desired=Unknown/Install/Remove/Purge/Hold
    | Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
    |/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
    ||/ Name           Version        Description
    +++-==============-==============-============================================
    un  mysql          <none>         (no description available)
    un  mysql-base     <none>         (no description available)
    ii  mysql-client   4.0.18-8       mysql database client binaries
    ii  mysql-common   4.0.18-8       mysql database common files (e.g. /etc/mysql
    un  mysql-dev      <none>         (no description available)
    un  mysql-devel    <none>         (no description available)
    un  mysql-doc      <none>         (no description available)
    un  mysql-gpl-clie <none>         (no description available)
    ii  mysql-server   4.0.18-8       mysql database server binaries
    I don't know anything about using them, but hopefully that gives you an idea of the packages that are available.

  3. #3
    Junior Member registered user
    Join Date
    May 2004
    Location
    Winnipeg MB, Canada
    Posts
    15
    Thanks,

    Apache and PHP are working. I've got MySQL installed and running too but my start up is very wierd.

    mysql -h localhost -u root -p results in an error of: ERROR 2002: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)

    but this apparently starts the service....

    root@laptop:~# mysqld version
    mysqld: ready for connections.
    Version: '4.0.18-log' socket: '/var/run/mysqld/mysqld.sock' port: 0

    Then "mysql -h localhost -u root -p" works fine.

    "service mysql start" does nothing either. (service is an unknown command).

    I should probably be posting these question in a MySQL forum. But someone else might find usefull.

    Obs

  4. #4
    Junior Member registered user
    Join Date
    May 2004
    Location
    Winnipeg MB, Canada
    Posts
    15
    Hi again,

    I'll post this for the next noobie

    This assumes you have installed Knoppix to your hard drive.

    1. Start Apache (already installed)
    a) From shell run sudo /etc/init.d/apache start (as root)
    should see...
    Starting web server: apache[Sat May 22 10:23:22 2004] [warn] module ssl_module is already loaded skipping
    b) Test by pointing browser to http://127.0.0.1/, should see a default web page for apache/debian.

    2. Test PHP (already installed)
    a) Create a text file (i used kwrite) with just <?php phpinfo(); ?> in it.
    b) Save it to /var/www/
    c) Test by pointing browser to http://127.0.0.1/test.php, should see PHP info page.

    3. Install MySQL (not installed)
    a) From shell run the following commands to download and install MySQL
    apt-get update
    apt-get install mysql-common mysql-client mysql-server
    apt-get install php4-mysql
    b) Run 'mysql_install_db'from shell to create system tables, etc.
    c) Run 'safe_mysqld'
    d) Start server "/etc/init.d/mysql start" (logged in a root)
    e) mysql -h localhost -u root -p to connect.
    f) see mysql doc for actually choosing/creating a db.

    Obs

Similar Threads

  1. how to install an apache server with php and mysql (lamp)?
    By Josh83 in forum Hdd Install / Debian / Apt
    Replies: 5
    Last Post: 04-15-2005, 08:14 PM
  2. LAMP with Knoppix
    By tcollinson in forum Customising & Remastering
    Replies: 3
    Last Post: 08-12-2004, 11:45 PM
  3. gnome enviroment for knoppix?
    By pau in forum General Support
    Replies: 3
    Last Post: 02-10-2004, 06:33 PM
  4. Graphical Enviroment
    By Braz_Man in forum General Support
    Replies: 2
    Last Post: 01-23-2004, 11:04 PM
  5. KNOPPIX as clustering enviroment
    By eadz in forum Ideas
    Replies: 8
    Last Post: 07-22-2003, 02:41 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Kingston 32GB 64GB 128GB 256GB USB 3.0 Flash Drive Thumb Memory Stick Pen lot picture

Kingston 32GB 64GB 128GB 256GB USB 3.0 Flash Drive Thumb Memory Stick Pen lot

$285.90



SanDisk Ultra Luxe USB 3.1 Flash Drive – 5 Pack | Premium Metal USB Flash Drives picture

SanDisk Ultra Luxe USB 3.1 Flash Drive – 5 Pack | Premium Metal USB Flash Drives

$39.99



LOT 10x SanDisk 32GB ULTRA USB 3.0 flash drive SDCZ48-032G 32 GB read 100 MB/s picture

LOT 10x SanDisk 32GB ULTRA USB 3.0 flash drive SDCZ48-032G 32 GB read 100 MB/s

$39.80



TESLA OEM Model S,3,X,Y USB Flash Drive for Dashcam 128GB READ DESCRIPTION BELOW picture

TESLA OEM Model S,3,X,Y USB Flash Drive for Dashcam 128GB READ DESCRIPTION BELOW

$21.00



USB 3.0 Flash Drive 32GB 64GB 128GB Memory Stick Thumb Stick Lot Pack picture

USB 3.0 Flash Drive 32GB 64GB 128GB Memory Stick Thumb Stick Lot Pack

$826.09



Sandisk 16GB 32GB 64GB 128GB Cruzer Blade Flash Drive Memory Stick USB Lot Pack picture

Sandisk 16GB 32GB 64GB 128GB Cruzer Blade Flash Drive Memory Stick USB Lot Pack

$88.90



USB Type-A Flash Drive Metal Memory Stick High Speed USB Drive 128GB 256GB 512GB picture

USB Type-A Flash Drive Metal Memory Stick High Speed USB Drive 128GB 256GB 512GB

$7.97



LOT 10x SanDisk 32GB Cruzer Spark USB 2.0 flash drive 32 GB SDCZ61-032G 32G picture

LOT 10x SanDisk 32GB Cruzer Spark USB 2.0 flash drive 32 GB SDCZ61-032G 32G

$34.80



Microsoft Windows 11 Pro 64bit - New Sealed – Flash USB 1 PC picture

Microsoft Windows 11 Pro 64bit - New Sealed – Flash USB 1 PC

$49.99



Toshiba TransMemory USB 3.0 Flash Drive – Pack of 5 | Fast, Reliable & Porta Lot picture

Toshiba TransMemory USB 3.0 Flash Drive – Pack of 5 | Fast, Reliable & Porta Lot

$69.99