Later, I worked by apache and I didn't any problem, but after install SQL Server 2008, apache don't work. I think there is problem on port 80.
相关问题
- sql execution latency when assign to a variable
- What is the best way to cache a table from a (SQL)
- php PDO::FETCH_ASSOC doesnt detect select after ba
- Stop .htaccess redirect with query string
- Bulk update SQL Server C#
相关文章
- Apache+Tomcat+JK实现的集群,如果Apache挂了,是不是整个服务就挂了?
- Entity Framework 4.3.1 failing to create (/open) a
- Code for inserting data into SQL Server database u
- How reliable is HTTP_HOST?
- Delete Every Alternate Row in SQL
- Linux based PHP install connecting to MsSQL Server
- SQL Azure Reset autoincrement
- How do we alias a Sql Server instance name used in
Let's identify the issue first
My SQL Processes usually take port 80 but im not sure how to change which port MY SQL uses. What do you see when you type
http://localhost/
orhttp://127.0.0.1/
or your computer's local ip in your web browser?To find which app is using Port 80 go on Command Prompt and type:
Scroll up till you see some thing like:
In the part that says ####, there will be a number!
Take note of that number and open Task Manager and go i=on services and look for that number under the "PID" tab. In my case it was 2264, so I'd look for 2264. When you find it there it tells you, but if it doesn't (like it says PID=4), you might have IIS on. So go to
Control Panel >> Administrative Tools >> Component Services >> Services (Local) and find Web Deployment Agent Service
Stop that service. Also, find World Wide Web Publishing Service and stop that...
it may be because of the port 80 occupied by the SQL Server 2008. you can try to see if the it is occupied by SQL Server 2008 using
netstat
command if so then you can change the configuration either of apache or SQL Server 2008 and configure any of to a new port.see how to change the port in SQL Server 2008