The following command will load Apache from 64 to 32 bit (Mac OS):

sudo arch -i386 /usr/sbin/httpd

What is the command if I want then to switch back to 64 bit mode?

link|improve this question
feedback

migrated from stackoverflow.com Jul 8 '11 at 17:42

This question came from our site for professional and enthusiast programmers.

1 Answer

Just don't use the arch command to specify an architecture:

sudo /usr/sbin/httpd

(This assumes that you've killed off the previously running instance of httpd).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown