1) Tạo ra file Keystore và CSR (tạo nó trong server mình sẻ gắn SSL vào) 1.1) Tạo ra keystore với dòng lệnh
|
keytool -keysize 2048 -genkey -alias tomcat -keyalg RSA -keystore tomcat.keystore |
sau khi chạy dòng lệnh trên thì …
Read More “Cấu hình SSL Godaddy cho tomcat 7”
Lỗi An exception of type ‘System.TypeInitializationException’ occurred in EntityFramework.dll but was not handled in user code Additional information: The type initializer for ‘System.Data.Entity.Internal.AppConfig’ threw an exception. Kiểm tra lại thẻ <startup> …
Read More “Lỗi cấu hình file app.config”
|
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password' WITH GRANT OPTION; |
Trong đó
|
GRANT [type of permission] ON [database name].[table name] TO ‘[username]’@'localhost’; |
Với các loại quyền trong MySQL gồm ALL PRIVILEGES– User có full quyền trên database được cấp. CREATE– Cho phép user tạo bảng và databases. DROP– …
Read More “Cho phép kết nối đến mysql từ xa”
Nói sơ qua Reflection là các class trong namespace System.Reflection, nó cùng với các class trong namespace System.Type giúp mình xác định được các thông tin từ các assemblies(thông thường là các file …
Read More “Reflection trong .NET Framework”