Secara default, SQL Server 2005 tidak memungkinkan koneksi remote sehingga Anda harus mengaktifkan secara manual. Jika Anda mencoba untuk menyambung ke SQL Server remote tanpa mengaktifkan koneksi remote pertama, Anda akan melihat salah satu dari pesan-pesan kesalahan.
Login failed for user ‘sa’. The user is not associated with a trusted SQL Server connection.
An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connection. |
Untuk mengatasi masalah ini, Anda memiliki 2 cara ;
1. Lakukan enable both SQL Server and Windows authentication mode on SQL Server
2. to allow remote connection and SQL Server Browser.
Langkah-langkah mengaktifkan koneksi remote ke SQL Server 2005 Express
1. Login ke SQL Server menggunakan SQL Server Management Studio Express pada lokal SQL Server dengan Windows Authentication pengguna. Ini akan menggunakan account Windows untuk otentikasi ke SQL Server.
2. Pada Object Explorer, klik kanan pada nama instance dan pilih Properties.
3.Di sebelah kiri, pilih Security dan mengubah otentikasi Server SQL Server dan modus Windows Authentication. Jika pilihan tersebut sudah dipilih, itu berarti Anda telah diperbolehkan otentikasi SQL Server.
4. Ada akan menjadi jendela informasi menunjukkan bahwa Anda perlu me-restart SQL Server untuk mengambil efek perubahan.
5. Right-click on the instance name again, select Restart to restart SQL Server service.
6.Pilih Ya.
7.Tunggu stop service dan start.elect Ya.
8. Itu saja. Anda telah mengaktifkan kedua SQL Server dan Windows otentikasi jadi sekarang Anda dapat login ke SQL Server dengan account Windows Anda saat ini atau akun Anda dibuat.
- Open SQL Server Surface Area Configuration.
- Select Surface Area Configuration for Services and Connections.
- On
the left side, expand your SQL Server instance -> Database Engine
-> Remote Connections. On the right side, select Local and remote
connections -> using both TCP/IP and named pipes.
- On the left side, select SQL Server Browser -> Service.
On the right side, if the startup type is Disable, you need to change to Automatic and click Apply and click Start button to start the service. Then, click OK.
- You have finished configure. Now try to login to your SQL Server from remote computer using SQL Server authentication mode.
- Login to SQL Server succeeded.
Semoga Bermanfaat
Budi Anggoro