Dic
29
2008
Installing AMP (Apache/Mysql/PHP) in OpenSolaris 2008.11 HOWTO
Escrito por: jamslug en OpenSolaris, tags: AMP, Apache, HTTP, MySQL, OpenSolaris, PHP, SUN, svcadm, svcs1. In a shell:
pfexec pkg install -v amp
This will download and install every package required
2. Start mysql:
pfexec svcadm enable mysql
3. Start apache:
pfexec svcadm enable http
Note: svcadm is the way to work with services according to the SMF docs.
You can verify if everything goes OK with these:
svcs -l mysql
and
svcs -l http
4. You can now connect to the DB server using the services tab in NetBeans or using this:
/usr/mysql/bin/mysql -u root
5. You can browse your own server open http://localhost in your FFavorite browser
Comparte esto con tus amigos:
Entradas (RSS)
How do I use pfexec behind a proxy with auth?